PluginProbe
Gutenberg / 23.3.0
Gutenberg v23.3.0
23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 7.4.0 All 402 releases
gutenberg / build / styles / block-library / gallery / editor.css

editor.css in Gutenberg 23.3.0, at build/styles/block-library/gallery/editor.css

175 lines 3.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Breakpoints & Media Queries
3 */
4 /**
5 * Colors
6 */
7 /**
8 * Typography
9 */
10 /**
11 * SCSS Variables.
12 *
13 * Please use variables from this sheet to ensure consistency across the UI.
14 * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
15 * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
16 */
17 /**
18 * Fonts & basic variables.
19 */
20 /**
21 * Typography
22 */
23 /**
24 * Grid System.
25 * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
26 */
27 /**
28 * Radius scale.
29 */
30 /**
31 * Elevation scale.
32 */
33 /**
34 * Dimensions.
35 */
36 /**
37 * Mobile specific styles
38 */
39 /**
40 * Editor styles.
41 */
42 /**
43 * Block & Editor UI.
44 */
45 /**
46 * Block paddings.
47 */
48 /**
49 * React Native specific.
50 * These variables do not appear to be used anywhere else.
51 */
52 /**
53 * Converts a hex value into the rgb equivalent.
54 *
55 * @param {string} hex - the hexadecimal value to convert
56 * @return {string} comma separated rgb values
57 */
58 /**
59 * Long content fade mixin
60 *
61 * Creates a fading overlay to signify that the content is longer
62 * than the space allows.
63 */
64 /**
65 * Breakpoint mixins
66 */
67 /**
68 * Focus styles.
69 */
70 /**
71 * Applies editor left position to the selector passed as argument
72 */
73 /**
74 * Styles that are reused verbatim in a few places
75 */
76 /**
77 * Allows users to opt-out of animations via OS-level preferences.
78 */
79 /**
80 * Reset default styles for JavaScript UI based pages.
81 * This is a WP-admin agnostic reset
82 */
83 /**
84 * Reset the WP Admin page styles for Gutenberg-like pages.
85 */
86 /**
87 * Creates a checkerboard pattern background to indicate transparency.
88 * @param {String} $size - The size of the squares in the checkerboard pattern. Default is 12px.
89 */
90 :root :where(figure.wp-block-gallery) {
91 display: block;
92 }
93 :root :where(figure.wp-block-gallery) > .blocks-gallery-caption {
94 flex: 0 0 100%;
95 }
96 :root :where(figure.wp-block-gallery) > .blocks-gallery-media-placeholder-wrapper {
97 flex-basis: 100%;
98 }
99 :root :where(figure.wp-block-gallery) .block-editor-media-placeholder.is-appender .components-placeholder__label {
100 display: none;
101 }
102 :root :where(figure.wp-block-gallery) .block-editor-media-placeholder.is-appender .block-editor-media-placeholder__button {
103 margin-bottom: 0;
104 }
105 :root :where(figure.wp-block-gallery) .block-editor-media-placeholder {
106 margin: 0;
107 }
108 :root :where(figure.wp-block-gallery) .block-editor-media-placeholder .components-placeholder__label {
109 display: flex;
110 }
111 :root :where(figure.wp-block-gallery) .block-editor-media-placeholder figcaption {
112 z-index: 2;
113 }
114 :root :where(figure.wp-block-gallery) .components-spinner {
115 position: absolute;
116 top: 50%;
117 left: 50%;
118 margin-top: -9px;
119 margin-left: -9px;
120 }
121
122 /**
123 * Gallery inspector controls settings.
124 */
125 .gallery-settings-buttons .components-button:first-child {
126 margin-right: 8px;
127 }
128
129 /**
130 * Deprecated css past this point. This can be removed once all galleries are migrated
131 * to V2.
132 */
133 .blocks-gallery-item figure:not(.is-selected):focus,
134 .blocks-gallery-item img:focus {
135 outline: none;
136 }
137 .blocks-gallery-item figure.is-selected::before {
138 box-shadow: 0 0 0 1px #fff inset, 0 0 0 3px var(--wp-admin-theme-color) inset;
139 content: "";
140 outline: 2px solid transparent;
141 position: absolute;
142 top: 0;
143 right: 0;
144 bottom: 0;
145 left: 0;
146 z-index: 1;
147 pointer-events: none;
148 }
149 .blocks-gallery-item figure.is-transient img {
150 opacity: 0.3;
151 }
152 .blocks-gallery-item .block-editor-media-placeholder {
153 margin: 0;
154 height: 100%;
155 }
156 .blocks-gallery-item .block-editor-media-placeholder .components-placeholder__label {
157 display: flex;
158 }
159
160 .wp-block-gallery ul.blocks-gallery-grid {
161 padding: 0;
162 margin: 0;
163 }
164
165 @media (min-width: 600px) {
166 .wp-block-update-gallery-modal {
167 max-width: 480px;
168 }
169 }
170
171 .wp-block-update-gallery-modal-buttons {
172 display: flex;
173 justify-content: flex-end;
174 gap: 12px;
175 }