From 83b0ed75ea3c8051f21491ba5bcd91ff167a188f Mon Sep 17 00:00:00 2001 From: "jond@apple.com" Date: Sat, 13 Feb 2016 03:13:49 +0000 Subject: [PATCH 1/1] Add a CSS class to remove padding when using mattewhite class for figures https://bugs.webkit.org/show_bug.cgi?id=154206 Reviewed by Filip Pizlo. * wp-content/themes/webkit/style.css: (article .two-columns): (article .two-columns h6): (article .two-columns p): (article .mattewhite): (article .mattewhite.tightwad): (article figure): git-svn-id: https://svn.webkit.org/repository/webkit/trunk@196542 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Websites/webkit.org/ChangeLog | 15 +++++++++++++++ Websites/webkit.org/wp-content/themes/webkit/style.css | 4 ++++ 2 files changed, 19 insertions(+) diff --git a/Websites/webkit.org/ChangeLog b/Websites/webkit.org/ChangeLog index 9246d62..0963b0c 100644 --- a/Websites/webkit.org/ChangeLog +++ b/Websites/webkit.org/ChangeLog @@ -1,3 +1,18 @@ +2016-02-12 Jonathan Davis + + Add a CSS class to remove padding when using mattewhite class for figures + https://bugs.webkit.org/show_bug.cgi?id=154206 + + Reviewed by Filip Pizlo. + + * wp-content/themes/webkit/style.css: + (article .two-columns): + (article .two-columns h6): + (article .two-columns p): + (article .mattewhite): + (article .mattewhite.tightwad): + (article figure): + 2016-02-12 Filip Pizlo Unreviewed, upload some blog files. diff --git a/Websites/webkit.org/wp-content/themes/webkit/style.css b/Websites/webkit.org/wp-content/themes/webkit/style.css index 6c1e41b..a31aa59 100644 --- a/Websites/webkit.org/wp-content/themes/webkit/style.css +++ b/Websites/webkit.org/wp-content/themes/webkit/style.css @@ -1074,6 +1074,10 @@ article .mattewhite { padding-bottom: 3rem; } +article .mattewhite.tightwad { + padding: 0; +} + /** Article Figures **/ article figure { -- 1.8.3.1