diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-12-19 14:52:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-19 14:52:41 -0500 |
commit | dcb75cce1e3590b4f1469c01a721e3ef3b319888 (patch) | |
tree | ee8d653c2223c28fc5be61a92e0353614637a968 /ext | |
parent | 5021ed9f831a394a7145db58375a0c80994d123a (diff) |
Fix invalid CSS :not selector causing frequency tags to display twice (#1135)
Diffstat (limited to 'ext')
-rw-r--r-- | ext/mixed/css/display.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mixed/css/display.css b/ext/mixed/css/display.css index 5344e178..ac6e50ae 100644 --- a/ext/mixed/css/display.css +++ b/ext/mixed/css/display.css @@ -1291,7 +1291,7 @@ button.action-button { display: inline; color: var(--light-text-color); } -:root[data-glossary-layout-mode=compact] .entry:not([data-type=term][data-expression-multi=true]) .term-special-tags { +:root[data-glossary-layout-mode=compact] .entry:not([data-expression-multi=true]) .term-special-tags { display: none; } :root[data-glossary-layout-mode=compact] .term-expression-details>.frequencies { |