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

Side by Side Diff: chrome/browser/resources/chromeos/power.css

Issue 149973002: [chromeos/about:power] Collect cpuidle and cpufreq stats (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright 2014 The Chromium Authors. All rights reserved. 2 * Copyright 2014 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 #main-layout { 7 #main-table {
8 border-collapse: collapse;
9 border-width: 0;
8 margin-left: auto; 10 margin-left: auto;
9 margin-right: auto; 11 margin-right: auto;
10 width: 600px; 12 width: 90%;
11 } 13 }
12 14
13 hr.section-boundary { 15 tr.section-row {
14 background: #000; 16 border-bottom-width: 2px;
15 border: 0; 17 border-color: #000;
16 height: 2px; 18 border-left-width: 0;
19 border-right-width: 0;
20 border-style: solid;
21 border-top-width: 2px;
17 width: 100%; 22 width: 100%;
18 } 23 }
19 24
20 div.plot-canvas-div { 25 td.title-cell {
26 border-width: 0;
27 text-align: right;
28 vertical-align: top;
29 width: 15%;
30 }
31
32 p.title-text {
33 font-weight: bold;
34 margin-right: 10px;
35 }
36
37 td.expand-button-cell {
38 border-bottom-width: 0;
39 border-color: #aaa;
40 border-left-width: 1px;
41 border-right-width: 1px;
42 border-style: solid;
43 border-top-width: 0;
44 text-align: center;
45 vertical-align: top;
46 width: 10%;
47 }
48
49 td.plots-cell {
50 border-width: 0;
51 padding: 10px;
52 text-align: left;
53 width: 75%;
54 }
55
56 div.section-div {
57 width: 100%;
58 }
59
60 div.plots-div {
61 width: 100%;
62 }
63
64 div.single-plot-div {
21 overflow: auto; 65 overflow: auto;
22 width: 100%; 66 width: 100%;
23 } 67 }
24 68
69 button.expand-button {
70 margin: 10px;
71 }
72
25 button.reload-button { 73 button.reload-button {
26 margin-bottom: 10px; 74 margin-bottom: 10px;
27 margin-top: 10px; 75 margin-top: 10px;
28 } 76 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698