OLD | NEW |
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 } |
OLD | NEW |