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
This commit is contained in:
narspt 2018-10-16 19:45:57 +01:00 committed by GitHub
parent 7ea08fe865
commit 55a2f025d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 13 deletions

View File

@ -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;
}