Title: [193047] branches/safari-601-branch/Source/WebInspectorUI
Revision
193047
Author
[email protected]
Date
2015-12-03 10:35:05 -0800 (Thu, 03 Dec 2015)

Log Message

Merge r187715. rdar://problem/23221163

Modified Paths

Diff

Modified: branches/safari-601-branch/Source/WebInspectorUI/ChangeLog (193046 => 193047)


--- branches/safari-601-branch/Source/WebInspectorUI/ChangeLog	2015-12-03 18:35:00 UTC (rev 193046)
+++ branches/safari-601-branch/Source/WebInspectorUI/ChangeLog	2015-12-03 18:35:05 UTC (rev 193047)
@@ -1,5 +1,42 @@
 2015-12-01  Timothy Hatcher  <[email protected]>
 
+        Merge r187715. rdar://problem/23221163
+
+    2015-08-01  Nikita Vasilyev  <[email protected]>
+
+            Web Inspector: Replace "unknown-mac" CSS class with "el-capitan"
+            https://bugs.webkit.org/show_bug.cgi?id=147524
+
+            Reviewed by Timothy Hatcher.
+
+            * UserInterface/Base/Platform.js:
+            No need to repeat WebInspector.Platform.version.release for every possible case.
+
+            * UserInterface/Views/Toolbar.css:
+            (body:not(.el-capitan) .toolbar .dashboard-container):
+            (body:not(.el-capitan) .toolbar .search-bar > input[type="search"]):
+            (body:not(.el-capitan) .toolbar .search-bar > input[type="search"]:focus):
+            (body:not(.el-capitan) .toolbar .item.button:active):
+            (body.window-inactive:not(.el-capitan) .toolbar .dashboard-container):
+            (body.el-capitan .toolbar .dashboard-container):
+            (body.el-capitan .toolbar .search-bar > input[type="search"]):
+            (body.el-capitan .toolbar .search-bar > input[type="search"]:focus):
+            (@media (-webkit-min-device-pixel-ratio: 2)):
+            (body.el-capitan .toolbar .item.button:active):
+            (body.el-capitan.window-inactive .toolbar .dashboard-container):
+            (body:not(.unknown-mac) .toolbar .dashboard-container): Deleted.
+            (body:not(.unknown-mac) .toolbar .search-bar > input[type="search"]): Deleted.
+            (body:not(.unknown-mac) .toolbar .search-bar > input[type="search"]:focus): Deleted.
+            (body:not(.unknown-mac) .toolbar .item.button:active): Deleted.
+            (body.window-inactive:not(.unknown-mac) .toolbar .dashboard-container): Deleted.
+            (body.unknown-mac .toolbar .dashboard-container): Deleted.
+            (body.unknown-mac .toolbar .search-bar > input[type="search"]): Deleted.
+            (body.unknown-mac .toolbar .search-bar > input[type="search"]:focus): Deleted.
+            (body.unknown-mac .toolbar .item.button:active): Deleted.
+            (body.unknown-mac.window-inactive .toolbar .dashboard-container): Deleted.
+
+2015-12-01  Timothy Hatcher  <[email protected]>
+
         Merge r187714. rdar://problem/23221163
 
     2015-07-31  Devin Rousso  <[email protected]>

Modified: branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/Toolbar.css (193046 => 193047)


--- branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/Toolbar.css	2015-12-03 18:35:00 UTC (rev 193046)
+++ branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/Toolbar.css	2015-12-03 18:35:05 UTC (rev 193047)
@@ -117,9 +117,9 @@
     margin-left: 4px;
 }
 
