diff options
author | phani00 <phani00@gmail.com> | 2018-12-17 15:28:15 +0000 |
---|---|---|
committer | phani00 <phani00@gmail.com> | 2018-12-17 15:28:15 +0000 |
commit | aace8a14cee2f173b7a11bb2bfcbcebbe0084863 (patch) | |
tree | 201f08adbec03f2736c2a56d9ae9a2ac6c6602c2 /view/theme/redbasic/schema | |
parent | d80b8ff30fd1bbd6d02e685bdfac4c5bcded9fa8 (diff) | |
download | volse-hubzilla-aace8a14cee2f173b7a11bb2bfcbcebbe0084863.tar.gz volse-hubzilla-aace8a14cee2f173b7a11bb2bfcbcebbe0084863.tar.bz2 volse-hubzilla-aace8a14cee2f173b7a11bb2bfcbcebbe0084863.zip |
new fix for dark theme
change implementation of hl-tags in include/bbcode.php
insert class='default-highlight' instead of background-color: 'yellow' into span
add span.default-highlight definition to view/theme/redbasic/css/style.css
this works for all schemas incl. dark.
Diffstat (limited to 'view/theme/redbasic/schema')
-rw-r--r-- | view/theme/redbasic/schema/dark.css | 40 |
1 files changed, 16 insertions, 24 deletions
diff --git a/view/theme/redbasic/schema/dark.css b/view/theme/redbasic/schema/dark.css index c00ddca90..a0b9b12d3 100644 --- a/view/theme/redbasic/schema/dark.css +++ b/view/theme/redbasic/schema/dark.css @@ -323,23 +323,6 @@ a, a:visited, a:link, .fakelink, .fakelink:visited, .fakelink:link { color: #aaa !important; } -/* phani: fix 1 */ -/*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; @@ -495,10 +478,19 @@ pre { background-color: #222; } -/* phani: fix 2 */ -/* change color of [hl] tag: */ -/*div.wall-item-body span { - color: #1212b6; - padding: 2px 3px; - white-space: nowrap; -}*/ + +/* category badge fix: */ +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; +} |