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: Created March 31, 2018, 11:05 a.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..e29929307766896f519ab65307ca3bc9bc2d2b3e 100644
--- a/skin/devtools-panel.css
+++ b/skin/devtools-panel.css
@@ -31,18 +31,22 @@ html
body
{
margin: 0;
- color: #303942;
display: flex;
height: 100%;
flex-direction: column;
}
+body, a
Thomas Greiner 2018/04/03 12:20:29 Coding style: "Separate selectors and declarations
kzar 2018/04/03 15:15:40 Done.
+{
+ color: #303942;
+}
+
body.default
{
background-color: #ffffff;
}
-body.dark
+body.dark, body.dark a
{
color: #ffffff;
}
@@ -126,22 +130,22 @@ 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 +180,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