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

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/domUtils.css

Issue 1514483002: DevTools: brush up new details cards on timeline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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/components/domUtils.css
diff --git a/third_party/WebKit/Source/devtools/front_end/components/domUtils.css b/third_party/WebKit/Source/devtools/front_end/components/domUtils.css
index 09397a0352ecffb12022623da59a31089dbcb068..50988784959751dbf912f4bdae2133ccf2d6e818 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/domUtils.css
+++ b/third_party/WebKit/Source/devtools/front_end/components/domUtils.css
@@ -5,7 +5,8 @@
*/
:host {
- display: inline;
+ display: inline;
+ background-color: #fafafa;
}
.node-link {
@@ -25,10 +26,20 @@
.stack-preview-container > tr {
height: 17px;
+ padding: 0 2px;
}
.stack-preview-container td {
white-space: nowrap;
+ padding: 0 4px;
+}
+
+.stack-preview-container > tr:nth-child(even) {
+ background-color: #f0f0f0;
+}
+
+.stack-preview-container td:last-child {
+ text-align: right;
}
.node-label-name {

Powered by Google App Engine
This is Rietveld 408576698