Title: [197975] trunk/Source/WebInspectorUI
Revision
197975
Author
[email protected]
Date
2016-03-10 17:03:38 -0800 (Thu, 10 Mar 2016)

Log Message

Web Inspector: color swatch and border are misaligned in Visual Styles sidebar
https://bugs.webkit.org/show_bug.cgi?id=154471

Patch by Daniel Strokis <[email protected]> on 2016-03-10
Reviewed by Timothy Hatcher.

Color swatches in the Visual Styles sidebar now have only their left corners rounded (thanks to Matt Baker for the idea).

* UserInterface/Views/InlineSwatch.css:
(.inline-swatch > span):
(.inline-swatch): Deleted.
* UserInterface/Views/VisualStyleColorPicker.css:
(.visual-style-property-container.input-color-picker > .visual-style-property-value-container > .inline-swatch.color):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (197974 => 197975)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-03-11 00:49:16 UTC (rev 197974)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-03-11 01:03:38 UTC (rev 197975)
@@ -1,3 +1,18 @@
+2016-03-10  Daniel Strokis  <[email protected]>
+
+        Web Inspector: color swatch and border are misaligned in Visual Styles sidebar
+        https://bugs.webkit.org/show_bug.cgi?id=154471
+
+        Reviewed by Timothy Hatcher.
+
+        Color swatches in the Visual Styles sidebar now have only their left corners rounded (thanks to Matt Baker for the idea).
+
+        * UserInterface/Views/InlineSwatch.css:
+        (.inline-swatch > span):
+        (.inline-swatch): Deleted.
+        * UserInterface/Views/VisualStyleColorPicker.css:
+        (.visual-style-property-container.input-color-picker > .visual-style-property-value-container > .inline-swatch.color):
+
 2016-03-10  Matt Baker  <[email protected]>
 
         Web Inspector: Timelines UI redesign: remove navigation sidebar

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/InlineSwatch.css (197974 => 197975)


--- trunk/Source/WebInspectorUI/UserInterface/Views/InlineSwatch.css	2016-03-11 00:49:16 UTC (rev 197974)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/InlineSwatch.css	2016-03-11 01:03:38 UTC (rev 197975)
@@ -39,7 +39,6 @@
     background-position: top left, bottom right;
     background-repeat: no-repeat;
     cursor: default;
-    overflow: hidden;
 }
 
 .inline-swatch.bezier {
@@ -72,6 +71,7 @@
     bottom: 0;
     left: 0;
     border: 1px solid hsla(0, 0%, 25%, 0.4);
+    border-radius: 4px 0px 0px 4px;
     pointer-events: none;
 }
 

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleColorPicker.css (197974 => 197975)


--- trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleColorPicker.css	2016-03-11 00:49:16 UTC (rev 197974)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleColorPicker.css	2016-03-11 01:03:38 UTC (rev 197975)
@@ -37,7 +37,7 @@
     margin-top: 1px;
     margin-right: 0;
     border: 1px solid hsla(0, 0%, 25%, 0.4);
-    border-radius: 4px;
+    border-radius: 5px 0px 0px 5px;
 }
 
 .visual-style-property-container.input-color-picker > .visual-style-property-value-container > .inline-swatch.color:hover {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to