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

Unified Diff: third_party/WebKit/Source/devtools/front_end/timeline/timelinePanel.css

Issue 2686713003: DevTools: Disable timeline network pane resizer when network group is collapsed. (Closed)
Patch Set: make it work for real Created 3 years, 10 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/timeline/timelinePanel.css
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/timelinePanel.css b/third_party/WebKit/Source/devtools/front_end/timeline/timelinePanel.css
index 3d979b6e43cb015054d7f02b5974946ec2cda96f..30a3c8aa459a6e994f9e93fd98543300aa4ef4bb 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/timelinePanel.css
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/timelinePanel.css
@@ -450,15 +450,20 @@
}
.timeline-flamechart-resizer {
- height: 7px;
+ height: 8px;
background-color: #f3f3f3;
- border-top: #a3a3a3 1px solid;
+ border: 1px #a3a3a3;
+ border-style: solid none;
display: flex;
flex-direction: row;
align-items: flex-end;
justify-content: center;
}
+.timeline-network-resizer-disabled > .timeline-flamechart-resizer {
+ display: none;
+}
+
.timeline-flamechart-resizer:after {
content: "...";
font-size: 14px;

Powered by Google App Engine
This is Rietveld 408576698