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

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: Final touchups for style. Created 8 years, 5 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: 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..0acb1e0abd4151dcc53bed8774a7c397d5398e5f 100644
--- a/chrome/browser/resources/performance_monitor/chart.css
+++ b/chrome/browser/resources/performance_monitor/chart.css
@@ -3,40 +3,40 @@
* found in the LICENSE file. */
div#chooseMetrics {
Evan Stade 2012/07/28 01:01:16 you don't need any other qualifier than the id
clintstaley 2012/07/31 02:34:32 CSS newbie mistakes: I thought perhaps greater spe
- float: left;
+ float: left;
Evan Stade 2012/07/31 22:57:02 don't use float for layout. It's mostly just usefu
clintstaley 2012/08/01 00:25:45 I'd prefer not locking things down in absolute pix
Evan Stade 2012/08/01 02:06:08 I don't actually know what the layout of this page
clintstaley 2012/08/01 21:37:40 Flexbox worked fine, much better than that float t
}
div#chooseEvents {
- float: left;
- margin-left: 20px;
+ float: left;
+ margin-left: 20px;
}
div#chooseTimeRange {
- float: right;
+ float: right;
}
div#chooseBlock {
- background: #eee;
- overflow: hidden;
+ background: #eee;
+ overflow: hidden;
}
div#charts {
- height: 500px;
- width: 900px;
+ height: 500px;
+ width: 900px;
}
div.chart {
Evan Stade 2012/07/28 01:01:16 combine with the above also I doubt you need the
clintstaley 2012/07/31 02:34:32 Removed the tag name, but the #charts style applie
Evan Stade 2012/07/31 22:57:02 in this case are you sure you need the height/widt
clintstaley 2012/08/01 00:25:45 Well, I am still a little mystified on how to get
- height: 500px;
- width: 900px;
+ height: 500px;
+ width: 900px;
}
div.event-label {
- background: #fff;
- border: 1px solid;
- font: 0.6em;
- position: absolute;
+ background: #fff;
Evan Stade 2012/07/28 01:01:16 white
clintstaley 2012/07/31 02:34:32 Done.
+ border: 1px solid;
+ font: 0.6em;
+ position: absolute;
}
.hidden {
Evan Stade 2012/07/28 01:01:16 what is the point of this rule? normally .hidden m
clintstaley 2012/07/31 02:34:32 Ditto on CSS newbie comment. Fixed to display: no
Evan Stade 2012/07/31 22:57:02 ah. You should be using the hidden attribute, not
clintstaley 2012/08/01 00:25:45 Done.
- visibility: hidden;
+ visibility: hidden;
}

Powered by Google App Engine
This is Rietveld 408576698