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

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

Issue 197813006: Reland "[chromeos/about:power] Collect cpuidle and cpufreq stats" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address nit Created 6 years, 9 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 table-layout: fixed;
13 width: 1000px;
11 } 14 }
12 15
13 hr.section-boundary { 16 tr.section-row {
14 background: #000; 17 border-bottom-width: 2px;
15 border: 0; 18 border-color: #000;
16 height: 2px; 19 border-left-width: 0;
20 border-right-width: 0;
21 border-style: solid;
22 border-top-width: 2px;
17 width: 100%; 23 width: 100%;
18 } 24 }
19 25
20 div.plot-canvas-div { 26 td.title-cell {
21 overflow: auto; 27 border-width: 0;
28 text-align: right;
29 vertical-align: top;
30 width: 15%;
31 }
32
33 p.title-text {
34 font-weight: bold;
35 margin-right: 10px;
36 }
37
38 td.show-button-cell {
39 border-bottom-width: 0;
40 border-color: #aaa;
41 border-left-width: 1px;
42 border-right-width: 1px;
43 border-style: solid;
44 border-top-width: 0;
45 text-align: center;
46 vertical-align: top;
47 width: 10%;
48 }
49
50 td.plots-cell {
51 border-width: 0;
52 padding: 10px;
53 text-align: left;
54 width: 75%;
55 }
56
57 div.section-div {
22 width: 100%; 58 width: 100%;
23 } 59 }
24 60
61 div.plots-div {
62 width: 100%;
63 }
64
65 button.show-button {
66 margin: 10px;
67 }
68
25 button.reload-button { 69 button.reload-button {
26 margin-bottom: 10px; 70 margin-bottom: 10px;
27 margin-top: 10px; 71 margin-top: 10px;
28 } 72 }
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/power/power_data_collector_unittest.cc ('k') | chrome/browser/resources/chromeos/power.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698