|
@@ -293,6 +293,32 @@ h1, h2, h3, h4, h5, h6 {
|
|
|
border-color: var(--wp--custom--button--color--hover-background);
|
|
|
}
|
|
|
|
|
|
+.wp-block-image {
|
|
|
+ /*
|
|
|
+ From what I can tell the below are styles regularly used by themes
|
|
|
+ to fix the image block. I believe these should go into the block's
|
|
|
+ default styles. It's difficult to say how this will land, however
|
|
|
+ based on discussion found in (many) related issues here:
|
|
|
+ https://github.com/WordPress/gutenberg/issues/28923
|
|
|
+ */
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+
|
|
|
+/*
|
|
|
+ Further gutenberg APPEARS to be defaulting the margin to the same as
|
|
|
+ the below, however (for reason's that aren't clear to me now) this
|
|
|
+ isn't coming through.
|
|
|
+*/
|
|
|
+.wp-block-column .wp-block-image {
|
|
|
+ margin: 0 0 1em 0;
|
|
|
+}
|
|
|
+
|
|
|
+ul,
|
|
|
+ol {
|
|
|
+ font-family: var(--wp--custom--list--font-family);
|
|
|
+ padding-left: var(--wp--custom--list--padding--left);
|
|
|
+}
|
|
|
+
|
|
|
p.has-background {
|
|
|
padding: var(--wp--custom--margin--vertical) var(--wp--custom--margin--horizontal);
|
|
|
}
|
|
@@ -380,24 +406,4 @@ p.has-drop-cap:not(:focus):first-letter {
|
|
|
text-align: var(--wp--custom--video--caption--text-align);
|
|
|
}
|
|
|
|
|
|
-.wp-block-image {
|
|
|
- /*
|
|
|
- From what I can tell the below are styles regularly used by themes
|
|
|
- to fix the image block. I believe these should go into the block's
|
|
|
- default styles. It's difficult to say how this will land, however
|
|
|
- based on discussion found in (many) related issues here:
|
|
|
- https://github.com/WordPress/gutenberg/issues/28923
|
|
|
- */
|
|
|
- text-align: center;
|
|
|
-}
|
|
|
-
|
|
|
-/*
|
|
|
- Further gutenberg APPEARS to be defaulting the margin to the same as
|
|
|
- the below, however (for reason's that aren't clear to me now) this
|
|
|
- isn't coming through.
|
|
|
-*/
|
|
|
-.wp-block-column .wp-block-image {
|
|
|
- margin: 0 0 1em 0;
|
|
|
-}
|
|
|
-
|
|
|
/*# sourceMappingURL=ponyfill.css.map */
|