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 * |
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-audio { |
77 .wp-block-audio { |
72 margin-left: 0; |
78 margin-left: 0; |
73 margin-right: 0; |
79 margin-right: 0; |
|
80 position: relative; |
74 } |
81 } |
|
82 .wp-block-audio.is-transient audio { |
|
83 opacity: 0.3; |
|
84 } |
|
85 .wp-block-audio .components-spinner { |
|
86 position: absolute; |
|
87 top: 50%; |
|
88 left: 50%; |
|
89 margin-top: -9px; |
|
90 margin-left: -9px; |
|
91 } |