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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/elements/platformFontsWidget.css

Issue 1809773002: DevTools: split platformFontsWidget.css out of elementsPanel.css (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 4 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
OLDNEW
(Empty)
1 /**
2 * Copyright 2016 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 :host {
8 -webkit-user-select: text;
9 }
10
11 .font-name {
12 font-weight: bold;
13 }
14
15 .font-usage {
16 color: #888;
17 padding-left: 3px;
18 }
19
20 .title {
21 padding: 0 5px;
22 border-top: 1px solid;
23 border-bottom: 1px solid;
24 border-color: #ddd;
25 white-space: nowrap;
26 text-overflow: ellipsis;
27 overflow: hidden;
28 height: 24px;
29 background-color: #f1f1f1;
30 display: flex;
31 align-items: center;
32 }
33
34 .stats-section {
35 margin: 5px 0;
36 }
37
38 .font-stats-item {
39 padding-left: 1em;
40 }
41
42 .font-stats-item .font-delimeter {
43 margin: 0 1ex 0 1ex;
44 }
45
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698