Title: [213188] trunk/Source/WebInspectorUI
Revision
213188
Author
commit-qu...@webkit.org
Date
2017-02-28 15:34:23 -0800 (Tue, 28 Feb 2017)

Log Message

Web Inspector: It is possible to get the New Tab button in addition to the seven expected tabs
https://bugs.webkit.org/show_bug.cgi?id=168976

Patch by Devin Rousso <dcrousso+web...@gmail.com> on 2017-02-28
Reviewed by Brian Burg.

* UserInterface/Views/TabBar.css:
(.tab-bar.collapsed:not(.hide-titles) > .item:not(.pinned):hover > .icon):
(.tab-bar.collapsed:not(.hide-titles) > .item:hover > .close):
(.tab-bar.collapsed:not(.hide-titles) > .item:not(.pinned, .default-tab):hover > .icon): Deleted.
(.tab-bar.collapsed:not(.hide-titles) > .item:not(.default-tab):hover > .close): Deleted.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (213187 => 213188)


--- trunk/Source/WebInspectorUI/ChangeLog	2017-02-28 23:33:55 UTC (rev 213187)
+++ trunk/Source/WebInspectorUI/ChangeLog	2017-02-28 23:34:23 UTC (rev 213188)
@@ -1,5 +1,18 @@
 2017-02-28  Devin Rousso  <dcrousso+web...@gmail.com>
 
+        Web Inspector: It is possible to get the New Tab button in addition to the seven expected tabs
+        https://bugs.webkit.org/show_bug.cgi?id=168976
+
+        Reviewed by Brian Burg.
+
+        * UserInterface/Views/TabBar.css:
+        (.tab-bar.collapsed:not(.hide-titles) > .item:not(.pinned):hover > .icon):
+        (.tab-bar.collapsed:not(.hide-titles) > .item:hover > .close):
+        (.tab-bar.collapsed:not(.hide-titles) > .item:not(.pinned, .default-tab):hover > .icon): Deleted.
+        (.tab-bar.collapsed:not(.hide-titles) > .item:not(.default-tab):hover > .close): Deleted.
+
+2017-02-28  Devin Rousso  <dcrousso+web...@gmail.com>
+
         Web Inspector: CSS variable uses that are unresolved should have an error or warning icon
         https://bugs.webkit.org/show_bug.cgi?id=168352
 

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TabBar.css (213187 => 213188)


--- trunk/Source/WebInspectorUI/UserInterface/Views/TabBar.css	2017-02-28 23:33:55 UTC (rev 213187)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TabBar.css	2017-02-28 23:34:23 UTC (rev 213188)
@@ -322,12 +322,12 @@
     display: none;
 }
 
-.tab-bar.collapsed:not(.hide-titles) > .item:not(.pinned, .default-tab):hover > .icon,
+.tab-bar.collapsed:not(.hide-titles) > .item:not(.pinned):hover > .icon,
 .tab-bar.hide-titles > .item.selected:hover > .icon {
     display: none;
 }
 
-.tab-bar.collapsed:not(.hide-titles) > .item:not(.default-tab):hover > .close,
+.tab-bar.collapsed:not(.hide-titles) > .item:hover > .close,
 .tab-bar.hide-titles > .item.selected:hover > .close {
     display: inline-block;
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to