aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-02-21 14:54:59 -0800
committerredmatrix <git@macgirvin.com>2016-02-21 14:54:59 -0800
commitc9252d49f7f756fe734b2bcc456726730a035b1a (patch)
tree34830836dbaf748b60f0aaa3f8ac2700dbbfef24 /view/theme
parent411abdf8a74a7e6cb1914fd0d9545dd40b75544c (diff)
parent1fcc863298ec2bb4f4e1f4cf240a72a420863445 (diff)
downloadvolse-hubzilla-c9252d49f7f756fe734b2bcc456726730a035b1a.tar.gz
volse-hubzilla-c9252d49f7f756fe734b2bcc456726730a035b1a.tar.bz2
volse-hubzilla-c9252d49f7f756fe734b2bcc456726730a035b1a.zip
Merge https://github.com/redmatrix/hubzilla into pending_merge
Diffstat (limited to 'view/theme')
-rw-r--r--view/theme/redbasic/schema/dark.css8
-rw-r--r--view/theme/redbasic/schema/simple_green_on_black.css13
-rw-r--r--view/theme/redbasic/schema/simple_white_on_black.css8
3 files changed, 29 insertions, 0 deletions
diff --git a/view/theme/redbasic/schema/dark.css b/view/theme/redbasic/schema/dark.css
index 16044b224..6ed2501e1 100644
--- a/view/theme/redbasic/schema/dark.css
+++ b/view/theme/redbasic/schema/dark.css
@@ -352,3 +352,11 @@ pre {
background-color: inherit;
border: none;
}
+
+.table-striped > tbody > tr:nth-of-type(2n+1), .table-hover > tbody > tr:hover {
+ background-color: #191919;
+}
+
+.table > tbody > tr > td {
+ border-color: #888;
+}
diff --git a/view/theme/redbasic/schema/simple_green_on_black.css b/view/theme/redbasic/schema/simple_green_on_black.css
index 0928c64f3..e6901143b 100644
--- a/view/theme/redbasic/schema/simple_green_on_black.css
+++ b/view/theme/redbasic/schema/simple_green_on_black.css
@@ -202,6 +202,7 @@ a.rconnect, a.rateme, div.rateme {
text-decoration: underline;
background-color: #000;
color: #50f148;
+ border-color: #143D12;
}
aside .nav > li > a:hover, aside .nav > li > a:focus {
@@ -292,3 +293,15 @@ pre {
background-color: inherit;
border: none;
}
+
+.table-striped > tbody > tr:nth-of-type(2n+1) {
+ background-color: #000;
+}
+
+.table-hover > tbody > tr:hover {
+ background-color: #143D12;
+}
+
+.table > tbody > tr > td {
+ border-color: #143D12;
+}
diff --git a/view/theme/redbasic/schema/simple_white_on_black.css b/view/theme/redbasic/schema/simple_white_on_black.css
index 45bdba1cd..a2d024881 100644
--- a/view/theme/redbasic/schema/simple_white_on_black.css
+++ b/view/theme/redbasic/schema/simple_white_on_black.css
@@ -271,3 +271,11 @@ pre {
background-color: inherit;
border: none;
}
+
+.table-striped > tbody > tr:nth-of-type(2n+1), .table-hover > tbody > tr:hover {
+ background-color: #030303;
+}
+
+.table > tbody > tr > td {
+ border-color: #FFF;
+}