Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: skin/devtools-panel.css

Issue 29738571: Issue 6542 - Fix colors of the devtools resource URLs (Closed)
Patch Set: Separate selectors with newlines Created April 3, 2018, 3:13 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skin/devtools-panel.css
diff --git a/skin/devtools-panel.css b/skin/devtools-panel.css
index 5e5a1fd2856a99dc04abb3a6228d1dc7bcabbae1..4a6726599753fdfeb951fe1d85681987a8f470cd 100644
--- a/skin/devtools-panel.css
+++ b/skin/devtools-panel.css
@@ -31,18 +31,24 @@ html
body
{
margin: 0;
- color: #303942;
display: flex;
height: 100%;
flex-direction: column;
}
+body,
+a
+{
+ color: #303942;
+}
+
body.default
{
background-color: #ffffff;
}
-body.dark
+body.dark,
+body.dark a
{
color: #ffffff;
}
@@ -126,22 +132,26 @@ body.dark #items table
height: 40px;
}
-#items tr[data-state=blocked]
+#items tr[data-state=blocked],
+#items tr[data-state=blocked] a
{
color: red;
}
-body.dark #items tr[data-state=blocked]
+body.dark #items tr[data-state=blocked],
+body.dark #items tr[data-state=blocked] a
{
color: #ff3a3a;
}
-#items tr[data-state=whitelisted]
+#items tr[data-state=whitelisted],
+#items tr[data-state=whitelisted] a
{
color: green;
}
-body.dark #items tr[data-state=whitelisted]
+body.dark #items tr[data-state=whitelisted],
+body.dark #items tr[data-state=whitelisted] a
{
color: #389c22;
}
@@ -176,7 +186,6 @@ tr:not(:hover) .action
.resource-link {
text-decoration: none;
- color: #303942;
}
.resource-link:hover {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld