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

Unified Diff: chrome/browser/resources/performance_monitor/chart.css

Issue 10820031: Modifications to performance monitor UI to address real webui. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Revised build config to mollify Android tryserver Created 8 years, 4 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 | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/performance_monitor/chart.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/performance_monitor/chart.css
diff --git a/chrome/browser/resources/performance_monitor/chart.css b/chrome/browser/resources/performance_monitor/chart.css
index a7aa65679b1ad364155d0b989f5eb51bcf12aa13..db88cf5cc2a5fb816f9574b75e968827bcaf8872 100644
--- a/chrome/browser/resources/performance_monitor/chart.css
+++ b/chrome/browser/resources/performance_monitor/chart.css
@@ -2,41 +2,29 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
-div#chooseMetrics {
- float: left;
+#choose-block {
+ -webkit-box-orient: horizontal;
+ background: #eee;
+ display: -webkit-box;
}
-div#chooseEvents {
- float: left;
- margin-left: 20px;
+.spacer {
+ -webkit-box-flex: 1;
}
-div#chooseTimeRange {
- float: right;
-}
-
-div#chooseBlock {
- background: #eee;
- overflow: hidden;
-}
-
-div#charts {
- height: 500px;
- width: 900px;
-}
-
-div.chart {
- height: 500px;
- width: 900px;
+/* |charts| is the style for the div enclosing all charts, collectively. Its
+ * dimensions must increase if the div encloses more than one chart.
+ * |chart| is the style for any div that encloses a single chart -- a
+ * child div of the larger #charts div. */
+#charts,
+.chart {
+ height: 500px;
+ width: 900px;
}
div.event-label {
- background: #fff;
- border: 1px solid;
- font: 0.6em;
- position: absolute;
-}
-
-.hidden {
- visibility: hidden;
+ background: white;
+ border: 1px solid;
+ font: 0.6em;
+ position: absolute;
}
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/performance_monitor/chart.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698