diff options
author | phani00 <phani00@gmail.com> | 2018-12-10 03:03:28 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-12-14 11:30:05 +0100 |
commit | 44832bbacb90cabe1d31ba425b44998667f63936 (patch) | |
tree | fbaa8631add33f6e99f301b7b2fd678e8e9ffff3 | |
parent | f20a923dd7b1669ca27a798b30e9ae797bda1dea (diff) | |
download | volse-hubzilla-44832bbacb90cabe1d31ba425b44998667f63936.tar.gz volse-hubzilla-44832bbacb90cabe1d31ba425b44998667f63936.tar.bz2 volse-hubzilla-44832bbacb90cabe1d31ba425b44998667f63936.zip |
change redbasic dark schema to make categories and highlights readable
additions to /view/theme/redbasic/schema/dark.css to change the appearance of category
badges and highlighted text ([hl]...[/hl]).
hl text changed from master: it's not 'strong' anymore. commented out the pseudo-class
selector that works in master but not in dev anymore.
(cherry picked from commit 18caf0273fe6ec66ea429561c1da93deb5741c23)
-rw-r--r-- | view/theme/redbasic/schema/dark.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/view/theme/redbasic/schema/dark.css b/view/theme/redbasic/schema/dark.css index 71f7bc393..e958d9ee7 100644 --- a/view/theme/redbasic/schema/dark.css +++ b/view/theme/redbasic/schema/dark.css @@ -326,6 +326,17 @@ a.text-dark:focus, a.text-dark:hover { color: #ddd !important; } +.badge-warning { + background-color: #ffc927; +} +.badge-warning a.text-dark { + color: #333 !important; +} +.badge-warning a.text-dark:focus, .badge-warning a.text-dark:hover { + color: red !important; + text-decoration: none; +} + .group-selected, .fileas-selected, .categories-selected, .search-selected, a.active { color: #fff !important; text-decoration: underline !important; @@ -480,3 +491,11 @@ pre { .widget-nav-pills-checkbox:hover + a { background-color: #222; } + +/* change color of [hl] tag: */ +div.wall-item-body span /*strong:only-of-type */{ + color: #1212b6; + padding: 2px 3px; +/* font-weight: 500; */ + white-space: nowrap; +} |