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

Unified Diff: third_party/WebKit/Source/devtools/front_end/network/networkPanel.css

Issue 1232733002: DevTools: [network] Show request Start time in timing table (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: post-fork. queuing is inside of total. queued time, too Created 5 years, 1 month 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/network/networkPanel.css
diff --git a/third_party/WebKit/Source/devtools/front_end/network/networkPanel.css b/third_party/WebKit/Source/devtools/front_end/network/networkPanel.css
index fc706031eeb3c01849950357e615c85c6354c14a..56ef22131e72d2e7afd37b3003a0fb70f575f41a 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/networkPanel.css
+++ b/third_party/WebKit/Source/devtools/front_end/network/networkPanel.css
@@ -62,12 +62,23 @@
border-spacing: 0;
padding-left: 10px;
padding-right: 10px;
+ line-height: initial;
+}
+
+.network-timing-start {
+ border-top: 5px solid transparent;
+}
+
+.network-timing-table-header td, .network-timing-footer td {
+ border-top: 10px solid transparent;
+}
+
+.network-timing-footer td:nth-child(2) {
+ border-top: 1px solid #333;
}
.network-timing-table-header td {
color: #bbb;
- border-top: 5px solid transparent;
- border-bottom: 5px solid transparent;
}
.network-timing-table-header td:last-child {
@@ -75,7 +86,7 @@
}
.network-timing-table col.labels {
- width: 120px;
+ width: 156px;
}
.network-timing-table col.duration {
@@ -92,10 +103,6 @@
padding: 2px 0;
}
-.network-timing-footer td {
- border-top: 8px solid transparent;
-}
-
.network-timing-footer td:last-child {
font-weight: bold;
text-align: right;

Powered by Google App Engine
This is Rietveld 408576698