Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(327)

Unified Diff: third_party/WebKit/Source/devtools/front_end/data_grid/dataGrid.css

Issue 2567873002: DevTools: Add ability to add and edit cookies (Closed)
Patch Set: Rebase. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/data_grid/dataGrid.css
diff --git a/third_party/WebKit/Source/devtools/front_end/data_grid/dataGrid.css b/third_party/WebKit/Source/devtools/front_end/data_grid/dataGrid.css
index 1036d2379af62aafbf7beb52701155d7294deead..dd045faf6d5d35ef85b908f763abc240f63ff1b2 100644
--- a/third_party/WebKit/Source/devtools/front_end/data_grid/dataGrid.css
+++ b/third_party/WebKit/Source/devtools/front_end/data_grid/dataGrid.css
@@ -230,6 +230,21 @@
-webkit-mask-position: -20px -96px;
}
+.data-grid tr.inactive {
+ color: rgb(128, 128, 128);
+ font-style: italic;
+}
+
+.data-grid tr.dirty {
+ background-color: hsl(0, 100%, 92%);
+ color: red;
+ font-style: normal;
+}
+
+.data-grid:focus tr.selected.dirty {
+ background-color: hsl(0, 100%, 70%);
+}
+
.data-grid-resizer {
position: absolute;
top: 0;

Powered by Google App Engine
This is Rietveld 408576698