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

Side by Side Diff: chrome/browser/resources/performance_monitor/chart.css

Issue 10900035: Version 2 of CPM UI, with rearranged controls, multiple graphs, event rollovers, etc. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Presubmit fixes Created 8 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/performance_monitor/chart.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 #choose-block { 5 #choose-block {
6 -webkit-box-orient: horizontal; 6 -webkit-box-orient: vertical;
7 background: #eee; 7 background: rgb(238, 238, 255);
8 display: -webkit-box; 8 display: -webkit-box;
9 } 9 }
10 10
11 .spacer { 11 .spacer {
12 -webkit-box-flex: 1; 12 -webkit-box-flex: 1;
13 } 13 }
14 14
15 /* |charts| is the style for the div enclosing all charts, collectively. Its 15 /* |charts| is the style for the div enclosing all charts, collectively. Its
16 * dimensions must increase if the div encloses more than one chart. 16 * dimensions must increase if the div encloses more than one chart.
17 * |chart| is the style for any div that encloses a single chart -- a 17 * |chart| is the style for any div that encloses a single chart -- a
18 * child div of the larger #charts div. */ 18 * child div of the larger #charts div. */
19 #charts, 19 #charts,
20 .chart { 20 .chart {
21 height: 500px; 21 height: 500px;
22 width: 900px; 22 margin-left: 1.5em;
23 margin-top: 1.5em;
24 min-width: 800px;
25 width: 80%;
23 } 26 }
24 27
25 div.event-label { 28 .event-label {
26 background: white; 29 background: #eee;
27 border: 1px solid; 30 border: 1px solid;
28 font: 0.6em; 31 font-family: Arial, sans-serif;
32 font-size: 0.7em;
29 position: absolute; 33 position: absolute;
30 } 34 }
35
36 /* Three levels of label for lefthand control navigation.*/
37 .tab-label {
38 font: 1.4em bold;
39 margin-bottom: .5em;
40 margin-top: 1em;
41 }
42
43 .category-label {
44 font: 1.1em bold;
45 margin-top: .3em;
46 }
47
48 .detail-label {
49 font: 1em;
50 }
51
52 .detail-checkbox,
53 .radio {
54 margin-left: 18px;
55 }
56
57 .color-icon {
58 height: 1em;
59 min-height: 1em;
60 min-width: 1em;
61 opacity: 0.7;
62 visibility: hidden;
63 width: 1em;
64 }
65
66 .horizontal-box {
67 -webkit-box-orient: horizontal;
68 display: -webkit-box;
69 }
70
71 button {
72 -webkit-padding-end: 10px;
73 -webkit-padding-start: 10px;
74 background-color: buttonface;
75 background-image: -webkit-linear-gradient(#EDEDED, #EDEDED 38%, #DEDEDE);
76 border: 1px solid rgba(0, 0, 0, 0.25);
77 border-radius: 2px;
78 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08),
79 inset 0 1px 2px rgba(255, 255, 255, 0.75);
80 color: #444;
81 font: inherit;
82 height: 1.5em;
83 margin: 0 1px 0 0;
84 min-width: 4em;
85 text-shadow: #F0F0F0 0 1px 0;
86 }
87
88 button:active {
89 background-image: -webkit-linear-gradient(#e7e7e7, #e7e7e7 38%, #d7d7d7);
90 box-shadow: none;
91 text-shadow: none;
92 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/performance_monitor/chart.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698