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

Unified Diff: tools/deep_memory_profiler/visualizer/static/index.css

Issue 24534002: Add share button to generate public url for dmprof visualizer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix review problems Created 7 years, 3 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: tools/deep_memory_profiler/visualizer/static/index.css
diff --git a/tools/deep_memory_profiler/visualizer/static/index.css b/tools/deep_memory_profiler/visualizer/static/index.css
index e807d31798d49792ac4e0c690909e1c0335acd39..ad35df613fc02fa7c1bb7e14723e78b2056740eb 100644
--- a/tools/deep_memory_profiler/visualizer/static/index.css
+++ b/tools/deep_memory_profiler/visualizer/static/index.css
@@ -2,25 +2,56 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
+h1 {
+ text-align: center;
+}
+
+.error-message {
+ color: red;
+ font-size: large;
+}
+
+.btn,
+.url {
+ color: #333333;
+ background-color: #ffffff;
+ padding: 6px 12px;
+ font-size: 14px;
+ border: 1px solid #cccccc;
+ border-radius: 4px;
+}
+
+.btn:hover,
+.btn:focus {
+ background-color: #ebebeb;
+}
+
+#view-div {
+ margin: 35px auto;
+ width: 70%;
+}
+
#graph-div {
width: 1024px;
height: 600px;
- margin-top: 30px;
- margin-left: 50px;
float: left;
}
#info-div {
width: 240px;
height: 600px;
- margin-top: 35px;
- margin-left: 50px;
float: left;
+ margin-left: 50px;
box-shadow: 0 4px 16px rgba(0,0,0,0.2);
outline: 1px solid rgba(0,0,0,0.2);
overflow: auto;
}
+ul.jqtree-tree .jqtree-title {
+ color: #333333;
+ font-size: small;
+}
+
#category-menu {
padding-left: 15px;
}
« no previous file with comments | « tools/deep_memory_profiler/visualizer/services.py ('k') | tools/deep_memory_profiler/visualizer/static/profiler.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698