OLD | NEW |
---|---|
(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 .platform-fonts { | |
8 -webkit-user-select: text; | |
9 } | |
10 | |
11 .platform-fonts .font-name { | |
12 font-weight: bold; | |
13 } | |
14 | |
15 .platform-fonts .font-usage { | |
16 color: #888; | |
17 padding-left: 3px; | |
18 } | |
19 | |
20 .platform-fonts .sidebar-separator { | |
dgozman
2016/03/16 18:59:07
Remove all .platform-fonts prefixes except maybe t
lushnikov
2016/03/16 20:18:19
Removed all of them. Merged sidebar-separator styl
| |
21 height: 24px; | |
22 background-color: #f1f1f1; | |
23 border-color: #ddd; | |
24 display: flex; | |
25 align-items: center; | |
26 } | |
27 | |
28 .platform-fonts .stats-section { | |
29 margin: 5px 0; | |
30 } | |
31 | |
32 .platform-fonts .font-stats-item { | |
33 padding-left: 1em; | |
34 } | |
35 | |
36 .platform-fonts .font-stats-item .font-delimeter { | |
37 margin: 0 1ex 0 1ex; | |
38 } | |
39 | |
OLD | NEW |