diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-12-19 14:52:41 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-12-20 12:28:57 -0500 |
commit | e6a996a206a83648d1fce9ea43e0a738bf958ff7 (patch) | |
tree | 653c6c093841bba10b97b35b5e13a130bacebfb9 /ext | |
parent | 35de4df0c58b6deab5f86ff7e7c5862b919adb9d (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 81eb7cea..b30c769a 100644 --- a/ext/mixed/css/display.css +++ b/ext/mixed/css/display.css @@ -1155,7 +1155,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 { |