equal
deleted
inserted
replaced
38 */ |
38 */ |
39 /** |
39 /** |
40 * React Native specific. |
40 * React Native specific. |
41 * These variables do not appear to be used anywhere else. |
41 * These variables do not appear to be used anywhere else. |
42 */ |
42 */ |
|
43 /** |
|
44 * Converts a hex value into the rgb equivalent. |
|
45 * |
|
46 * @param {string} hex - the hexadecimal value to convert |
|
47 * @return {string} comma separated rgb values |
|
48 */ |
43 /** |
49 /** |
44 * Breakpoint mixins |
50 * Breakpoint mixins |
45 */ |
51 */ |
46 /** |
52 /** |
47 * Long content fade mixin |
53 * Long content fade mixin |
124 } |
130 } |
125 |
131 |
126 .wp-block-latest-posts__post-date, |
132 .wp-block-latest-posts__post-date, |
127 .wp-block-latest-posts__post-author { |
133 .wp-block-latest-posts__post-author { |
128 display: block; |
134 display: block; |
129 color: #555; |
|
130 font-size: 0.8125em; |
135 font-size: 0.8125em; |
131 } |
136 } |
132 |
137 |
133 .wp-block-latest-posts__post-excerpt { |
138 .wp-block-latest-posts__post-excerpt { |
134 margin-top: 0.5em; |
139 margin-top: 0.5em; |
143 width: auto; |
148 width: auto; |
144 max-width: 100%; |
149 max-width: 100%; |
145 } |
150 } |
146 .wp-block-latest-posts__featured-image.alignleft { |
151 .wp-block-latest-posts__featured-image.alignleft { |
147 margin-right: 1em; |
152 margin-right: 1em; |
|
153 float: left; |
148 } |
154 } |
149 .wp-block-latest-posts__featured-image.alignright { |
155 .wp-block-latest-posts__featured-image.alignright { |
150 margin-left: 1em; |
156 margin-left: 1em; |
|
157 float: right; |
151 } |
158 } |
152 .wp-block-latest-posts__featured-image.aligncenter { |
159 .wp-block-latest-posts__featured-image.aligncenter { |
153 margin-bottom: 1em; |
160 margin-bottom: 1em; |
154 text-align: center; |
161 text-align: center; |
155 } |
162 } |
156 |
|
157 .block-editor-image-alignment-control__row .components-base-control__field { |
|
158 display: flex; |
|
159 justify-content: space-between; |
|
160 align-items: center; |
|
161 } |
|
162 .block-editor-image-alignment-control__row .components-base-control__field .components-base-control__label { |
|
163 margin-bottom: 0; |
|
164 } |
|