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

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

Issue 2894083002: [DevTools] Set row background instead of the table (Closed)
Patch Set: [DevTools] Set row background instead of the table Created 3 years, 7 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 236c72afd157781b3a9ebf472229cfc68dd17e78..971a436a04ab656788ea02aabaf4a55cb692e9da 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
@@ -66,7 +66,7 @@
right: 0;
bottom: 0;
border-top: 0 none transparent;
- background-image: linear-gradient(to bottom, transparent, transparent 50%, hsla(214, 100%, 40%, 0.05) 50%, hsla(214, 100%, 40%, 0.05));
+ /*background-image: linear-gradient(to bottom, transparent, transparent 50%, hsla(214, 100%, 40%, 0.05) 50%, hsla(214, 100%, 40%, 0.05));*/
dgozman 2017/05/22 18:45:27 Commented code.
allada 2017/05/22 19:10:29 Remove this.
background-size: 128px 40px;
table-layout: fixed;
}
@@ -75,6 +75,10 @@
position: static;
}
+.data-grid-odd-row {
+ background-color: hsla(214, 100%, 40%, 0.05);
allada 2017/05/22 19:10:29 Is there a reason we are using alpha channel inste
+}
+
.data-grid table.data tr {
display: none;
}

Powered by Google App Engine
This is Rietveld 408576698