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

Unified Diff: tools/profview/profview.css

Issue 2696903002: [profiler] Graphical front-end for tick processor. (Closed)
Patch Set: Fix test 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
« no previous file with comments | « tools/profview/profile-utils.js ('k') | tools/profview/profview.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/profview/profview.css
diff --git a/tools/profview/profview.css b/tools/profview/profview.css
new file mode 100644
index 0000000000000000000000000000000000000000..80bc3fdbcaaf9aee04340c8f314b89ba684508f2
--- /dev/null
+++ b/tools/profview/profview.css
@@ -0,0 +1,53 @@
+table.calltree {
+ width : 100%;
+}
+
+.numeric {
+ width : 12ex;
+}
+
+body {
+ font-family: 'Roboto', sans-serif;
+}
+
+div.code-type-chip {
+ display : inline-block;
+ padding : 0.0em;
+}
+
+span.code-type-chip {
+ border-radius : 1em;
+ display : inline-block;
+ padding : 0.1em;
+ background-color : #4040c0;
+ color: #ffffff;
+ font-size : small;
+ box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
+}
+
+span.code-type-chip-space {
+ width : 0.5ex;
+ display : inline-block;
+}
+
+div.mode-button {
+ padding: 1em 3em;
+ display: inline-block;
+ background-color: #6070ff;
+ color : #ffffff;
+ margin: 0 0.2em 2em 0;
+ box-shadow: 3px 3px 2px #d0d0ff;
+}
+
+div.mode-button:hover {
+ background-color: #4858ff;
+}
+
+div.active-mode-button {
+ background-color: #0000ff;
+ box-shadow: 3px 3px 2px #a0a0ff;
+}
+
+div.active-mode-button:hover {
+ background-color: #0000ff;
+}
« no previous file with comments | « tools/profview/profile-utils.js ('k') | tools/profview/profview.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698