-body.legacy-mac .toolbar .item.button,
-body.legacy-mac .toolbar .search-bar > input[type="search"],
-body.legacy-mac .toolbar .dashboard-container {
+body:not(.el-capitan) .toolbar .item.button,
+body:not(.el-capitan) .toolbar .search-bar > input[type="search"],
+body:not(.el-capitan) .toolbar .dashboard-container {
     background-color: hsl(0, 0%, 99%);
     border: 1px solid transparent;
     border-top-color: hsl(0, 0%, 100%);
@@ -127,31 +127,31 @@
     border-radius: 4px;
 }
 
-body.legacy-mac .toolbar .search-bar > input[type="search"] {
+body:not(.el-capitan) .toolbar .search-bar > input[type="search"] {
     box-shadow: 0 0 0 7px hsla(211, 96%, 48%, 0);
     transition: box-shadow .25s cubic-bezier(0.165, 0.840, 0.440, 1) /* easeOutQuart */;
 }
 
-body.legacy-mac .toolbar .search-bar > input[type="search"]:focus {
+body:not(.el-capitan) .toolbar .search-bar > input[type="search"]:focus {
     box-shadow: hsla(0, 0%, 0%, 0.15) 0 1px 0, 0 0 0 3px hsla(211, 96%, 48%, 0.4);
 }
 
-body.legacy-mac .toolbar .item.button:active {
+body:not(.el-capitan) .toolbar .item.button:active {
     border-top-color: hsl(0, 0%, 94%);
     background-color: hsl(0, 0%, 89%);
 }
 
-body.window-inactive.legacy-mac .toolbar .item.button,
-body.window-inactive.legacy-mac .toolbar .search-bar > input[type="search"],
-body.window-inactive.legacy-mac .toolbar .dashboard-container {
+body.window-inactive:not(.el-capitan) .toolbar .item.button,
+body.window-inactive:not(.el-capitan) .toolbar .search-bar > input[type="search"],
+body.window-inactive:not(.el-capitan) .toolbar .dashboard-container {
     border: 1px solid hsl(0, 0%, 86%);
     background-color: hsl(0, 0%, 96%);
     box-shadow: none;
 }
 
-body.latest-mac .toolbar .item.button,
-body.latest-mac .toolbar .search-bar > input[type="search"],
-body.latest-mac .toolbar .dashboard-container {
+body.el-capitan .toolbar .item.button,
+body.el-capitan .toolbar .search-bar > input[type="search"],
+body.el-capitan .toolbar .dashboard-container {
     background-image: linear-gradient(hsl(0, 0%, 99%), hsl(0, 0%, 94%));
     box-shadow: hsla(0, 0%, 0%, 0.3) 0 1px 1px -1px;
 
@@ -161,33 +161,33 @@
     border-bottom-color: hsl(0, 0%, 76%);
 }
 
-body.latest-mac .toolbar .search-bar > input[type="search"] {
+body.el-capitan .toolbar .search-bar > input[type="search"] {
     box-shadow: hsla(0, 0%, 0%, 0.3) 0 1px 1px -1px, 0 0 0 7px hsla(211, 96%, 48%, 0);
     transition: box-shadow .25s cubic-bezier(0.165, 0.840, 0.440, 1) /* easeOutQuart */;
 }
 
-body.latest-mac .toolbar .search-bar > input[type="search"]:focus {
+body.el-capitan .toolbar .search-bar > input[type="search"]:focus {
     box-shadow: hsla(0, 0%, 0%, 0.15) 0 1px 0, 0 0 0 3px hsla(211, 96%, 48%, 0.4);
 }
 
 @media (-webkit-min-device-pixel-ratio: 2) {
-    body.latest-mac .toolbar .item.button,
-    body.latest-mac .toolbar .search-bar > input[type="search"],
-    body.latest-mac .toolbar .dashboard-container {
+    body.el-capitan .toolbar .item.button,
+    body.el-capitan .toolbar .search-bar > input[type="search"],
+    body.el-capitan .toolbar .dashboard-container {
         border: 0.5px solid hsl(0, 0%, 78%);
         border-top-color: hsl(0, 0%, 80%);
         border-bottom-color: hsl(0, 0%, 65%);
     }
 }
 
-body.latest-mac .toolbar .item.button:active {
+body.el-capitan .toolbar .item.button:active {
     background-image: linear-gradient(hsl(0, 0%, 89%), hsl(0, 0%, 86%));
     box-shadow: hsla(0, 0%, 0%, 0.3) 0 1px 1px -1px, inset 0 1px 1px -1px white;
 }
 
-body.latest-mac.window-inactive .toolbar .item.button,
-body.latest-mac.window-inactive .toolbar .search-bar > input[type="search"],
-body.latest-mac.window-inactive .toolbar .dashboard-container {
+body.el-capitan.window-inactive .toolbar .item.button,
+body.el-capitan.window-inactive .toolbar .search-bar > input[type="search"],
+body.el-capitan.window-inactive .toolbar .dashboard-container {
     opacity: 0.65;
     border-color: hsla(0, 0%, 0%, 0.15);
     background-color: transparent;
@@ -195,9 +195,9 @@
 }
 
 @media (-webkit-min-device-pixel-ratio: 2) {
-    body.latest-mac.window-inactive .toolbar .item.button,
-    body.latest-mac.window-inactive .toolbar .search-bar > input[type="search"],
-    body.latest-mac.window-inactive .toolbar .dashboard-container {
+    body.el-capitan.window-inactive .toolbar .item.button,
+    body.el-capitan.window-inactive .toolbar .search-bar > input[type="search"],
+    body.el-capitan.window-inactive .toolbar .dashboard-container {
         box-shadow: inset 0 0 1px 0 hsla(0, 0%, 0%, 0.1);
     }
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to