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

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

Issue 183763036: TimelineFlameChart: selectRecord implementation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebaselined Created 6 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
« no previous file with comments | « Source/devtools/front_end/TimelinePanel.js ('k') | Source/devtools/front_end/timelinePanel.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/flameChart.css
diff --git a/Source/devtools/front_end/flameChart.css b/Source/devtools/front_end/flameChart.css
index ec6204bc68675086536e4249d34d3f6db2fca320..81bfd3d56294d9b0f8091fe9efcfef9c05e203ba 100644
--- a/Source/devtools/front_end/flameChart.css
+++ b/Source/devtools/front_end/flameChart.css
@@ -14,6 +14,10 @@
pointer-events: auto;
}
+.flame-chart-main-pane {
+ overflow: hidden;
+}
+
.flame-chart-overview-pane {
flex: 0 0 80px !important;
}
@@ -47,4 +51,13 @@
position: absolute;
opacity: 0.2;
pointer-events: none;
-}
+}
+
+.flame-chart-selected-element {
+ position: absolute;
+ pointer-events: none;
+ border-color: rgb(56, 121, 217);
+ border-width: 2px;
+ border-style: solid;
+ background-color: rgba(56, 121, 217, 0.2);
+}
« no previous file with comments | « Source/devtools/front_end/TimelinePanel.js ('k') | Source/devtools/front_end/timelinePanel.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698