[damned-lies] Fixed CSS syntax related to linear-gradient
- From: Claude Paroz <claudep src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [damned-lies] Fixed CSS syntax related to linear-gradient
- Date: Mon, 5 Nov 2018 19:19:10 +0000 (UTC)
commit 011306fc8d4d9111613585fa749f030f1e80594c
Author: Claude Paroz <claude 2xlibre net>
Date: Mon Nov 5 20:17:46 2018 +0100
Fixed CSS syntax related to linear-gradient
Refs #113 - Thanks Tom Tryfonidis for catching the issue.
common/static/css/template.css | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
---
diff --git a/common/static/css/template.css b/common/static/css/template.css
index f5a5e306..40a8de25 100644
--- a/common/static/css/template.css
+++ b/common/static/css/template.css
@@ -293,7 +293,7 @@ table.stats thead th {
text-align: left;
padding-top: 5px;
padding-bottom: 5px;
- background: linear-gradient(top, #f9f9f9, #ececec);
+ background: linear-gradient(to top, #f9f9f9, #ececec);
white-space: nowrap;
}
table.stats th,
@@ -312,7 +312,7 @@ table.stats td img {
}
table.stats tfoot {
background: #f4f4f4;
- background: linear-gradient(top, #f4f4f4, #fff);
+ background: linear-gradient(to top, #f4f4f4, #fff);
}
td.supported {
color: #ffffff;
@@ -385,15 +385,15 @@ div.graphinline {
}
.graph .translated {
background: #73d216;
- background: -linear-gradient(top, #73d216, #66bb14);
+ background: linear-gradient(to top, #73d216, #66bb14);
}
.graph .fuzzy {
background: #5688c9;
- background: linear-gradient(top, #ff840d, #e37000);
+ background: linear-gradient(to top, #ff840d, #e37000);
}
.graph .untranslated {
background: #ff1b1b;
- background: linear-gradient(top, #ff1b1b, #cc0000);
+ background: linear-gradient(to top, #ff1b1b, #cc0000);
}
/* Download button */
@@ -524,17 +524,17 @@ div.graphinline {
}
table.stats thead tr .header {
background: #eeeeee url(../img/bg.gif) no-repeat center right;
- background: url(../img/bg.gif) no-repeat center right, linear-gradient(top, #f9f9f9, #ececec);
+ background: url(../img/bg.gif) no-repeat center right, linear-gradient(to top, #f9f9f9, #ececec);
cursor: pointer;
padding-right: 1.2em;
}
table.stats thead tr .headerSortUp {
background: #eeeeee url(../img/asc.gif) no-repeat center right;
- background: url(../img/asc.gif) no-repeat center right, linear-gradient(top, #f9f9f9, #ececec);
+ background: url(../img/asc.gif) no-repeat center right, linear-gradient(to top, #f9f9f9, #ececec);
}
table.stats thead tr .headerSortDown {
background: #eeeeee url(../img/desc.gif) no-repeat center right;
- background: url(../img/desc.gif) no-repeat center right, linear-gradient(top, #f9f9f9, #ececec);
+ background: url(../img/desc.gif) no-repeat center right, linear-gradient(to top, #f9f9f9, #ececec);
}
table.stats th.headerNoSort {
background-color: #eeeeee;
@@ -547,7 +547,7 @@ table.stats th.headerNoSort {
.vertimus_action {
background: #eeeeee;
- background: linear-gradient(top, #f9f9f9, #ececec);
+ background: linear-gradient(to top, #f9f9f9, #ececec);
margin: 1em 0 1.5em;
border: solid #ddd 1px;
}
@@ -614,7 +614,7 @@ div.docimages {
border: 1px solid #ccc;
background: #eeeeee;
- background: linear-gradient(top, #f9f9f9, #ececec);
+ background: linear-gradient(to top, #f9f9f9, #ececec);
border-radius: 5px;
}
.djform textarea {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]