From 635675f34230e8de5e2a4a4aea2673ca0ee874d7 Mon Sep 17 00:00:00 2001 From: danix Date: Tue, 28 Feb 2023 11:40:59 +0100 Subject: [PATCH] playing with colors again --- gitweb-danixland/gitweb.css | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/gitweb-danixland/gitweb.css b/gitweb-danixland/gitweb.css index b77d420..94abaf8 100644 --- a/gitweb-danixland/gitweb.css +++ b/gitweb-danixland/gitweb.css @@ -215,7 +215,10 @@ td, th { .page_footer, .site-footer { width: 100%; - background: var(--bg-alt); + background: var(--bg); /* old browsers */ + background: -moz-linear-gradient(top, var(--bg) 0%, var(--fg) 100%); /* firefox */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,var(--bg)), color-stop(100%,var(--fg))); /* webkit */ + background: -o-linear-gradient(top, var(--bg) 0%, var(--fg) 100%); margin: 0; } @@ -725,14 +728,13 @@ div.chunk_block div.new { ---------------------------------------------------------------------------- */ td.category { - background: #E6F1F6; /* old browsers */ - background: -moz-linear-gradient(top, #C8D8E7 0%, #E6F1F3 100%); /* firefox */ - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#C8D8E7), color-stop(100%,#E6F1F3)); /* webkit */ - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#C8D8E7', endColorstr='#E6F1F3',GradientType=0 ); /* ie */ - background: -o-linear-gradient(top, #C8D8E7 0%, #E6F1F3 100%); + background: var(--bg); /* old browsers */ + background: -moz-linear-gradient(top, var(--bg) 0%, var(--fg) 100%); /* firefox */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,var(--bg)), color-stop(100%,var(--fg))); /* webkit */ + background: -o-linear-gradient(top, var(--bg) 0%, var(--fg) 100%); font-weight: bold; - border-bottom: 1px solid #D1D1D1; - border-top: 1px solid #D1D1D1; + border-bottom: 1px solid var(--border); + border-top: 1px solid var(--border); } /* Age -- 2.20.1