Index: third_party/WebKit/Source/devtools/front_end/elements/platformFontsWidget.css |
diff --git a/third_party/WebKit/Source/devtools/front_end/elements/platformFontsWidget.css b/third_party/WebKit/Source/devtools/front_end/elements/platformFontsWidget.css |
new file mode 100644 |
index 0000000000000000000000000000000000000000..765ef3e0c73187ccf3d11bda0d39fda00c4e6077 |
--- /dev/null |
+++ b/third_party/WebKit/Source/devtools/front_end/elements/platformFontsWidget.css |
@@ -0,0 +1,39 @@ |
+/** |
+ * Copyright 2016 The Chromium Authors. All rights reserved. |
+ * Use of this source code is governed by a BSD-style license that can be |
+ * found in the LICENSE file. |
+ */ |
+ |
+.platform-fonts { |
+ -webkit-user-select: text; |
+} |
+ |
+.platform-fonts .font-name { |
+ font-weight: bold; |
+} |
+ |
+.platform-fonts .font-usage { |
+ color: #888; |
+ padding-left: 3px; |
+} |
+ |
+.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
|
+ height: 24px; |
+ background-color: #f1f1f1; |
+ border-color: #ddd; |
+ display: flex; |
+ align-items: center; |
+} |
+ |
+.platform-fonts .stats-section { |
+ margin: 5px 0; |
+} |
+ |
+.platform-fonts .font-stats-item { |
+ padding-left: 1em; |
+} |
+ |
+.platform-fonts .font-stats-item .font-delimeter { |
+ margin: 0 1ex 0 1ex; |
+} |
+ |