~alcinnz/rhapsode

8adde0e9dfa8899a23ffb5f19b7b2515c3838149 — Adrian Cochrane 4 years ago ec9a251
Don't use :not(), it's not supported by Stylish Haskell.
1 files changed, 3 insertions(+), 3 deletions(-)

M src/DefaultCSS.hs
M src/DefaultCSS.hs => src/DefaultCSS.hs +3 -3
@@ 19,7 19,7 @@ userAgentCSS = unlines [
  "input[value], output[value] {content: attr(value)}",
  "text-area {speak-as: literal-punctuation}",
  "",
  "option:not([checked]) {speak: never}",
  "option {speak: never} option[checked] {speak: always}",
  "select[multiple] option {cue-before: url(bulletpoint.wav)}",
  "",
  "/** Tables **/",


@@ 83,9 83,9 @@ userAgentCSS = unlines [
  "",
  "q, blockquote {voice-family: female 2}",
  "cite {voice-stress: reduce}",
  "dialog:not([open]) {speak: never}",
  "dialog {speak: never} dialog[open] {speak: always}",
  "kbd {speak-as: spell-out}",
  "progress {content: attr(value) 'of' attr(max)}",
  "progress {content: attr(value) ' of ' attr(max)}",
  "sub {voice-rate: x-fast}",
  "sup {voice-rate: fast}",
  "var {voice-rate: slow}"