From b5fefde376022dcb014da2b3939c9187d15ab041 Mon Sep 17 00:00:00 2001 From: Christian Wolf Date: Mon, 4 Dec 2017 11:45:46 +0100 Subject: [PATCH] Added color for links in text, modified alternating tables --- slt/css/visual.css | 5 ++++ slt/index.php | 36 +++++++++++++++++++++++++--- slt/language/en-GB/en-GB.tpl_slt.ini | 4 ++++ slt/templateDetails.xml | 4 ++++ 4 files changed, 46 insertions(+), 3 deletions(-) diff --git a/slt/css/visual.css b/slt/css/visual.css index eb8990e..bdd2aa4 100644 --- a/slt/css/visual.css +++ b/slt/css/visual.css @@ -120,6 +120,11 @@ ul.nav-child > li > a:hover border-top-style: none; } +.row-striped .row-fluid:nth-child(n) +{ + background-color: inherit; +} + /* params{'bgcolorside'}; ?>; } +a, a:hover, a:active, a:visited +{ + color: ; +} + #page-bg { background-image: linear-gradient(to bottom, ); @@ -89,7 +94,7 @@ ul.menu li.current > a, ul.menu li.current:hover > a { background-color: ; - color: ; + color: ; } ul.nav > li > a:hover, @@ -98,7 +103,7 @@ ul.nav-child > li > a:hover, ul.nav-child > li > a:focus { background-color: ; - color: ; + color: ; } #topmenu, @@ -137,15 +142,40 @@ ul.nav-child > li > a:focus background-image: ; } -table.alternating tr:nth-child(1) { +.row-striped .row-fluid:nth-child(odd) +{ + background-color: ; + color: ; +} +.row-striped .row-fluid:nth-child(odd) a +{ + color: ; +} +.row-striped .row-fluid:hover +{ background-color: ; color: ; } +.row-striped .row-fluid:hover a +{ + color: ; +} table.alternating tr:nth-child(even) { + background-color: ; + color: ; +} +table.alternating tr:nth-child(even) a +{ + color: ; +} +table.alternating tr:nth-child(1) { background-color: ; color: ; } +table.alternating tr:nth-child(1) a { + color: ; +} + + + +