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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/perf_ui/pieChart.css

Issue 2623743002: DevTools: extract modules (non-extensions) (Closed)
Patch Set: rebaseline Created 3 years, 11 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. 2 * Copyright (c) 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 .root { 7 .root {
8 position: relative; 8 position: relative;
9 width: 100%; 9 width: 100%;
10 height: 100%; 10 height: 100%;
11 } 11 }
12 12
13 .pie-chart-foreground { 13 .pie-chart-foreground {
14 position: absolute; 14 position: absolute;
15 width: 100%; 15 width: 100%;
16 height: 100%; 16 height: 100%;
17 z-index: 10; 17 z-index: 10;
18 top: 0; 18 top: 0;
19 display: flex; 19 display: flex;
20 } 20 }
21 21
22 .pie-chart-total { 22 .pie-chart-total {
23 margin: auto; 23 margin: auto;
24 padding: 2px 5px; 24 padding: 2px 5px;
25 background-color: rgba(255, 255, 255, 0.6); 25 background-color: rgba(255, 255, 255, 0.6);
26 } 26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698