Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/network/networkLogView.css |
| diff --git a/third_party/WebKit/Source/devtools/front_end/network/networkLogView.css b/third_party/WebKit/Source/devtools/front_end/network/networkLogView.css |
| index 48068d986c81aa8111922cdc5681a106e271d91f..d65854bef5a64243c37bb2d1f2939cfa4f36793f 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/network/networkLogView.css |
| +++ b/third_party/WebKit/Source/devtools/front_end/network/networkLogView.css |
| @@ -76,13 +76,13 @@ |
| height: 21px; |
| } |
| -.network-log-grid.data-grid th { |
| +.timelineHeader, .network-log-grid.data-grid th { |
| border-bottom: 1px solid rgb(205, 205, 205); |
| border-left: 1px solid rgb(205, 205, 205); |
| background: white; |
| } |
| -.network-log-grid.data-grid .header-container { |
| +.timelineHeader, .network-log-grid.data-grid .header-container { |
| height: 31px; |
| } |
| @@ -90,7 +90,7 @@ |
| top: 31px; |
| } |
| -.network-log-grid.data-grid.small .header-container { |
| +.timelineHeader.small, .network-log-grid.data-grid.small .header-container { |
| height: 27px; |
| } |
| @@ -653,3 +653,56 @@ |
| text-align: center; |
| line-height: 28px; |
| } |
| + |
| +.timelineHeader { |
|
dgozman
2016/10/08 00:36:41
.network-timeline-header
allada
2016/10/08 01:09:01
Done.
|
| + position: absolute; |
| + border-left: 0px; |
| + width: 100%; |
| + display: table; |
| + z-index: 200; |
| + background-color:transparent; |
| +} |
| + |
| +.timelineHeader:hover { |
| + background-color:hsla(0, 0%, 80%, .5); |
| +} |
| + |
| +.timelineHeader div { |
| + display: table-cell; |
| + line-height: 14px; |
| + margin: auto 0px; |
| + vertical-align: middle; |
| + text-align: left; |
| + font-weight: normal; |
| + padding: 0px 4px; |
| + font-size: 11px; |
| +} |
| + |
| +.timelineHeader .sort-order-icon-container { |
| + position: absolute; |
| + top: 1px; |
| + right: 0; |
| + bottom: 1px; |
| + display: flex; |
| + align-items: center; |
| +} |
| + |
| +.timelineHeader .sort-order-icon { |
| + margin-right: 4px; |
| + background-image: url(Images/toolbarButtonGlyphs.png); |
| + background-size: 352px 168px; |
| + opacity: 0.5; |
| + width: 8px; |
| + height: 7px; |
| + display: none; |
| +} |
| + |
| +.timelineHeader .sort-ascending.sort-order-icon { |
| + display: block; |
| + background-position: -4px -111px; |
| +} |
| + |
| +.timelineHeader .sort-descending.sort-order-icon { |
| + display: block; |
| + background-position: -20px -99px; |
| +} |