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

Unified Diff: Source/devtools/front_end/timelinePanel.css

Issue 59863002: DevTools Timeline: remove hard-coded pixel-sized adjustments from overview's CSS (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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
« no previous file with comments | « Source/devtools/front_end/TimelineOverviewPane.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/timelinePanel.css
diff --git a/Source/devtools/front_end/timelinePanel.css b/Source/devtools/front_end/timelinePanel.css
index 36483ada145e00c3b8c479fdd943f52cfe4c4288..89c5d55a389a8ae04fb1ead63991c50a3a80c5b0 100644
--- a/Source/devtools/front_end/timelinePanel.css
+++ b/Source/devtools/front_end/timelinePanel.css
@@ -28,7 +28,7 @@
*/
#timeline-overview-panel {
- flex: 0 0 81px;
+ flex: 0 0 91px;
pfeldman 2013/11/05 14:19:30 keep it 81
position: relative;
border-bottom: 1px solid rgb(140, 140, 140);
}
@@ -64,12 +64,9 @@
pointer-events: auto;
}
-.timeline-frame-overview .overview-grid-window {
- height: 80px;
-}
-
+.timeline-frame-overview .overview-grid-window,
.timeline-frame-overview .overview-grid-dividers-background {
- height: 80px;
+ height: 100%;
}
#timeline-overview-grid #resources-graphs {
@@ -364,22 +361,26 @@
left: 9px;
}
+#timeline-overview-sidebar .sidebar-tree {
+ height: 100%;
+}
+
#timeline-overview-sidebar .sidebar-tree-item {
- line-height: 26px;
- height: 24px;
+ height: auto;
+ flex: auto;
margin-top: 0;
border-top: none;
+ display: flex;
+ align-items: center;
}
#timeline-overview-sidebar .sidebar-tree-item .titles.no-subtitle {
- top: 5px;
+ top: initial;
}
#timeline-overview-sidebar .icon {
height: 24px;
- margin-top: -1px;
- margin-left: 0;
- margin-right: 0;
+ margin: 0;
-webkit-mask-image: url(Images/statusbarButtonGlyphs.png);
-webkit-mask-size: 320px 120px;
background-color: black;
« no previous file with comments | « Source/devtools/front_end/TimelineOverviewPane.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698