You are here

tag-styles.css in Extensible BBCode 4.0.x

Same filename and directory in other branches
  1. 8.3 standard/assets/tag-styles.css
/* Remove some of the unrestricted form element style. */
label.xbbcode-spoiler {
  display: inline;
  font-weight: inherit;
  line-height: unset;
}

/* Hide the checkbox. */
input.xbbcode-spoiler {
  display: none;
}

/* Protect the label, as well as its children. This is needed because
 * the label is inline and its box may not fully cover its children.
 */
input.xbbcode-spoiler:not(:checked) + label.xbbcode-spoiler,
input.xbbcode-spoiler:not(:checked) + label.xbbcode-spoiler * {
  color: black;
  background: black;
}

File

standard/assets/tag-styles.css
View source
  1. /* Remove some of the unrestricted form element style. */
  2. label.xbbcode-spoiler {
  3. display: inline;
  4. font-weight: inherit;
  5. line-height: unset;
  6. }
  7. /* Hide the checkbox. */
  8. input.xbbcode-spoiler {
  9. display: none;
  10. }
  11. /* Protect the label, as well as its children. This is needed because
  12. * the label is inline and its box may not fully cover its children.
  13. */
  14. input.xbbcode-spoiler:not(:checked) + label.xbbcode-spoiler,
  15. input.xbbcode-spoiler:not(:checked) + label.xbbcode-spoiler * {
  16. color: black;
  17. background: black;
  18. }