From 55a2f025d73d4f5fa15c9ef26356926c4aa92576 Mon Sep 17 00:00:00 2001 From: narspt Date: Tue, 16 Oct 2018 19:45:57 +0100 Subject: [PATCH] minor css fixes for old browsers ensure no borders around image links and add fallback th solid color for old browsers that do not support gradients --- dashboard/css/layout.css | 31 ++++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/dashboard/css/layout.css b/dashboard/css/layout.css index 3a80aff..e85055b 100755 --- a/dashboard/css/layout.css +++ b/dashboard/css/layout.css @@ -10,6 +10,10 @@ h1 { font-size : 25pt; } +a img { + border: 0; +} + a.tip { text-decoration : none; } @@ -117,18 +121,19 @@ a.tip:hover span { .listingtable th { height : 35px; text-align : center; - background-image: -webkit-gradient( - linear, - left top, - left bottom, - color-stop(0, rgb(201, 231, 233)), - color-stop(0.8, rgb(220, 237, 244)) -); -background-image: -o-linear-gradient(bottom, rgb(201, 231, 233) 0%, rgb(220, 237, 244) 80%); -background-image: -moz-linear-gradient(bottom, rgb(201, 231, 233) 0%, rgb(220, 237, 244) 80%); -background-image: -webkit-linear-gradient(bottom, rgb(201, 231, 233) 0%, rgb(220, 237, 244) 80%); -background-image: -ms-linear-gradient(bottom, rgb(201, 231, 233) 0%, rgb(220, 237, 244) 80%); -background-image: linear-gradient(to bottom, rgb(201, 231, 233) 0%, rgb(220, 237, 244) 80%); + background-color : #D5EBF0; + background-image : -webkit-gradient( + linear, + left top, + left bottom, + color-stop(0, rgb(201, 231, 233)), + color-stop(0.8, rgb(220, 237, 244)) + ); + background-image: -o-linear-gradient(bottom, rgb(201, 231, 233) 0%, rgb(220, 237, 244) 80%); + background-image: -moz-linear-gradient(bottom, rgb(201, 231, 233) 0%, rgb(220, 237, 244) 80%); + background-image: -webkit-linear-gradient(bottom, rgb(201, 231, 233) 0%, rgb(220, 237, 244) 80%); + background-image: -ms-linear-gradient(bottom, rgb(201, 231, 233) 0%, rgb(220, 237, 244) 80%); + background-image: linear-gradient(to bottom, rgb(201, 231, 233) 0%, rgb(220, 237, 244) 80%); } .listingtable td { @@ -136,7 +141,7 @@ background-image: linear-gradient(to bottom, rgb(201, 231, 233) 0%, rgb(220, 237 } .listinglink { - font-size : 12pt; + font-size : 12pt; text-decoration : underline; color : #60A1DE; }