Title: [246119] trunk/Websites/webkit.org
Revision
246119
Author
[email protected]
Date
2019-06-05 11:23:49 -0700 (Wed, 05 Jun 2019)

Log Message

Fix icons positioned incorrectly when a featured image is used
https://bugs.webkit.org/show_bug.cgi?id=198535

Reviewed by Devin Rousso.

* wp-content/themes/webkit/style.css:
(.tile .background-image.loaded svg):
(.tile .featured-image::before):

Modified Paths

Diff

Modified: trunk/Websites/webkit.org/ChangeLog (246118 => 246119)


--- trunk/Websites/webkit.org/ChangeLog	2019-06-05 18:23:06 UTC (rev 246118)
+++ trunk/Websites/webkit.org/ChangeLog	2019-06-05 18:23:49 UTC (rev 246119)
@@ -1,5 +1,16 @@
 2019-06-05  Jon Davis  <[email protected]>
 
+        Fix icons positioned incorrectly when a featured image is used
+        https://bugs.webkit.org/show_bug.cgi?id=198535
+
+        Reviewed by Devin Rousso.
+
+        * wp-content/themes/webkit/style.css:
+        (.tile .background-image.loaded svg):
+        (.tile .featured-image::before):
+
+2019-06-05  Jon Davis  <[email protected]>
+
         Improve accessibility on webkit.org
         https://bugs.webkit.org/show_bug.cgi?id=198531
 

Modified: trunk/Websites/webkit.org/wp-content/themes/webkit/style.css (246118 => 246119)


--- trunk/Websites/webkit.org/wp-content/themes/webkit/style.css	2019-06-05 18:23:06 UTC (rev 246118)
+++ trunk/Websites/webkit.org/wp-content/themes/webkit/style.css	2019-06-05 18:23:49 UTC (rev 246119)
@@ -900,8 +900,13 @@
             filter: saturate(1);
 }
 
+.tile .background-image.loaded svg {
+    display: none;
+}
+
 .tile .featured-image::before {
-    padding-bottom: 80%;
+    padding-top: 80%;
+    margin-bottom: 20%;
     content: '';
     display: block;
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to