diff options
| author | Daniel Friesel <derf@finalrewind.org> | 2016-09-16 18:40:49 +0200 | 
|---|---|---|
| committer | Daniel Friesel <derf@finalrewind.org> | 2016-09-16 18:40:49 +0200 | 
| commit | 38e787fc72f21a572f3019f9bd3a86cc497f641d (patch) | |
| tree | 696adbe26a403146df32972fd9fd1abda4976dfd | |
| parent | 59ac542ce72f0e9e9850f579bb3af10408840268 (diff) | |
CSS: Inherit background color for foreground texts
| -rw-r--r-- | public/static/default.css | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/public/static/default.css b/public/static/default.css index f152352..e11e315 100644 --- a/public/static/default.css +++ b/public/static/default.css @@ -191,7 +191,7 @@ div.displayclean li.cancelled {  div.displayclean li .countdown {  	color: #000000; -	background-color: #ffffff; +	background-color: inherit;  	font-size: 3em;  	position: absolute;  	right: 5px; @@ -216,7 +216,7 @@ div.displayclean li .head {  div.displayclean li .countdown .delay {  	font-size:1em;  	color:#FF0000; -	background-color: #ffffff; +	background-color: inherit;  	padding-right:7px;  } @@ -248,7 +248,7 @@ div.displayclean li .countdown .changed-platform {  div.displayclean li .time {  	color:#000000; -	background-color: #ffffff; +	background-color: inherit;  	font-size:2.4em;  	position:absolute;  	right:5px; @@ -258,7 +258,7 @@ div.displayclean li .time {  div.displayclean span.delayed {  	color: #ff0000; -	background-color: #ffffff; +	background-color: inherit;  }  div.displaymulti { | 
