diff options
author | M. Dent <dentm42@gmail.com> | 2018-12-10 05:36:58 +0100 |
---|---|---|
committer | M. Dent <dentm42@gmail.com> | 2018-12-10 05:36:58 +0100 |
commit | 61f7c1e7d717cee4feb769e8e66cea53514a684f (patch) | |
tree | 6521e03627ca0261c1090c79dc1c4880fb364785 | |
parent | 7f65d82a74f3755ec12ad35f447b702c94c3e776 (diff) | |
parent | 18caf0273fe6ec66ea429561c1da93deb5741c23 (diff) | |
download | volse-hubzilla-61f7c1e7d717cee4feb769e8e66cea53514a684f.tar.gz volse-hubzilla-61f7c1e7d717cee4feb769e8e66cea53514a684f.tar.bz2 volse-hubzilla-61f7c1e7d717cee4feb769e8e66cea53514a684f.zip |
Merge branch 'dark-theme-dev' into 'dev'
change redbasic dark schema to make categories and highlights readable
See merge request hubzilla/core!1424
-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; +} |