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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui_lazy/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
(Empty)
1 /*
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
4 * found in the LICENSE file.
5 */
6
7 .root {
8 position: relative;
9 width: 100%;
10 height: 100%;
11 }
12
13 .pie-chart-foreground {
14 position: absolute;
15 width: 100%;
16 height: 100%;
17 z-index: 10;
18 top: 0;
19 display: flex;
20 }
21
22 .pie-chart-total {
23 margin: auto;
24 padding: 2px 5px;
25 background-color: rgba(255, 255, 255, 0.6);
26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698