Title: [198084] trunk/Source/WebInspectorUI
Revision
198084
Author
[email protected]
Date
2016-03-13 15:03:44 -0700 (Sun, 13 Mar 2016)

Log Message

Web Inspector: REGRESSION: Styles sidebar inline swatches are oddly shaped
https://bugs.webkit.org/show_bug.cgi?id=155410

Patch by Devin Rousso <[email protected]> on 2016-03-13
Reviewed by Timothy Hatcher.

* UserInterface/Views/InlineSwatch.css:
(.inline-swatch):
(.inline-swatch > span):
Added more consistent border-radius with UserInterface/Images/CubicBezier.svg.

* UserInterface/Views/VisualStyleColorPicker.css:
(.visual-style-property-container.input-color-picker > .visual-style-property-value-container > .inline-swatch.color):
Made border-radius consistent with the adjacent input field.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (198083 => 198084)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-03-13 20:12:01 UTC (rev 198083)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-03-13 22:03:44 UTC (rev 198084)
@@ -1,3 +1,19 @@
+2016-03-13  Devin Rousso  <[email protected]>
+
+        Web Inspector: REGRESSION: Styles sidebar inline swatches are oddly shaped
+        https://bugs.webkit.org/show_bug.cgi?id=155410
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/InlineSwatch.css:
+        (.inline-swatch):
+        (.inline-swatch > span):
+        Added more consistent border-radius with UserInterface/Images/CubicBezier.svg.
+
+        * UserInterface/Views/VisualStyleColorPicker.css:
+        (.visual-style-property-container.input-color-picker > .visual-style-property-value-container > .inline-swatch.color):
+        Made border-radius consistent with the adjacent input field.
+
 2016-03-12  Nikita Vasilyev  <[email protected]>
 
         Web Inspector: Convert toolbar and tab bar to position absolute to reduce repaint areas

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/InlineSwatch.css (198083 => 198084)


--- trunk/Source/WebInspectorUI/UserInterface/Views/InlineSwatch.css	2016-03-13 20:12:01 UTC (rev 198083)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/InlineSwatch.css	2016-03-13 22:03:44 UTC (rev 198084)
@@ -38,6 +38,8 @@
     background-size: 50%;
     background-position: top left, bottom right;
     background-repeat: no-repeat;
+    border-radius: 2px;
+    overflow: hidden;
     cursor: default;
 }
 
@@ -71,7 +73,7 @@
     bottom: 0;
     left: 0;
     border: 1px solid hsla(0, 0%, 25%, 0.4);
-    border-radius: 4px 0px 0px 4px;
+    border-radius: 2px;
     pointer-events: none;
 }
 

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleColorPicker.css (198083 => 198084)


--- trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleColorPicker.css	2016-03-13 20:12:01 UTC (rev 198083)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleColorPicker.css	2016-03-13 22:03:44 UTC (rev 198084)
@@ -37,7 +37,7 @@
     margin-top: 1px;
     margin-right: 0;
     border: 1px solid hsla(0, 0%, 25%, 0.4);
-    border-radius: 5px 0px 0px 5px;
+    border-radius: 4px 0 0 4px;
 }
 
 .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