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

Unified Diff: Source/devtools/front_end/profiler/d3js_trace/sequences.css

Issue 887673002: DevTools: CPU profiler sunburst view (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 11 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: Source/devtools/front_end/profiler/d3js_trace/sequences.css
diff --git a/Source/devtools/front_end/profiler/d3js_trace/sequences.css b/Source/devtools/front_end/profiler/d3js_trace/sequences.css
new file mode 100644
index 0000000000000000000000000000000000000000..20fc364dedda252655273a793349bd2f8eb7775d
--- /dev/null
+++ b/Source/devtools/front_end/profiler/d3js_trace/sequences.css
@@ -0,0 +1,57 @@
+body {
+ font-family: 'Open Sans', sans-serif;
+ font-size: 12px;
+ font-weight: 400;
+ background-color: #fff;
+ width: 960px;
+ height: 700px;
+ margin-top: 10px;
+}
+
+#main {
+ float: left;
+ width: 750px;
+}
+
+#sidebar {
+ float: right;
+ width: 100px;
+}
+
+#sequence {
+ width: 600px;
+ height: 70px;
+}
+
+#legend {
+ padding: 10px 0 0 3px;
+}
+
+#sequence text, #legend text {
+ font-weight: 600;
+ fill: #fff;
+}
+
+#chart {
+ position: relative;
+}
+
+#chart path {
+ stroke: #fff;
+}
+
+#explanation {
+ position: absolute;
+/* top: 320px;
+ left: 415px; */
+ top: 370px;
+ left: 730px;
+ width: 140px;
+ text-align: center;
+ color: #666;
+ z-index: -1;
+}
+
+#percentage {
+ font-size: 2.5em;
+}
« no previous file with comments | « Source/devtools/front_end/profiler/d3js_trace/index.html ('k') | Source/devtools/front_end/profiler/d3js_trace/sequences.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698