aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorphani00 <phani00@gmail.com>2018-12-18 16:54:39 +0000
committerMario <mario@mariovavti.com>2018-12-22 19:54:48 +0100
commitfeda1e6d84dc04341f8c348ac53c103fd97e8303 (patch)
tree2800f908d88482d12bb35ab541fa9b96129d0a93
parent4256bea41835384ea8a334883b24512713a03859 (diff)
downloadvolse-hubzilla-feda1e6d84dc04341f8c348ac53c103fd97e8303.tar.gz
volse-hubzilla-feda1e6d84dc04341f8c348ac53c103fd97e8303.tar.bz2
volse-hubzilla-feda1e6d84dc04341f8c348ac53c103fd97e8303.zip
remove color from style.css (default) but add a little padding; add color & border radius to dark.css.
(cherry picked from commit 2354bb5427d5d6b384c2e5b0f8fb9e676249e77b)
-rw-r--r--view/theme/redbasic/css/style.css2
-rw-r--r--view/theme/redbasic/schema/dark.css6
2 files changed, 7 insertions, 1 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 303987c53..b406e710c 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -1807,5 +1807,5 @@ dl.bb-dl > dd > li {
/* default highlighted text if not specified by schema: */
span.default-highlight {
background-color: yellow;
- color: #4d4d4d;
+ padding: 2px 4px;
}
diff --git a/view/theme/redbasic/schema/dark.css b/view/theme/redbasic/schema/dark.css
index a0b9b12d3..bf55fec72 100644
--- a/view/theme/redbasic/schema/dark.css
+++ b/view/theme/redbasic/schema/dark.css
@@ -494,3 +494,9 @@ a.text-dark:focus, a.text-dark:hover {
color: red !important;
text-decoration: none;
}
+
+/* fix color for highlithed text */
+span.default-highlight {
+ color: #333;
+ border-radius: 4px;
+}