diff options
Diffstat (limited to 'view/theme/redbasic/schema')
-rw-r--r-- | view/theme/redbasic/schema/dark.css | 8 | ||||
-rw-r--r-- | view/theme/redbasic/schema/simple_green_on_black.css | 13 | ||||
-rw-r--r-- | view/theme/redbasic/schema/simple_white_on_black.css | 8 |
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; +} |