cros: Remove default pinned apps trial.
[chromium-blink-merge.git] / chrome / browser / resources / performance_monitor / chart.css
blob1794bb5c03abfa0380c52b14af1bffd24d2706bf
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
3 * found in the LICENSE file. */
5 /* "Performance" title */
6 h1 {
7 -webkit-margin-after: 1em;
8 -webkit-margin-before: 21px;
9 -webkit-margin-start: 23px;
10 -webkit-user-select: none;
11 color: rgb(92, 97, 102);
12 display: block;
13 font-size: 1.5em;
14 font-weight: normal;
15 line-height: 1;
18 /* Settings panel category headings */
19 h2 {
20 -webkit-user-select: none;
21 border: 0;
22 color: inherit;
23 cursor: pointer;
24 font: inherit;
25 font-size: 1.2em;
26 font-weight: normal;
27 line-height: 1;
28 margin: 0;
31 /* Settings panel subcategory headings */
32 h3 {
33 -webkit-margin-after: 3px;
34 -webkit-user-select: none;
35 color: rgb(48, 57, 66);
36 font-size: 1em;
37 font-weight: normal;
38 line-height: 1;
41 /* Axis labels */
42 h4 {
43 -webkit-margin-after: 0;
44 -webkit-margin-before: 0;
45 color: rgb(92, 97, 102);
46 font-size: 12px;
47 font-weight: bold;
48 line-height: 12px;
51 .accordion {
52 left: 0;
53 position: fixed;
54 top: 0;
55 width: 200px;
58 details {
59 margin-bottom: 20px;
62 summary {
63 -webkit-margin-start: 23px;
64 -webkit-user-select: none;
65 color: #777;
66 cursor: default;
69 summary:focus {
70 outline: 0;
73 summary::after {
74 background: white;
75 content: '';
76 height: 32px;
77 left: 0;
78 margin-top: -23px;
79 position: absolute;
80 width: 6px;
83 summary:hover {
84 color: rgb(70, 78, 90);
87 details[open] summary::after {
88 background: #555;
91 details[open] summary {
92 color: #333;
95 details summary::-webkit-details-marker {
96 display: none;
99 .accordion-contents {
100 -webkit-margin-start: 35px;
101 color: #555;
104 .spacer {
105 -webkit-box-flex: 1;
108 input[type='radio']:checked+span {
109 color: #222;
112 input[type='checkbox']:checked+span {
113 color: #222;
116 .input-label:hover {
117 color: #222;
120 #warnings-box {
121 -webkit-margin-after: 15px;
122 -webkit-margin-before: 21px;
123 display: none;
124 text-align: center;
127 #warnings-text {
128 background-color: pink;
129 box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.15);
130 display: inline-block;
131 max-width: 1000px;
132 padding: 6px;
135 .warning {
136 display: none;
139 #time-shift-category {
140 display: inline-block;
143 #charts {
144 -webkit-margin-start: 200px;
145 min-width: 800px;
146 width: 80%;
149 .chart {
150 position: relative;
153 .grid {
154 -webkit-margin-after: 15px;
155 height: 500px;
156 position: relative;
159 /* This is necessary since rotation does not work well with text elements, which
160 * have an adjustable size. Calculations for each section are listed. */
161 .yaxis-label-container {
162 -webkit-transform: rotate(-90deg);
163 left: -238px; /* .grid height / 2 - h4 line-height */
164 position: absolute;
165 text-align: center;
166 top: 244px; /* .grid height / 2 - .yaxis-label line-height / 2 */
167 width: 500px; /* .grid height */
170 .event-label {
171 background: #eee;
172 border: 1px solid;
173 font-family: Arial, sans-serif;
174 font-size: 0.7em;
175 position: absolute;
178 .horizontal-box {
179 -webkit-box-orient: horizontal;
180 display: -webkit-box;
183 h2#flag-warning {
184 display: none;
187 button {
188 -webkit-padding-end: 10px;
189 -webkit-padding-start: 10px;
190 background-color: buttonface;
191 background-image: -webkit-linear-gradient(#EDEDED, #EDEDED 38%, #DEDEDE);
192 border: 1px solid rgba(0, 0, 0, 0.25);
193 border-radius: 2px;
194 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08),
195 inset 0 1px 2px rgba(255, 255, 255, 0.75);
196 color: #444;
197 font: inherit;
198 height: 1.5em;
199 margin: 0 1px 0 0;
200 min-width: 4em;
201 text-shadow: #F0F0F0 0 1px 0;
204 button:active {
205 background-image: -webkit-linear-gradient(#e7e7e7, #e7e7e7 38%, #d7d7d7);
206 box-shadow: none;
207 text-shadow: none;