Title: [198751] trunk/Source/WebInspectorUI
Revision
198751
Author
nvasil...@apple.com
Date
2016-03-28 11:01:41 -0700 (Mon, 28 Mar 2016)

Log Message

Web Inspector: Use font-variant-numeric: tabular-nums instead of -apple-system-monospaced-numbers
https://bugs.webkit.org/show_bug.cgi?id=155826
<rdar://problem/25330631>

Reviewed by Myles C. Maxfield.

* UserInterface/Views/CodeMirrorOverrides.css:
(.CodeMirror .CodeMirror-linenumber):
* UserInterface/Views/DataGrid.css:
(.data-grid td):
* UserInterface/Views/DefaultDashboardView.css:
(.toolbar .dashboard.default > .item):
* UserInterface/Views/ObjectTreeArrayIndexTreeElement.css:
(.object-tree-array-index .index-name):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (198750 => 198751)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-03-28 17:49:17 UTC (rev 198750)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-03-28 18:01:41 UTC (rev 198751)
@@ -1,5 +1,22 @@
 2016-03-28  Nikita Vasilyev  <nvasil...@apple.com>
 
+        Web Inspector: Use font-variant-numeric: tabular-nums instead of -apple-system-monospaced-numbers
+        https://bugs.webkit.org/show_bug.cgi?id=155826
+        <rdar://problem/25330631>
+
+        Reviewed by Myles C. Maxfield.
+
+        * UserInterface/Views/CodeMirrorOverrides.css:
+        (.CodeMirror .CodeMirror-linenumber):
+        * UserInterface/Views/DataGrid.css:
+        (.data-grid td):
+        * UserInterface/Views/DefaultDashboardView.css:
+        (.toolbar .dashboard.default > .item):
+        * UserInterface/Views/ObjectTreeArrayIndexTreeElement.css:
+        (.object-tree-array-index .index-name):
+
+2016-03-28  Nikita Vasilyev  <nvasil...@apple.com>
+
         Web Inspector: Add font-variant-numeric to CSS autocompletions
         https://bugs.webkit.org/show_bug.cgi?id=155941
         <rdar://problem/25381735>

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/CodeMirrorOverrides.css (198750 => 198751)


--- trunk/Source/WebInspectorUI/UserInterface/Views/CodeMirrorOverrides.css	2016-03-28 17:49:17 UTC (rev 198750)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/CodeMirrorOverrides.css	2016-03-28 18:01:41 UTC (rev 198751)
@@ -76,7 +76,8 @@
 
     color: hsl(0, 0%, 57%);
 
-    font: 8px/13px -apple-system-monospaced-numbers, Menlo, Monaco, monospace;
+    font: 8px/13px -apple-system, Menlo, Monaco, monospace;
+    font-variant-numeric: tabular-nums;
     text-align: right;
 }
 

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DataGrid.css (198750 => 198751)


--- trunk/Source/WebInspectorUI/UserInterface/Views/DataGrid.css	2016-03-28 17:49:17 UTC (rev 198750)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DataGrid.css	2016-03-28 18:01:41 UTC (rev 198751)
@@ -140,7 +140,8 @@
     padding: 2px 6px;
     white-space: nowrap;
     overflow: hidden;
-    font-family: -apple-system-monospaced-numbers, sans-serif;
+    font-family: -apple-system, sans-serif;
+    font-variant-numeric: tabular-nums;
 }
 
 .data-grid:matches(:focus, .force-focus) tr.selected td:not(:last-child) {

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DefaultDashboardView.css (198750 => 198751)


--- trunk/Source/WebInspectorUI/UserInterface/Views/DefaultDashboardView.css	2016-03-28 17:49:17 UTC (rev 198750)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DefaultDashboardView.css	2016-03-28 18:01:41 UTC (rev 198751)
@@ -52,7 +52,8 @@
     border-radius: 4px;
     border: 1px solid transparent;
 
-    font-family: -apple-system-monospaced-numbers, sans-serif;
+    font-family: -apple-system, sans-serif;
+    font-variant-numeric: tabular-nums;
 }
 
 .toolbar .dashboard.default > :matches(.time, .resourcesSize) {

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreeArrayIndexTreeElement.css (198750 => 198751)


--- trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreeArrayIndexTreeElement.css	2016-03-28 17:49:17 UTC (rev 198750)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreeArrayIndexTreeElement.css	2016-03-28 18:01:41 UTC (rev 198751)
@@ -35,8 +35,9 @@
 }
 
 .object-tree-array-index .index-name {
-    font-family: -apple-system-monospaced-numbers, sans-serif;
+    font-family: -apple-system, sans-serif;
     font-size: 11px;
+    font-variant-numeric: tabular-nums;
     vertical-align: top;
     color: var(--console-secondary-text-color);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to