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
pull/1/head
narspt 7 years ago committed by GitHub
parent 7ea08fe865
commit 55a2f025d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -10,6 +10,10 @@ h1 {
font-size : 25pt; font-size : 25pt;
} }
a img {
border: 0;
}
a.tip { a.tip {
text-decoration : none; text-decoration : none;
} }
@ -117,18 +121,19 @@ a.tip:hover span {
.listingtable th { .listingtable th {
height : 35px; height : 35px;
text-align : center; text-align : center;
background-image: -webkit-gradient( background-color : #D5EBF0;
linear, background-image : -webkit-gradient(
left top, linear,
left bottom, left top,
color-stop(0, rgb(201, 231, 233)), left bottom,
color-stop(0.8, rgb(220, 237, 244)) 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: -o-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: -moz-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: -webkit-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-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 { .listingtable td {
@ -136,7 +141,7 @@ background-image: linear-gradient(to bottom, rgb(201, 231, 233) 0%, rgb(220, 237
} }
.listinglink { .listinglink {
font-size : 12pt; font-size : 12pt;
text-decoration : underline; text-decoration : underline;
color : #60A1DE; color : #60A1DE;
} }

Loading…
Cancel
Save

Powered by TurnKey Linux.