author | ymh <ymh.work@gmail.com> |
Mon, 08 Sep 2025 19:44:41 +0200 | |
changeset 23 | 417f20492bf7 |
parent 22 | 8c2e4d02f4ef |
permissions | -rw-r--r-- |
5 | 1 |
.wp-full-overlay-sidebar { |
2 |
overflow: visible; |
|
3 |
} |
|
4 |
||
5 |
/** |
|
6 |
* Hide all sidebar sections by default, only show them (via JS) once the |
|
7 |
* preview loads and we know whether the sidebars are used in the template. |
|
8 |
*/ |
|
9 |
||
10 |
.control-section.control-section-sidebar, |
|
11 |
.customize-control-sidebar_widgets label, |
|
12 |
.customize-control-sidebar_widgets .hide-if-js { |
|
13 |
/* The link in .customize-control-sidebar_widgets .hide-if-js will fail if it ever gets used. */ |
|
14 |
display: none; |
|
15 |
} |
|
16 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
17 |
.control-section.control-section-sidebar .accordion-section-content.ui-sortable { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
18 |
overflow: visible; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
19 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
20 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
21 |
/* Note: widget-tops are more compact when (max-height: 700px) and (min-width: 981px). */ |
5 | 22 |
.customize-control-widget_form .widget-top { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
23 |
background: #fff; |
5 | 24 |
transition: opacity 0.5s; |
25 |
} |
|
26 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
27 |
.customize-control .widget-action { |
18 | 28 |
color: #787c82; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
29 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
30 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
31 |
.customize-control .widget-top:hover .widget-action, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
32 |
.customize-control .widget-action:focus { |
18 | 33 |
color: #1d2327; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
34 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
35 |
|
5 | 36 |
.customize-control-widget_form:not(.widget-rendered) .widget-top { |
37 |
opacity: 0.5; |
|
38 |
} |
|
39 |
||
40 |
.customize-control-widget_form .widget-control-save { |
|
41 |
display: none; |
|
42 |
} |
|
43 |
||
44 |
.customize-control-widget_form .spinner { |
|
45 |
visibility: hidden; |
|
46 |
margin-top: 0; |
|
47 |
} |
|
48 |
||
49 |
.customize-control-widget_form.previewer-loading .spinner { |
|
50 |
visibility: visible; |
|
51 |
} |
|
52 |
||
53 |
.customize-control-widget_form.widget-form-disabled .widget-content { |
|
54 |
opacity: 0.7; |
|
55 |
pointer-events: none; |
|
56 |
-webkit-user-select: none; |
|
57 |
user-select: none; |
|
58 |
} |
|
59 |
||
60 |
.customize-control-widget_form .widget { |
|
61 |
margin-bottom: 0; |
|
62 |
} |
|
63 |
||
64 |
.customize-control-widget_form.wide-widget-control .widget-inside { |
|
65 |
position: fixed; |
|
66 |
left: 299px; |
|
67 |
top: 25%; |
|
18 | 68 |
border: 1px solid #dcdcde; |
5 | 69 |
overflow: auto; |
70 |
} |
|
71 |
.customize-control-widget_form.wide-widget-control .widget-inside > .form { |
|
72 |
padding: 20px; |
|
73 |
} |
|
74 |
||
75 |
.customize-control-widget_form.wide-widget-control .widget-top { |
|
76 |
transition: background-color 0.4s; |
|
77 |
} |
|
78 |
.customize-control-widget_form.wide-widget-control.expanding .widget-top, |
|
79 |
.customize-control-widget_form.wide-widget-control.expanded:not(.collapsing) .widget-top { |
|
18 | 80 |
background-color: #dcdcde; |
5 | 81 |
} |
82 |
||
83 |
.widget-inside { |
|
19 | 84 |
padding: 1px 10px 10px; |
5 | 85 |
border-top: none; |
16 | 86 |
line-height: 1.23076923; |
5 | 87 |
} |
88 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
89 |
.customize-control-widget_form.expanded .widget-action .toggle-indicator:before { |
5 | 90 |
content: "\f142"; |
91 |
} |
|
92 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
93 |
.customize-control-widget_form.wide-widget-control .widget-action .toggle-indicator:before { |
5 | 94 |
content: "\f139"; |
95 |
} |
|
96 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
97 |
.customize-control-widget_form.wide-widget-control.expanded .widget-action .toggle-indicator:before { |
5 | 98 |
content: "\f141"; |
99 |
} |
|
100 |
||
101 |
.widget-title-action { |
|
102 |
cursor: pointer; |
|
103 |
} |
|
104 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
105 |
.widget-top, |
5 | 106 |
.customize-control-widget_form .widget .customize-control-title { |
107 |
cursor: move; |
|
108 |
} |
|
109 |
||
110 |
.control-section.accordion-section.highlighted > .accordion-section-title, |
|
111 |
.customize-control-widget_form.highlighted { |
|
112 |
outline: none; |
|
18 | 113 |
box-shadow: 0 0 2px rgba(79, 148, 212, 0.8); |
5 | 114 |
position: relative; |
115 |
z-index: 1; |
|
116 |
} |
|
117 |
||
118 |
#widget-customizer-control-templates { |
|
119 |
display: none; |
|
120 |
} |
|
121 |
||
122 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
123 |
* Widget reordering styles |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
124 |
*/ |
5 | 125 |
|
126 |
#customize-theme-controls .widget-reorder-nav { |
|
127 |
display: none; |
|
128 |
float: right; |
|
18 | 129 |
background-color: #f6f7f7; |
5 | 130 |
} |
131 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
132 |
.move-widget:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
133 |
content: "\f504"; |
5 | 134 |
} |
135 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
136 |
#customize-theme-controls .move-widget-area { |
5 | 137 |
display: none; |
138 |
background: #fff; |
|
18 | 139 |
border: 1px solid #c3c4c7; |
5 | 140 |
border-top: none; |
141 |
cursor: auto; |
|
142 |
} |
|
143 |
||
144 |
#customize-theme-controls .reordering .move-widget-area.active { |
|
145 |
display: block; |
|
146 |
} |
|
147 |
||
148 |
#customize-theme-controls .move-widget-area .description { |
|
149 |
margin: 0; |
|
150 |
padding: 15px 20px; |
|
151 |
font-weight: 400; |
|
152 |
} |
|
153 |
||
154 |
#customize-theme-controls .widget-area-select { |
|
155 |
margin: 0; |
|
156 |
padding: 0; |
|
157 |
list-style: none; |
|
158 |
} |
|
159 |
||
160 |
#customize-theme-controls .widget-area-select li { |
|
161 |
position: relative; |
|
162 |
margin: 0; |
|
163 |
padding: 13px 15px 15px 42px; |
|
18 | 164 |
color: #50575e; |
165 |
border-top: 1px solid #c3c4c7; |
|
5 | 166 |
cursor: pointer; |
167 |
-webkit-user-select: none; |
|
168 |
user-select: none; |
|
169 |
} |
|
170 |
||
171 |
#customize-theme-controls .widget-area-select li:before { |
|
172 |
display: none; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
173 |
content: "\f147"; |
5 | 174 |
position: absolute; |
175 |
top: 12px; |
|
176 |
left: 10px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
177 |
font: normal 20px/1 dashicons; |
5 | 178 |
-webkit-font-smoothing: antialiased; |
179 |
-moz-osx-font-smoothing: grayscale; |
|
180 |
} |
|
181 |
||
182 |
#customize-theme-controls .widget-area-select li:last-child { |
|
18 | 183 |
border-bottom: 1px solid #c3c4c7; |
5 | 184 |
} |
185 |
||
186 |
#customize-theme-controls .widget-area-select .selected { |
|
187 |
color: #fff; |
|
18 | 188 |
background: #2271b1; |
5 | 189 |
} |
190 |
||
191 |
#customize-theme-controls .widget-area-select .selected:before { |
|
192 |
display: block; |
|
193 |
} |
|
194 |
||
195 |
#customize-theme-controls .move-widget-actions { |
|
196 |
text-align: right; |
|
197 |
padding: 12px; |
|
198 |
} |
|
199 |
||
200 |
#customize-theme-controls .reordering .widget-title-action { |
|
201 |
display: none; |
|
202 |
} |
|
203 |
||
204 |
#customize-theme-controls .reordering .widget-reorder-nav { |
|
205 |
display: block; |
|
206 |
} |
|
207 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
208 |
/* Text Widget */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
209 |
.wp-customizer div.mce-inline-toolbar-grp, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
210 |
.wp-customizer div.mce-tooltip { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
211 |
z-index: 500100 !important; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
212 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
213 |
.wp-customizer .ui-autocomplete.wplink-autocomplete { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
214 |
z-index: 500110; /* originally 100110, but z-index of .wp-full-overlay is 500000 */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
215 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
216 |
.wp-customizer #wp-link-backdrop { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
217 |
z-index: 500100; /* originally 100100, but z-index of .wp-full-overlay is 500000 */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
218 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
219 |
.wp-customizer #wp-link-wrap { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
220 |
z-index: 500105; /* originally 100105, but z-index of .wp-full-overlay is 500000 */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
221 |
} |
5 | 222 |
|
223 |
/** |
|
224 |
* Styles for new widget addition panel |
|
225 |
*/ |
|
226 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
227 |
/* override widgets admin page rules in wp-admin/css/widgets.css */ |
5 | 228 |
#widgets-left #available-widgets .widget { |
229 |
float: none !important; |
|
230 |
width: auto !important; |
|
231 |
} |
|
232 |
||
9 | 233 |
/* Keep rule that is no longer necessary on widgets.php. */ |
234 |
#available-widgets .widget-action { |
|
235 |
display: none; |
|
236 |
} |
|
237 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
238 |
.ios #available-widgets { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
239 |
transition: left 0s; |
5 | 240 |
} |
241 |
||
242 |
#available-widgets .widget-tpl:hover, |
|
243 |
#available-widgets .widget-tpl.selected { |
|
18 | 244 |
background: #f6f7f7; |
245 |
border-bottom-color: #c3c4c7; |
|
246 |
color: #2271b1; |
|
247 |
border-left: 4px solid #2271b1; |
|
5 | 248 |
} |
249 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
250 |
#customize-controls .widget-title h3 { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
251 |
font-size: 1em; |
5 | 252 |
} |
253 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
254 |
#available-widgets .widget-title h3 { |
5 | 255 |
padding: 0 0 5px; |
256 |
font-size: 14px; |
|
257 |
} |
|
258 |
||
259 |
#available-widgets .widget .widget-description { |
|
260 |
padding: 0; |
|
18 | 261 |
color: #646970; |
5 | 262 |
} |
263 |
||
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
264 |
@media (prefers-reduced-motion: no-preference) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
265 |
#customize-preview { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
266 |
transition: all 0.2s; |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
267 |
} |
5 | 268 |
} |
269 |
||
270 |
body.adding-widget #available-widgets { |
|
271 |
left: 0; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
272 |
visibility: visible; |
5 | 273 |
} |
274 |
||
275 |
body.adding-widget .wp-full-overlay-main { |
|
276 |
left: 300px; |
|
277 |
} |
|
278 |
||
279 |
body.adding-widget #customize-preview { |
|
280 |
opacity: 0.4; |
|
281 |
} |
|
282 |
||
283 |
||
284 |
/** |
|
285 |
* Widget Icon styling |
|
286 |
* No plurals in naming. |
|
287 |
* Ordered from lowest to highest specificity. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
288 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
289 |
|
5 | 290 |
#available-widgets .widget-title { |
291 |
position: relative; |
|
292 |
} |
|
293 |
||
294 |
#available-widgets .widget-title:before { |
|
295 |
content: "\f132"; |
|
296 |
position: absolute; |
|
297 |
top: -3px; |
|
298 |
right: 100%; |
|
299 |
margin-right: 20px; |
|
300 |
width: 20px; |
|
301 |
height: 20px; |
|
18 | 302 |
color: #2c3338; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
303 |
font: normal 20px/1 dashicons; |
5 | 304 |
text-align: center; |
305 |
box-sizing: border-box; |
|
306 |
-webkit-font-smoothing: antialiased; |
|
307 |
-moz-osx-font-smoothing: grayscale; |
|
308 |
} |
|
309 |
||
16 | 310 |
/* dashicons-smiley */ |
5 | 311 |
#available-widgets [class*="easy"] .widget-title:before { content: "\f328"; top: -4px; } |
312 |
||
16 | 313 |
/* dashicons-star-filled */ |
5 | 314 |
#available-widgets [class*="super"] .widget-title:before, |
315 |
#available-widgets [class*="like"] .widget-title:before { content: "\f155"; top: -4px; } |
|
316 |
||
16 | 317 |
/* dashicons-wordpress */ |
5 | 318 |
#available-widgets [class*="meta"] .widget-title:before { content: "\f120"; } |
319 |
||
16 | 320 |
/* dashicons-archive */ |
5 | 321 |
#available-widgets [class*="archives"] .widget-title:before { content: "\f480"; top: -4px; } |
322 |
||
16 | 323 |
/* dashicons-category */ |
5 | 324 |
#available-widgets [class*="categor"] .widget-title:before { content: "\f318"; top: -4px; } |
325 |
||
16 | 326 |
/* dashicons-admin-comments */ |
5 | 327 |
#available-widgets [class*="comment"] .widget-title:before, |
328 |
#available-widgets [class*="testimonial"] .widget-title:before, |
|
329 |
#available-widgets [class*="chat"] .widget-title:before { content: "\f101"; } |
|
330 |
||
16 | 331 |
/* dashicons-admin-post */ |
5 | 332 |
#available-widgets [class*="post"] .widget-title:before { content: "\f109"; } |
333 |
||
16 | 334 |
/* dashicons-admin-page */ |
5 | 335 |
#available-widgets [class*="page"] .widget-title:before { content: "\f105"; } |
336 |
||
16 | 337 |
/* dashicons-text */ |
5 | 338 |
#available-widgets [class*="text"] .widget-title:before { content: "\f478"; } |
339 |
||
16 | 340 |
/* dashicons-admin-links */ |
5 | 341 |
#available-widgets [class*="link"] .widget-title:before { content: "\f103"; } |
342 |
||
16 | 343 |
/* dashicons-search */ |
5 | 344 |
#available-widgets [class*="search"] .widget-title:before { content: "\f179"; } |
345 |
||
16 | 346 |
/* dashicons-menu */ |
5 | 347 |
#available-widgets [class*="menu"] .widget-title:before, |
348 |
#available-widgets [class*="nav"] .widget-title:before { content: "\f333"; } |
|
349 |
||
16 | 350 |
/* dashicons-tagcloud */ |
5 | 351 |
#available-widgets [class*="tag"] .widget-title:before { content: "\f479"; } |
352 |
||
16 | 353 |
/* dashicons-rss */ |
5 | 354 |
#available-widgets [class*="rss"] .widget-title:before { content: "\f303"; top: -6px; } |
355 |
||
16 | 356 |
/* dashicons-calendar */ |
5 | 357 |
#available-widgets [class*="event"] .widget-title:before, |
358 |
#available-widgets [class*="calendar"] .widget-title:before { content: "\f145"; top: -4px;} |
|
359 |
||
16 | 360 |
/* dashicons-format-image */ |
5 | 361 |
#available-widgets [class*="image"] .widget-title:before, |
362 |
#available-widgets [class*="photo"] .widget-title:before, |
|
363 |
#available-widgets [class*="slide"] .widget-title:before, |
|
364 |
#available-widgets [class*="instagram"] .widget-title:before { content: "\f128"; } |
|
365 |
||
16 | 366 |
/* dashicons-format-gallery */ |
5 | 367 |
#available-widgets [class*="album"] .widget-title:before, |
368 |
#available-widgets [class*="galler"] .widget-title:before { content: "\f161"; } |
|
369 |
||
16 | 370 |
/* dashicons-format-video */ |
5 | 371 |
#available-widgets [class*="video"] .widget-title:before, |
372 |
#available-widgets [class*="tube"] .widget-title:before { content: "\f126"; } |
|
373 |
||
16 | 374 |
/* dashicons-format-audio */ |
5 | 375 |
#available-widgets [class*="music"] .widget-title:before, |
376 |
#available-widgets [class*="radio"] .widget-title:before, |
|
377 |
#available-widgets [class*="audio"] .widget-title:before { content: "\f127"; } |
|
378 |
||
16 | 379 |
/* dashicons-admin-users */ |
5 | 380 |
#available-widgets [class*="login"] .widget-title:before, |
381 |
#available-widgets [class*="user"] .widget-title:before, |
|
382 |
#available-widgets [class*="member"] .widget-title:before, |
|
383 |
#available-widgets [class*="avatar"] .widget-title:before, |
|
384 |
#available-widgets [class*="subscriber"] .widget-title:before, |
|
385 |
#available-widgets [class*="profile"] .widget-title:before, |
|
386 |
#available-widgets [class*="grofile"] .widget-title:before { content: "\f110"; } |
|
387 |
||
16 | 388 |
/* dashicons-cart */ |
5 | 389 |
#available-widgets [class*="commerce"] .widget-title:before, |
390 |
#available-widgets [class*="shop"] .widget-title:before, |
|
391 |
#available-widgets [class*="cart"] .widget-title:before { content: "\f174"; top: -4px; } |
|
392 |
||
16 | 393 |
/* dashicons-shield */ |
5 | 394 |
#available-widgets [class*="secur"] .widget-title:before, |
395 |
#available-widgets [class*="firewall"] .widget-title:before { content: "\f332"; } |
|
396 |
||
16 | 397 |
/* dashicons-chart-bar */ |
5 | 398 |
#available-widgets [class*="analytic"] .widget-title:before, |
399 |
#available-widgets [class*="stat"] .widget-title:before, |
|
400 |
#available-widgets [class*="poll"] .widget-title:before { content: "\f185"; } |
|
401 |
||
16 | 402 |
/* dashicons-feedback */ |
5 | 403 |
#available-widgets [class*="form"] .widget-title:before { content: "\f175"; } |
404 |
||
16 | 405 |
/* dashicons-email-alt */ |
5 | 406 |
#available-widgets [class*="subscribe"] .widget-title:before, |
407 |
#available-widgets [class*="news"] .widget-title:before, |
|
408 |
#available-widgets [class*="contact"] .widget-title:before, |
|
409 |
#available-widgets [class*="mail"] .widget-title:before { content: "\f466"; } |
|
410 |
||
16 | 411 |
/* dashicons-share */ |
5 | 412 |
#available-widgets [class*="share"] .widget-title:before, |
413 |
#available-widgets [class*="socia"] .widget-title:before { content: "\f237"; } |
|
414 |
||
16 | 415 |
/* dashicons-translation */ |
5 | 416 |
#available-widgets [class*="lang"] .widget-title:before, |
417 |
#available-widgets [class*="translat"] .widget-title:before { content: "\f326"; } |
|
418 |
||
16 | 419 |
/* dashicons-location-alt */ |
5 | 420 |
#available-widgets [class*="locat"] .widget-title:before, |
421 |
#available-widgets [class*="map"] .widget-title:before { content: "\f231"; } |
|
422 |
||
16 | 423 |
/* dashicons-download */ |
5 | 424 |
#available-widgets [class*="download"] .widget-title:before { content: "\f316"; } |
425 |
||
16 | 426 |
/* dashicons-cloud */ |
5 | 427 |
#available-widgets [class*="weather"] .widget-title:before { content: "\f176"; top: -4px;} |
428 |
||
16 | 429 |
/* dashicons-facebook */ |
5 | 430 |
#available-widgets [class*="facebook"] .widget-title:before { content: "\f304"; } |
431 |
||
16 | 432 |
/* dashicons-twitter */ |
5 | 433 |
#available-widgets [class*="tweet"] .widget-title:before, |
434 |
#available-widgets [class*="twitter"] .widget-title:before { content: "\f301"; } |
|
435 |
||
436 |
@media screen and (max-height: 700px) and (min-width: 981px) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
437 |
/* Compact widget-tops on smaller laptops, but not tablets. See ticket #27112#comment:4 */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
438 |
.customize-control-widget_form { |
5 | 439 |
margin-bottom: 0; |
440 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
441 |
|
5 | 442 |
.widget-top { |
443 |
box-shadow: none; |
|
444 |
margin-top: -1px; |
|
445 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
446 |
|
5 | 447 |
.widget-top:hover { |
448 |
position: relative; |
|
449 |
z-index: 1; |
|
450 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
451 |
|
5 | 452 |
.last-widget { |
453 |
margin-bottom: 15px; |
|
454 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
455 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
456 |
.widget-title h3 { |
5 | 457 |
padding: 13px 15px; |
458 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
459 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
460 |
.widget-top .widget-action { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
461 |
padding: 8px 10px; |
5 | 462 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
463 |
|
5 | 464 |
.widget-reorder-nav span { |
465 |
height: 39px; |
|
466 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
467 |
|
5 | 468 |
.widget-reorder-nav span:before { |
469 |
line-height: 39px; |
|
470 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
471 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
472 |
/* Compact the move widget areas. */ |
5 | 473 |
#customize-theme-controls .widget-area-select li { |
474 |
padding: 9px 15px 11px 42px; |
|
475 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
476 |
|
5 | 477 |
#customize-theme-controls .widget-area-select li:before { |
478 |
top: 8px; |
|
479 |
} |
|
480 |
} |