diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2024-11-23 17:43:20 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2024-11-23 17:43:20 +0300 |
| commit | d4636716fb6e1879098823c2f037db5d8d3f24a0 (patch) | |
| tree | 1c0b2c0225c9f1a5aa394f1096523bac57dd0022 /themes/compact_night.css | |
| parent | 81ccfed4b447bee43a330f26560325d11e908737 (diff) | |
collapse actions summary list in filter tree if 'toggle rule display' is disabled, remove label-specific icon display, simplify markup
Diffstat (limited to 'themes/compact_night.css')
| -rw-r--r-- | themes/compact_night.css | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/themes/compact_night.css b/themes/compact_night.css index c62554e29..4ad5e217a 100644 --- a/themes/compact_night.css +++ b/themes/compact_night.css @@ -1716,6 +1716,13 @@ body.ttrss_prefs .phpinfo td.v { font-family: monospace; word-break: break-all; } +body.ttrss_prefs ul.actions_summary { + float: right; + margin-right: 16px; + margin-top: 0; + list-style-type: none; + text-align: right; +} body.ttrss_prefs #filterNewRuleDlg .dijitValidationTextAreaError, body.ttrss_main #filterNewRuleDlg .dijitValidationTextAreaError { background: #ffc0c0; @@ -1753,6 +1760,15 @@ body.ttrss_utility fieldset > label.checkbox { body.ttrss_prefs[hide-filter-rules="true"] ul.filterRules { display: none; } +body.ttrss_prefs[hide-filter-rules="true"] ul.actions_summary li { + display: inline; +} +body.ttrss_prefs[hide-filter-rules="true"] ul.actions_summary li:after { + content: ", "; +} +body.ttrss_prefs[hide-filter-rules="true"] ul.actions_summary li:last-child:after { + content: " "; +} .flat { /*#feedTree { .dijitTreeContent .dijitInline { @@ -1866,11 +1882,6 @@ body.ttrss_prefs[hide-filter-rules="true"] ul.filterRules { .flat .dijitTree .dijitTreeNode .dijitTreeRow.dijitTreeRowSelected { color: white; } -.flat .dijitTree .labelParam { - float: right; - margin-right: 16px; - text-align: right; -} .flat .dijitTree .dijitTreeRow.filterDisabled { opacity: 0.5; } |