Chromium Code Reviews| 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; |
| } |