equal
deleted
inserted
replaced
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 /** |
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 */ |
|
49 /** |
44 * Breakpoint mixins |
50 * Breakpoint mixins |
45 */ |
51 */ |
46 /** |
52 /** |
47 * Long content fade mixin |
53 * Long content fade mixin |
48 * |
54 * |
66 * This is a WP-admin agnostic reset |
72 * This is a WP-admin agnostic reset |
67 */ |
73 */ |
68 /** |
74 /** |
69 * Reset the WP Admin page styles for Gutenberg-like pages. |
75 * Reset the WP Admin page styles for Gutenberg-like pages. |
70 */ |
76 */ |
71 .wp-block-quote.is-style-large, .wp-block-quote.is-large { |
77 .wp-block-quote { |
|
78 box-sizing: border-box; |
|
79 overflow-wrap: break-word; |
|
80 } |
|
81 .wp-block-quote.is-style-large:not(.is-style-plain), .wp-block-quote.is-large:not(.is-style-plain) { |
72 margin-bottom: 1em; |
82 margin-bottom: 1em; |
73 padding: 0 1em; |
83 padding: 0 1em; |
74 } |
84 } |
75 .wp-block-quote.is-style-large p, .wp-block-quote.is-large p { |
85 .wp-block-quote.is-style-large:not(.is-style-plain) p, .wp-block-quote.is-large:not(.is-style-plain) p { |
76 font-size: 1.5em; |
86 font-size: 1.5em; |
77 font-style: italic; |
87 font-style: italic; |
78 line-height: 1.6; |
88 line-height: 1.6; |
79 } |
89 } |
80 .wp-block-quote.is-style-large cite, |
90 .wp-block-quote.is-style-large:not(.is-style-plain) cite, |
81 .wp-block-quote.is-style-large footer, .wp-block-quote.is-large cite, |
91 .wp-block-quote.is-style-large:not(.is-style-plain) footer, .wp-block-quote.is-large:not(.is-style-plain) cite, |
82 .wp-block-quote.is-large footer { |
92 .wp-block-quote.is-large:not(.is-style-plain) footer { |
83 font-size: 1.125em; |
93 font-size: 1.125em; |
84 text-align: right; |
94 text-align: right; |
85 } |
95 } |