| @@ -1,41 +1,358 @@ | ||
| 1 | -.wp-full-overlay-sidebar * { | |
| 1 | +@charset "UTF-8"; | |
| 2 | +.sm-radio-group { | |
| 3 | + position: relative; | |
| 4 | + border-radius: 999em; | |
| 5 | + overflow: hidden; | |
| 6 | + height: 2.428em; | |
| 7 | + display: -ms-flexbox; | |
| 8 | + display: flex; | |
| 9 | + -ms-flex-wrap: nowrap; | |
| 10 | + flex-wrap: nowrap; | |
| 11 | + -ms-flex-align: stretch; | |
| 12 | + align-items: stretch; | |
| 13 | + color: rgba(65, 107, 126, 0.7); | |
| 14 | + font-size: 14px; | |
| 15 | + -webkit-font-smoothing: antialiased; | |
| 16 | + font-weight: 600; | |
| 17 | + line-height: 1.142em; | |
| 18 | +} | |
| 19 | + | |
| 20 | +.sm-radio-group > * { | |
| 21 | + -ms-flex: 1 1 0; | |
| 22 | + flex: 1 1 0; | |
| 23 | +} | |
| 24 | + | |
| 25 | +.sm-radio-group:after { | |
| 26 | + content: ""; | |
| 27 | + position: absolute; | |
| 28 | + top: 0; | |
| 29 | + right: 0; | |
| 30 | + bottom: 0; | |
| 31 | + left: 0; | |
| 32 | + border: 0.142em solid #57abd5; | |
| 33 | + border-radius: 999em; | |
| 34 | + pointer-events: none; | |
| 35 | +} | |
| 36 | + | |
| 37 | +.sm-radio-group input[type="radio"] { | |
| 38 | + display: none; | |
| 39 | +} | |
| 40 | + | |
| 41 | +.sm-radio-group input[type="radio"]:checked + label { | |
| 42 | + background-color: #57abd5; | |
| 43 | + color: #ffffff; | |
| 44 | +} | |
| 45 | + | |
| 46 | +.sm-radio-group input[type="radio"]:checked + label:before { | |
| 47 | + content: ""; | |
| 48 | + display: inline-block; | |
| 49 | + color: inherit; | |
| 50 | + position: relative; | |
| 51 | + top: .285em; | |
| 52 | + margin-right: .45em; | |
| 53 | + height: .8em; | |
| 54 | + width: .55em; | |
| 55 | + border-right: 2px solid; | |
| 56 | + border-bottom: 2px solid; | |
| 57 | + -webkit-transform: translateY(-50%) rotate(45deg); | |
| 58 | + transform: translateY(-50%) rotate(45deg); | |
| 59 | +} | |
| 60 | + | |
| 61 | +.sm-radio-group label { | |
| 62 | + display: -ms-flexbox; | |
| 63 | + display: flex; | |
| 64 | + -ms-flex-align: center; | |
| 65 | + align-items: center; | |
| 66 | + -ms-flex-pack: center; | |
| 67 | + justify-content: center; | |
| 68 | + position: relative; | |
| 69 | + cursor: pointer; | |
| 70 | + transition: all .25s ease; | |
| 71 | + color: inherit; | |
| 72 | +} | |
| 73 | + | |
| 74 | +.sm-radio-group label:hover { | |
| 75 | + color: #416b7e; | |
| 76 | +} | |
| 77 | + | |
| 78 | +.sm-radio-group label:nth-of-type(2) { | |
| 79 | + border-left: 2px solid #57abd5; | |
| 80 | + border-right: 2px solid #57abd5; | |
| 81 | +} | |
| 82 | + | |
| 83 | +[id="customize-control-sm_coloration_level_control"] .sm-radio-group { | |
| 84 | + display: -ms-flexbox; | |
| 85 | + display: flex; | |
| 86 | + -ms-flex-direction: row-reverse; | |
| 87 | + flex-direction: row-reverse; | |
| 88 | + -ms-flex-wrap: nowrap; | |
| 89 | + flex-wrap: nowrap; | |
| 90 | + -ms-flex-align: stretch; | |
| 91 | + align-items: stretch; | |
| 92 | + -ms-flex-pack: start; | |
| 93 | + justify-content: flex-start; | |
| 94 | +} | |
| 95 | + | |
| 96 | +[id="customize-control-sm_coloration_level_control"] .sm-radio-group > * { | |
| 97 | + -ms-flex: 0 0 33.33%; | |
| 98 | + flex: 0 0 33.33%; | |
| 99 | +} | |
| 100 | + | |
| 101 | +[id="customize-control-sm_coloration_level_control"] .sm-radio-group input[type="radio"]:last-of-type:checked + label { | |
| 102 | + background: linear-gradient(90deg, #3DAAE0 0%, #D557BE 100%); | |
| 103 | +} | |
| 104 | + | |
| 105 | +[id="customize-control-sm_coloration_level_control"] .sm-radio-group input[type="radio"]:nth-of-type(1):checked ~ label:last-of-type, [id="customize-control-sm_coloration_level_control"] .sm-radio-group input[type="radio"]:nth-of-type(2):checked ~ label:last-of-type { | |
| 106 | + margin-right: -33.33%; | |
| 107 | +} | |
| 108 | + | |
| 109 | +[id="customize-control-sm_coloration_level_control"] .sm-radio-group label:nth-of-type(1) { | |
| 110 | + -ms-flex-order: 4; | |
| 111 | + order: 4; | |
| 112 | +} | |
| 113 | + | |
| 114 | +[id="customize-control-sm_coloration_level_control"] .sm-radio-group label:nth-of-type(2) { | |
| 115 | + -ms-flex-order: 3; | |
| 116 | + order: 3; | |
| 117 | + border-left: 2px solid #57abd5; | |
| 118 | + border-right: 2px solid #57abd5; | |
| 119 | +} | |
| 120 | + | |
| 121 | +[id="customize-control-sm_coloration_level_control"] .sm-radio-group label:nth-of-type(3) { | |
| 122 | + -ms-flex-order: 2; | |
| 123 | + order: 2; | |
| 124 | +} | |
| 125 | + | |
| 126 | +[id="customize-control-sm_coloration_level_control"] .sm-radio-group label:nth-of-type(4) { | |
| 127 | + -ms-flex-order: 1; | |
| 128 | + order: 1; | |
| 129 | + border-left: 2px solid #57abd5; | |
| 130 | +} | |
| 131 | + | |
| 132 | +[id="sub-accordion-section-sm_color_palettes_section"].sm-view-customize li.customize-control-sm_switch { | |
| 133 | + display: -ms-flexbox !important; | |
| 134 | + display: flex !important; | |
| 135 | + -ms-flex-align: center; | |
| 136 | + align-items: center; | |
| 137 | + -ms-flex-pack: justify; | |
| 138 | + justify-content: space-between; | |
| 139 | + padding-top: 42px; | |
| 140 | + padding-bottom: 42px; | |
| 141 | +} | |
| 142 | + | |
| 143 | +[id="sub-accordion-section-sm_color_palettes_section"].sm-view-customize li.customize-control-sm_switch .customize-control-title, [id="sub-accordion-section-sm_color_palettes_section"].sm-view-customize li.customize-control-sm_switch .separator.label { | |
| 144 | + display: inline-block; | |
| 145 | +} | |
| 146 | + | |
| 147 | +.sm-switch { | |
| 148 | + display: -ms-flexbox; | |
| 149 | + display: flex; | |
| 150 | + -ms-flex-wrap: nowrap; | |
| 151 | + flex-wrap: nowrap; | |
| 152 | + -ms-flex-align: stretch; | |
| 153 | + align-items: stretch; | |
| 154 | + -ms-flex-pack: start; | |
| 155 | + justify-content: flex-start; | |
| 156 | + overflow: hidden; | |
| 157 | + position: relative; | |
| 158 | + height: 2.428em; | |
| 159 | + max-width: 5.5em; | |
| 160 | + border-radius: 999em; | |
| 161 | + color: #ffffff; | |
| 162 | + font-size: 14px; | |
| 163 | + -webkit-font-smoothing: antialiased; | |
| 164 | + font-weight: 600; | |
| 165 | + line-height: 1.142em; | |
| 166 | + z-index: 10; | |
| 167 | +} | |
| 168 | + | |
| 169 | +.sm-switch input[type="radio"] { | |
| 170 | + display: none; | |
| 171 | +} | |
| 172 | + | |
| 173 | +.sm-switch input[type="radio"] + label { | |
| 174 | + display: -ms-flexbox; | |
| 175 | + display: flex; | |
| 176 | + -ms-flex-align: center; | |
| 177 | + align-items: center; | |
| 178 | + -ms-flex: 0 0 100%; | |
| 179 | + flex: 0 0 100%; | |
| 180 | +} | |
| 181 | + | |
| 182 | +.sm-switch input[type="radio"] + label, .sm-switch input[type="radio"] + label:after { | |
| 183 | + transition: all 0.2s ease-out; | |
| 184 | +} | |
| 185 | + | |
| 186 | +.sm-switch input[type="radio"]:checked + label { | |
| 187 | + pointer-events: none; | |
| 188 | +} | |
| 189 | + | |
| 190 | +.sm-switch input[type="radio"]:nth-of-type(1) + label { | |
| 191 | + padding-left: 1.214em; | |
| 192 | +} | |
| 193 | + | |
| 194 | +.sm-switch input[type="radio"]:nth-of-type(1) + label:after { | |
| 195 | + content: ""; | |
| 196 | + position: absolute; | |
| 197 | + top: 0; | |
| 198 | + right: 0; | |
| 199 | + bottom: 0; | |
| 200 | + left: 0; | |
| 201 | + background-color: #57abd5; | |
| 202 | + z-index: -1; | |
| 203 | +} | |
| 204 | + | |
| 205 | +.sm-switch input[type="radio"]:nth-of-type(1):not(:checked) + label { | |
| 206 | + -webkit-transform: translateX(-100%) translateX(2.125em); | |
| 207 | + transform: translateX(-100%) translateX(2.125em); | |
| 208 | +} | |
| 209 | + | |
| 210 | +.sm-switch input[type="radio"]:nth-of-type(1):not(:checked) + label:after { | |
| 211 | + background: #cccccc; | |
| 212 | + -webkit-transform: translateX(100%) translateX(-2.125em); | |
| 213 | + transform: translateX(100%) translateX(-2.125em); | |
| 214 | +} | |
| 215 | + | |
| 216 | +.sm-switch input[type="radio"]:nth-of-type(1):not(:checked) + label ~ label { | |
| 217 | + -webkit-transform: translateX(-100%); | |
| 218 | + transform: translateX(-100%); | |
| 219 | +} | |
| 220 | + | |
| 221 | +.sm-switch input[type="radio"]:nth-of-type(1):checked + label ~ label { | |
| 222 | + -webkit-transform: translateX(-2.4em); | |
| 223 | + transform: translateX(-2.4em); | |
| 224 | +} | |
| 225 | + | |
| 226 | +.sm-switch input[type="radio"]:nth-of-type(1):checked + label ~ label:before { | |
| 227 | + -webkit-transform: translateX(-100%) translateX(2.125em); | |
| 228 | + transform: translateX(-100%) translateX(2.125em); | |
| 229 | +} | |
| 230 | + | |
| 231 | +.sm-switch input[type="radio"]:nth-of-type(2) + label { | |
| 232 | + -ms-flex-direction: row-reverse; | |
| 233 | + flex-direction: row-reverse; | |
| 234 | + padding-right: 1em; | |
| 235 | +} | |
| 236 | + | |
| 237 | +.sm-switch input[type="radio"]:nth-of-type(2) + label:before { | |
| 238 | + content: ""; | |
| 239 | + position: absolute; | |
| 240 | + top: 0; | |
| 241 | + right: 0; | |
| 242 | + bottom: 0; | |
| 243 | + left: 0; | |
| 244 | +} | |
| 245 | + | |
| 246 | +.sm-switch input[type="radio"]:nth-of-type(2) + label:after { | |
| 247 | + content: ""; | |
| 248 | + display: block; | |
| 249 | + height: 2.142em; | |
| 250 | + width: 2.142em; | |
| 251 | + margin-right: auto; | |
| 252 | + margin-left: 0.125em; | |
| 253 | + border-radius: 50%; | |
| 254 | + background-color: #ffffff; | |
| 255 | + box-shadow: 1px 2px 2px 0 rgba(23, 21, 21, 0.15); | |
| 256 | + pointer-events: none; | |
| 257 | +} | |
| 258 | + | |
| 259 | +.wp-full-overlay-sidebar *, .wp-full-overlay-sidebar *:before, .wp-full-overlay-sidebar *:after { | |
| 2 | 260 | box-sizing: border-box; |
| 3 | 261 | } |
| 4 | 262 | |
| 5 | -.accordion-section-content { | |
| 263 | +.iris-picker, | |
| 264 | +.iris-picker * { | |
| 265 | + box-sizing: content-box; | |
| 266 | +} | |
| 267 | + | |
| 268 | +.wp-full-overlay-sidebar-content .accordion-section-content { | |
| 6 | 269 | overflow: visible; |
| 7 | 270 | } |
| 8 | 271 | |
| 9 | 272 | .control-section:not(.control-section-themes) .customize-control { |
| 10 | - padding: 0px; | |
| 273 | + padding: 0; | |
| 11 | 274 | width: 100%; |
| 12 | - min-height: auto; | |
| 275 | + min-height: initial; | |
| 13 | 276 | } |
| 14 | 277 | |
| 15 | -#customize-header-actions { | |
| 16 | - border-bottom: 0; | |
| 278 | +#customize-header-actions #customize-save-button-wrapper { | |
| 279 | + margin-top: 7px; | |
| 17 | 280 | } |
| 18 | 281 | |
| 282 | +.wp-full-overlay-footer .devices button { | |
| 283 | + float: left; | |
| 284 | + border-radius: 0; | |
| 285 | +} | |
| 286 | + | |
| 19 | 287 | .customize-controls-close { |
| 20 | 288 | width: 48px; |
| 289 | + height: 44px; | |
| 290 | + color: #7da9c3; | |
| 291 | + background: #ffffff; | |
| 292 | + border-top: none; | |
| 293 | + border-right-color: #e0e8ef; | |
| 21 | 294 | } |
| 22 | 295 | |
| 296 | +.customize-controls-close:focus, .customize-controls-close:hover { | |
| 297 | + background: #f5fcff; | |
| 298 | +} | |
| 299 | + | |
| 300 | +.customize-controls-close:before { | |
| 301 | + top: 0px; | |
| 302 | +} | |
| 303 | + | |
| 23 | 304 | #customize-controls .customize-info { |
| 24 | - margin-bottom: 0; | |
| 305 | + border-bottom-color: #e0e8ef; | |
| 25 | 306 | } |
| 26 | 307 | |
| 27 | 308 | .customize-panel-back, .customize-section-back { |
| 28 | 309 | height: 74px; |
| 310 | + color: #7da9c3; | |
| 311 | + border-right-color: #e0e8ef; | |
| 29 | 312 | } |
| 30 | 313 | |
| 314 | +.customize-panel-back:hover, .customize-panel-back:focus, .customize-section-back:hover, .customize-section-back:focus { | |
| 315 | + border-left-color: #f5fcff; | |
| 316 | + background: #f5fcff; | |
| 317 | +} | |
| 318 | + | |
| 31 | 319 | #customize-theme-controls .theme * { |
| 32 | 320 | box-sizing: content-box; |
| 33 | 321 | } |
| 34 | 322 | |
| 323 | +#customize-theme-controls .accordion-section-content { | |
| 324 | + padding: 17px; | |
| 325 | +} | |
| 326 | + | |
| 327 | +#customize-theme-controls .customize-section-title { | |
| 328 | + margin-top: -17px; | |
| 329 | + margin-right: -17px; | |
| 330 | +} | |
| 331 | + | |
| 332 | +#customize-theme-controls .control-panel-content .control-section:nth-child(2), | |
| 333 | +#customize-theme-controls .control-panel-content .control-section:nth-child(3) { | |
| 334 | + border-top: none; | |
| 335 | +} | |
| 336 | + | |
| 337 | +#customize-theme-controls #accordion-section-add_menu { | |
| 338 | + border-bottom: none; | |
| 339 | +} | |
| 340 | + | |
| 341 | +#customize-theme-controls #accordion-section-add_menu .add-menu-toggle { | |
| 342 | + float: none; | |
| 343 | +} | |
| 344 | + | |
| 345 | +#customize-theme-controls .customize-pane-child.open { | |
| 346 | + height: 100%; | |
| 347 | +} | |
| 348 | + | |
| 35 | 349 | #customize-controls .description { |
| 36 | - font-size: 13px; | |
| 37 | - color: #88B6CE; | |
| 350 | + font-size: 12px; | |
| 351 | + font-weight: 300; | |
| 352 | + font-style: normal; | |
| 353 | + line-height: 1.6; | |
| 354 | + color: #4d7b90; | |
| 38 | 355 | text-indent: 0; |
| 39 | 356 | } |
| 40 | 357 | |
| 41 | 358 | .customize-control-description { |
| @@ -45,39 +362,72 @@ | ||
| 45 | 362 | .customize-control { |
| 46 | 363 | margin-bottom: 24px; |
| 47 | 364 | } |
| 48 | 365 | |
| 49 | -/** | |
| 50 | - * GENERAL Buttons | |
| 51 | - */ | |
| 52 | -.wp-core-ui .button, .wp-core-ui .button-primary, .wp-core-ui .button-secondary { | |
| 366 | +#accordion-section-themes + .control-section { | |
| 367 | + border-top: none; | |
| 368 | +} | |
| 369 | + | |
| 370 | +#customize-controls .panel-meta.customize-info .accordion-section-title { | |
| 371 | + border-top: none; | |
| 372 | + height: 74px; | |
| 373 | +} | |
| 374 | + | |
| 375 | +.button-controls:after { | |
| 376 | + content: " "; | |
| 377 | + display: table; | |
| 378 | + clear: both; | |
| 379 | +} | |
| 380 | + | |
| 381 | +.wp-core-ui .button:not(.theme-details):not(.collapse-sidebar):not(.wp-color-result), | |
| 382 | +.wp-core-ui .button-primary, | |
| 383 | +.wp-core-ui .button-secondary { | |
| 53 | 384 | width: auto; |
| 54 | - padding: 6px 20px; | |
| 55 | - font-size: 13px; | |
| 385 | + padding-left: 15px; | |
| 386 | + padding-right: 15px; | |
| 56 | 387 | font-weight: 400; |
| 57 | 388 | color: #F5FCFF; |
| 58 | - line-height: 1.4; | |
| 59 | 389 | text-shadow: none; |
| 60 | 390 | border: none; |
| 61 | 391 | background: #AED2E5; |
| 62 | 392 | box-shadow: 0px 2px 0px 0px #8DBED7; |
| 63 | 393 | border-radius: 4px; |
| 64 | - transition: all 0.1s; | |
| 65 | 394 | } |
| 66 | -.wp-core-ui .button:hover, .wp-core-ui .button-primary:hover, .wp-core-ui .button-secondary:hover { | |
| 395 | + | |
| 396 | +.wp-core-ui .button:not(.theme-details):not(.collapse-sidebar):not(.wp-color-result):hover, | |
| 397 | +.wp-core-ui .button-primary:hover, | |
| 398 | +.wp-core-ui .button-secondary:hover { | |
| 67 | 399 | color: white; |
| 68 | 400 | text-shadow: none; |
| 69 | 401 | background: #98C6DD; |
| 70 | 402 | box-shadow: 0px 2px 0px 0px #74A7C2; |
| 71 | 403 | } |
| 72 | -.wp-core-ui .button-primary { | |
| 404 | + | |
| 405 | +.wp-core-ui #customize-header-actions .button-primary { | |
| 73 | 406 | background: #73C5EE; |
| 74 | 407 | box-shadow: 0px 2px 0px 0px #57ABD5; |
| 75 | 408 | } |
| 76 | -.wp-core-ui .button-primary:hover { | |
| 409 | + | |
| 410 | +.wp-core-ui #customize-header-actions .button-primary:hover { | |
| 77 | 411 | background: #58B0DD; |
| 78 | 412 | box-shadow: 0px 2px 0px 0px #3F8AAF; |
| 79 | 413 | } |
| 414 | + | |
| 415 | +.wp-core-ui #customize-header-actions .button-primary.has-next-sibling { | |
| 416 | + border-right: 1px solid #57ABD5; | |
| 417 | +} | |
| 418 | + | |
| 419 | +.wp-core-ui #customize-header-actions .button-primary:disabled { | |
| 420 | + color: white !important; | |
| 421 | + background: #AED2E5 !important; | |
| 422 | + opacity: 0.7; | |
| 423 | + box-shadow: 0px 2px 0px 0px #8db5ca !important; | |
| 424 | +} | |
| 425 | + | |
| 426 | +.wp-core-ui #customize-header-actions .button-primary:disabled.has-next-sibling { | |
| 427 | + border-right: none; | |
| 428 | +} | |
| 429 | + | |
| 80 | 430 | .wp-core-ui .reset_section, |
| 81 | 431 | .wp-core-ui .reset_panel { |
| 82 | 432 | width: 100%; |
| 83 | 433 | height: 4em; |
| @@ -83,30 +433,38 @@ | ||
| 83 | 433 | height: 4em; |
| 84 | 434 | display: block; |
| 85 | 435 | margin: 0px 0 25px; |
| 86 | 436 | } |
| 437 | + | |
| 87 | 438 | .wp-core-ui .reset_panel { |
| 88 | 439 | margin-top: 10px; |
| 89 | 440 | } |
| 90 | 441 | |
| 91 | -/** | |
| 92 | - * Separators Titles | |
| 93 | - */ | |
| 94 | 442 | .separator.label { |
| 95 | 443 | display: block; |
| 96 | 444 | font-size: 14px; |
| 97 | 445 | line-height: 24px; |
| 98 | - font-weight: 600; | |
| 446 | + font-weight: 500; | |
| 99 | 447 | } |
| 100 | 448 | |
| 101 | 449 | .customize-control-title, .separator.label { |
| 102 | - color: #416B7E; | |
| 450 | + color: #2A3B44; | |
| 103 | 451 | } |
| 104 | 452 | |
| 453 | +.separator.section:before, .separator.sub-section:before { | |
| 454 | + content: ""; | |
| 455 | + position: absolute; | |
| 456 | + top: 0; | |
| 457 | + bottom: 0; | |
| 458 | + left: -18px; | |
| 459 | + right: -18px; | |
| 460 | + z-index: -1; | |
| 461 | +} | |
| 462 | + | |
| 105 | 463 | .separator.label { |
| 106 | - margin-bottom: -3px; | |
| 107 | - margin-bottom: -15px; | |
| 464 | + font-weight: 500; | |
| 108 | 465 | } |
| 466 | + | |
| 109 | 467 | .separator.large { |
| 110 | 468 | margin-top: 12px; |
| 111 | 469 | font-size: 16px; |
| 112 | 470 | color: #39474D; |
| @@ -111,8 +469,187 @@ | ||
| 111 | 469 | font-size: 16px; |
| 112 | 470 | color: #39474D; |
| 113 | 471 | } |
| 114 | 472 | |
| 473 | +.separator.section { | |
| 474 | + position: relative; | |
| 475 | + padding: 14px 0; | |
| 476 | + margin-bottom: 0; | |
| 477 | + background: none; | |
| 478 | + border: none; | |
| 479 | +} | |
| 480 | + | |
| 481 | +.separator.section[id*="layout"] { | |
| 482 | + margin-top: 0; | |
| 483 | +} | |
| 484 | + | |
| 485 | +.separator.section[id*="layout"]:before { | |
| 486 | + border: none; | |
| 487 | +} | |
| 488 | + | |
| 489 | +.separator.section:before { | |
| 490 | + border: 1px solid #e0e8ef; | |
| 491 | + background-color: #ffffff; | |
| 492 | + box-shadow: 0px 1px 0px 0px #DFE8EF; | |
| 493 | +} | |
| 494 | + | |
| 495 | +.separator.sub-section { | |
| 496 | + position: relative; | |
| 497 | + padding: 12px 0; | |
| 498 | +} | |
| 499 | + | |
| 500 | +.separator.sub-section:before { | |
| 501 | + border-top: 1px solid #e0e8ef; | |
| 502 | + border-bottom: 1px solid #e0e8ef; | |
| 503 | + background-color: #f6fbff; | |
| 504 | +} | |
| 505 | + | |
| 506 | +.separator.sub-section + span { | |
| 507 | + margin-top: 20px; | |
| 508 | + font-style: normal; | |
| 509 | +} | |
| 510 | + | |
| 511 | +.section-navigation-wrapper { | |
| 512 | + position: relative; | |
| 513 | + height: 43px; | |
| 514 | + margin: -15px -12px 0 -12px; | |
| 515 | + margin-right: -17px; | |
| 516 | + margin-left: -17px; | |
| 517 | +} | |
| 518 | + | |
| 519 | +.section-navigation { | |
| 520 | + display: -ms-flexbox; | |
| 521 | + display: flex; | |
| 522 | + margin-top: -1px; | |
| 523 | + clear: both; | |
| 524 | + border-top: 1px solid #e0e8ef; | |
| 525 | +} | |
| 526 | + | |
| 527 | +.section-navigation a { | |
| 528 | + -ms-flex: 1 1 auto; | |
| 529 | + flex: 1 1 auto; | |
| 530 | + display: block; | |
| 531 | + padding: 12px 0; | |
| 532 | + color: #3b484e; | |
| 533 | + background-color: #ffffff; | |
| 534 | + border-bottom: 1px solid #e0e8ef; | |
| 535 | + border-right: 1px solid #e0e8ef; | |
| 536 | + text-align: center; | |
| 537 | + text-decoration: none; | |
| 538 | + transition: background-color .15s ease-in-out; | |
| 539 | +} | |
| 540 | + | |
| 541 | +.section-navigation a:last-child { | |
| 542 | + border-right: 0; | |
| 543 | +} | |
| 544 | + | |
| 545 | +#customize-controls .customize-info.is-sticky.is-sticky, | |
| 546 | +#customize-controls .customize-section-title.is-sticky.is-sticky { | |
| 547 | + top: 40px; | |
| 548 | +} | |
| 549 | + | |
| 550 | +#customize-controls .customize-info.is-in-view.is-in-view, | |
| 551 | +#customize-controls .customize-section-title.is-in-view.is-in-view { | |
| 552 | + box-shadow: none; | |
| 553 | +} | |
| 554 | + | |
| 555 | +#customize-controls .has-nav .customize-info, | |
| 556 | +#customize-controls .has-nav .customize-section-title { | |
| 557 | + margin-right: -12px; | |
| 558 | +} | |
| 559 | + | |
| 560 | +#customize-controls .customize-section-title.customize-section-title { | |
| 561 | + border-bottom: 0; | |
| 562 | +} | |
| 563 | + | |
| 564 | +.customize-section-description-container.section-meta.has-nav { | |
| 565 | + margin-bottom: 0; | |
| 566 | +} | |
| 567 | + | |
| 568 | +.font-options__wrapper { | |
| 569 | + position: relative; | |
| 570 | +} | |
| 571 | + | |
| 572 | +.font-options__wrapper:after { | |
| 573 | + content: ""; | |
| 574 | + position: absolute; | |
| 575 | + top: 90%; | |
| 576 | + left: 0; | |
| 577 | + right: 0; | |
| 578 | + z-index: 0; | |
| 579 | + display: block; | |
| 580 | + height: 30px; | |
| 581 | +} | |
| 582 | + | |
| 583 | +.font-options__head { | |
| 584 | + display: -ms-flexbox; | |
| 585 | + display: flex; | |
| 586 | + -ms-flex-pack: justify; | |
| 587 | + justify-content: space-between; | |
| 588 | +} | |
| 589 | + | |
| 590 | +.font-options__head.font-options__head { | |
| 591 | + -webkit-appearance: none; | |
| 592 | + text-overflow: ellipsis; | |
| 593 | + white-space: nowrap; | |
| 594 | +} | |
| 595 | + | |
| 596 | +.font-options__font-title { | |
| 597 | + margin-right: 26px; | |
| 598 | + margin-left: 10px; | |
| 599 | + font-size: 12px; | |
| 600 | + line-height: 20px; | |
| 601 | + font-weight: 300; | |
| 602 | + color: #98c6dd; | |
| 603 | + text-overflow: ellipsis; | |
| 604 | + overflow: hidden; | |
| 605 | + white-space: nowrap; | |
| 606 | +} | |
| 607 | + | |
| 608 | +.font-options__options-list { | |
| 609 | + position: absolute; | |
| 610 | + top: calc(100% + 6px); | |
| 611 | + left: -6px; | |
| 612 | + right: -6px; | |
| 613 | + z-index: 2; | |
| 614 | + display: block; | |
| 615 | + padding: 10px; | |
| 616 | + border: 1px solid #dfe8ef; | |
| 617 | + border-radius: 5px; | |
| 618 | + background-color: #ffffff; | |
| 619 | + opacity: 0; | |
| 620 | + display: none; | |
| 621 | + transition: opacity .15s linear; | |
| 622 | +} | |
| 623 | + | |
| 624 | +.font-options__options-list:last-child { | |
| 625 | + margin-bottom: 0; | |
| 626 | +} | |
| 627 | + | |
| 628 | +.font-options__options-list:before, .font-options__options-list:after { | |
| 629 | + content: ""; | |
| 630 | + position: absolute; | |
| 631 | + top: -20px; | |
| 632 | + right: 25px; | |
| 633 | + height: 0; | |
| 634 | + width: 0; | |
| 635 | + border: solid transparent; | |
| 636 | + z-index: 10; | |
| 637 | +} | |
| 638 | + | |
| 639 | +.font-options__options-list:before { | |
| 640 | + border-bottom-color: white; | |
| 641 | + border-width: 10px; | |
| 642 | + z-index: 11; | |
| 643 | +} | |
| 644 | + | |
| 645 | +.font-options__options-list:after { | |
| 646 | + border-bottom-color: rgba(0, 0, 0, 0.075); | |
| 647 | + border-width: 12px; | |
| 648 | + top: -24px; | |
| 649 | + right: 23px; | |
| 650 | +} | |
| 651 | + | |
| 115 | 652 | .customize-control-color .wp-picker-container .wp-picker-open + .wp-picker-input-wrap:after { |
| 116 | 653 | content: ""; |
| 117 | 654 | position: absolute; |
| 118 | 655 | bottom: 100%; |
| @@ -124,27 +661,27 @@ | ||
| 124 | 661 | border-style: solid; |
| 125 | 662 | border-color: transparent transparent #fff transparent; |
| 126 | 663 | } |
| 127 | 664 | |
| 128 | -.customize-control input[type=text], | |
| 129 | -.customize-control input[type=checkbox], | |
| 130 | -.customize-control input[type=password], | |
| 131 | -.customize-control input[type=color], | |
| 132 | -.customize-control input[type=date], | |
| 133 | -.customize-control input[type=datetime], | |
| 134 | -.customize-control input[type=datetime-local], | |
| 135 | -.customize-control input[type=email], | |
| 136 | -.customize-control input[type=month], | |
| 137 | -.customize-control input[type=number], | |
| 138 | -.customize-control input[type=radio], | |
| 139 | -.customize-control input[type=tel], | |
| 140 | -.customize-control input[type=time], | |
| 141 | -.customize-control input[type=url], | |
| 142 | -.customize-control input[type=week], | |
| 143 | -.customize-control input[type=search], | |
| 144 | -.customize-control select, | |
| 145 | -.customize-control textarea, | |
| 146 | -.customize-control input[type="number"].range-value { | |
| 665 | +.font-options__head, .wp-full-overlay-sidebar-content .customize-control input[type=text]:not(#_customize-input-wpcom_custom_css_content_width_control):not(.wp-color-picker), | |
| 666 | +.wp-full-overlay-sidebar-content .customize-control input[type=checkbox], | |
| 667 | +.wp-full-overlay-sidebar-content .customize-control input[type=password], | |
| 668 | +.wp-full-overlay-sidebar-content .customize-control input[type=color], | |
| 669 | +.wp-full-overlay-sidebar-content .customize-control input[type=date], | |
| 670 | +.wp-full-overlay-sidebar-content .customize-control input[type=datetime], | |
| 671 | +.wp-full-overlay-sidebar-content .customize-control input[type=datetime-local], | |
| 672 | +.wp-full-overlay-sidebar-content .customize-control input[type=email], | |
| 673 | +.wp-full-overlay-sidebar-content .customize-control input[type=month], | |
| 674 | +.wp-full-overlay-sidebar-content .customize-control input[type=number], | |
| 675 | +.wp-full-overlay-sidebar-content .customize-control input[type=radio], | |
| 676 | +.wp-full-overlay-sidebar-content .customize-control input[type=tel], | |
| 677 | +.wp-full-overlay-sidebar-content .customize-control input[type=time], | |
| 678 | +.wp-full-overlay-sidebar-content .customize-control input[type=url], | |
| 679 | +.wp-full-overlay-sidebar-content .customize-control input[type=week], | |
| 680 | +.wp-full-overlay-sidebar-content .customize-control input[type=search], | |
| 681 | +.wp-full-overlay-sidebar-content .customize-control select, | |
| 682 | +.wp-full-overlay-sidebar-content .customize-control textarea, | |
| 683 | +.wp-full-overlay-sidebar-content .customize-control input[type="number"].range-value, ul.font-options__options-list .select2-container .select2-selection--single, #customize-theme-controls .select2-container .select2-selection--multiple { | |
| 147 | 684 | width: 100%; |
| 148 | 685 | height: 44px; |
| 149 | 686 | padding: 10px 14px; |
| 150 | 687 | background: #FFFFFF; |
| @@ -154,92 +691,132 @@ | ||
| 154 | 691 | line-height: 1.5; |
| 155 | 692 | color: #416B7E; |
| 156 | 693 | outline: 0; |
| 157 | 694 | } |
| 158 | -.customize-control input[type=text]:focus, | |
| 159 | -.customize-control input[type=checkbox]:focus, | |
| 160 | -.customize-control input[type=password]:focus, | |
| 161 | -.customize-control input[type=color]:focus, | |
| 162 | -.customize-control input[type=date]:focus, | |
| 163 | -.customize-control input[type=datetime]:focus, | |
| 164 | -.customize-control input[type=datetime-local]:focus, | |
| 165 | -.customize-control input[type=email]:focus, | |
| 166 | -.customize-control input[type=month]:focus, | |
| 167 | -.customize-control input[type=number]:focus, | |
| 168 | -.customize-control input[type=radio]:focus, | |
| 169 | -.customize-control input[type=tel]:focus, | |
| 170 | -.customize-control input[type=time]:focus, | |
| 171 | -.customize-control input[type=url]:focus, | |
| 172 | -.customize-control input[type=week]:focus, | |
| 173 | -.customize-control input[type=search]:focus, | |
| 174 | -.customize-control select:focus, | |
| 175 | -.customize-control textarea:focus, | |
| 176 | -.customize-control input[type="number"].range-value:focus { | |
| 695 | + | |
| 696 | +.font-options__head:focus, .wp-full-overlay-sidebar-content .customize-control input[type=text]:focus:not(#_customize-input-wpcom_custom_css_content_width_control):not(.wp-color-picker), | |
| 697 | +.wp-full-overlay-sidebar-content .customize-control input[type=checkbox]:focus, | |
| 698 | +.wp-full-overlay-sidebar-content .customize-control input[type=password]:focus, | |
| 699 | +.wp-full-overlay-sidebar-content .customize-control input[type=color]:focus, | |
| 700 | +.wp-full-overlay-sidebar-content .customize-control input[type=date]:focus, | |
| 701 | +.wp-full-overlay-sidebar-content .customize-control input[type=datetime]:focus, | |
| 702 | +.wp-full-overlay-sidebar-content .customize-control input[type=datetime-local]:focus, | |
| 703 | +.wp-full-overlay-sidebar-content .customize-control input[type=email]:focus, | |
| 704 | +.wp-full-overlay-sidebar-content .customize-control input[type=month]:focus, | |
| 705 | +.wp-full-overlay-sidebar-content .customize-control input[type=number]:focus, | |
| 706 | +.wp-full-overlay-sidebar-content .customize-control input[type=radio]:focus, | |
| 707 | +.wp-full-overlay-sidebar-content .customize-control input[type=tel]:focus, | |
| 708 | +.wp-full-overlay-sidebar-content .customize-control input[type=time]:focus, | |
| 709 | +.wp-full-overlay-sidebar-content .customize-control input[type=url]:focus, | |
| 710 | +.wp-full-overlay-sidebar-content .customize-control input[type=week]:focus, | |
| 711 | +.wp-full-overlay-sidebar-content .customize-control input[type=search]:focus, | |
| 712 | +.wp-full-overlay-sidebar-content .customize-control select:focus, | |
| 713 | +.wp-full-overlay-sidebar-content .customize-control textarea:focus, | |
| 714 | +.wp-full-overlay-sidebar-content .customize-control input[type="number"].range-value:focus, ul.font-options__options-list .select2-container .select2-selection--single:focus, #customize-theme-controls .select2-container .select2-selection--multiple:focus { | |
| 177 | 715 | border-color: #73C5EE; |
| 178 | 716 | box-shadow: none; |
| 179 | 717 | } |
| 180 | -.customize-control input[type=text], | |
| 181 | -.customize-control textarea { | |
| 718 | + | |
| 719 | +.font-options__head, .wp-full-overlay-sidebar-content .customize-control select, ul.font-options__options-list .select2-container .select2-selection--single, #customize-theme-controls .select2-container .select2-selection--multiple { | |
| 720 | + width: 100%; | |
| 721 | + -webkit-appearance: button; | |
| 722 | + -moz-appearance: none; | |
| 723 | + font-weight: 600; | |
| 724 | + background: white url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjE1cHgiIGhlaWdodD0iOXB4IiB2aWV3Qm94PSIwIDAgMTUgOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDxkZWZzPjwvZGVmcz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJDdXN0b21pZnktQ29weS0yIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMjU2LjAwMDAwMCwgLTM4Ni4wMDAwMDApIiBmaWxsPSIjOThDNkRFIj4KICAgICAgICAgICAgPGcgaWQ9IkhlYWRlciIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxLjAwMDAwMCwgNDcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8ZyBpZD0iQ29udGVudCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCA3NS4wMDAwMDApIj4KICAgICAgICAgICAgICAgICAgICA8ZyBpZD0iVGl0bGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjAwMDAwMCwgMjE5LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgICAgICAgICA8ZyBpZD0iRmllbGQtLS1TZWxlY3QtQ29weSI+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZyBpZD0iU2VsZWN0IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjAwMDAwMCwgMjcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTI1NC40ODEyLDE4IEwyNTYsMTkuNTE0IEwyNDguNSwyNyBMMjQxLDE5LjUxNCBMMjQyLjUxODgsMTggTDI0OC41LDIzLjk2NzIgTDI1NC40ODEyLDE4IFoiIGlkPSJQYWdlLTEiPjwvcGF0aD4KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) no-repeat; | |
| 725 | + background-position: right 16px top 16px; | |
| 726 | +} | |
| 727 | + | |
| 728 | +[multiple].font-options__head, .wp-full-overlay-sidebar-content .customize-control select[multiple], ul.font-options__options-list .select2-container [multiple].select2-selection--single, #customize-theme-controls .select2-container [multiple].select2-selection--multiple { | |
| 729 | + background: white; | |
| 730 | +} | |
| 731 | + | |
| 732 | +.wp-full-overlay-sidebar-content .customize-control input[type=text], | |
| 733 | +.wp-full-overlay-sidebar-content .customize-control textarea { | |
| 182 | 734 | font-size: 13px; |
| 183 | 735 | } |
| 184 | -.customize-control textarea { | |
| 736 | + | |
| 737 | +.wp-full-overlay-sidebar-content .customize-control textarea { | |
| 185 | 738 | height: auto; |
| 186 | 739 | } |
| 187 | -.customize-control input[type=checkbox], | |
| 188 | -.customize-control input[type=radio] { | |
| 740 | + | |
| 741 | +.wp-full-overlay-sidebar-content .customize-control input[type=checkbox], | |
| 742 | +.wp-full-overlay-sidebar-content .customize-control input[type=radio] { | |
| 189 | 743 | width: 22px; |
| 190 | 744 | height: 22px; |
| 191 | 745 | } |
| 192 | -.customize-control input[type=checkbox]:checked, | |
| 193 | -.customize-control input[type=radio]:checked { | |
| 746 | + | |
| 747 | +.wp-full-overlay-sidebar-content .customize-control input[type=checkbox]:checked, | |
| 748 | +.wp-full-overlay-sidebar-content .customize-control input[type=radio]:checked { | |
| 194 | 749 | background: #73C5EE; |
| 195 | 750 | border-color: #5AB9E8; |
| 196 | 751 | } |
| 197 | -.customize-control input[type=checkbox]:checked:before, | |
| 198 | -.customize-control input[type=radio]:checked:before { | |
| 752 | + | |
| 753 | +.wp-full-overlay-sidebar-content .customize-control input[type=checkbox]:checked:before, | |
| 754 | +.wp-full-overlay-sidebar-content .customize-control input[type=radio]:checked:before { | |
| 199 | 755 | color: white; |
| 200 | 756 | margin: -1px 0 0 -2px; |
| 201 | 757 | } |
| 202 | -.customize-control.customize-control-checkbox label, .customize-control.customize-control-radio label { | |
| 758 | + | |
| 759 | +.wp-full-overlay-sidebar-content .customize-control .awesome_preset input[type=radio]:checked { | |
| 760 | + background: transparent; | |
| 761 | +} | |
| 762 | + | |
| 763 | +.wp-full-overlay-sidebar-content .customize-control.customize-control-checkbox:not(#customize-control-jetpack_css_mode_control) label:not(:only-of-type), | |
| 764 | +.wp-full-overlay-sidebar-content .customize-control.customize-control-checkbox:not(#customize-control-jetpack_css_mode_control) > .customize-inside-control-row:not(:only-of-type), .wp-full-overlay-sidebar-content .customize-control.customize-control-radio label:not(:only-of-type), | |
| 765 | +.wp-full-overlay-sidebar-content .customize-control.customize-control-radio > .customize-inside-control-row:not(:only-of-type) { | |
| 203 | 766 | margin-left: 30px; |
| 204 | 767 | padding-top: 0; |
| 205 | 768 | padding-bottom: 0; |
| 769 | + display: inline-block; | |
| 770 | + width: calc(49% - 30px); | |
| 206 | 771 | text-indent: -6px; |
| 772 | +} | |
| 773 | + | |
| 774 | +.wp-full-overlay-sidebar-content .customize-control.customize-control-checkbox:not(#customize-control-jetpack_css_mode_control) label, .wp-full-overlay-sidebar-content .customize-control.customize-control-radio label { | |
| 207 | 775 | color: #416B7E; |
| 208 | 776 | } |
| 209 | -.customize-control input[type=radio] { | |
| 777 | + | |
| 778 | +[id*="divider"] + .wp-full-overlay-sidebar-content .customize-control.customize-control-checkbox:not(#customize-control-jetpack_css_mode_control), [id*="divider"] + .wp-full-overlay-sidebar-content .customize-control.customize-control-radio { | |
| 779 | + margin-top: 0; | |
| 780 | +} | |
| 781 | + | |
| 782 | +.wp-full-overlay-sidebar-content .customize-control input[type=radio] { | |
| 210 | 783 | border-radius: 50%; |
| 211 | 784 | } |
| 212 | -.customize-control input[type=radio]:checked:before { | |
| 785 | + | |
| 786 | +.wp-full-overlay-sidebar-content .customize-control input[type=radio]:checked:before { | |
| 213 | 787 | content: none; |
| 214 | 788 | } |
| 215 | -.customize-control.customize-control-radio label { | |
| 789 | + | |
| 790 | +.customize-control-html + .wp-full-overlay-sidebar-content .customize-control.customize-control-checkbox { | |
| 791 | + margin-top: -24px; | |
| 792 | +} | |
| 793 | + | |
| 794 | +.wp-full-overlay-sidebar-content .customize-control.customize-control-radio label, | |
| 795 | +.wp-full-overlay-sidebar-content .customize-control.customize-control-radio .customize-inside-control-row { | |
| 216 | 796 | margin-top: 12px; |
| 217 | 797 | } |
| 218 | -.customize-control select { | |
| 219 | - width: 100%; | |
| 220 | - -webkit-appearance: button; | |
| 221 | - -moz-appearance: none; | |
| 222 | - font-weight: 600; | |
| 223 | - background: white url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjE1cHgiIGhlaWdodD0iOXB4IiB2aWV3Qm94PSIwIDAgMTUgOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDxkZWZzPjwvZGVmcz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJDdXN0b21pZnktQ29weS0yIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMjU2LjAwMDAwMCwgLTM4Ni4wMDAwMDApIiBmaWxsPSIjOThDNkRFIj4KICAgICAgICAgICAgPGcgaWQ9IkhlYWRlciIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxLjAwMDAwMCwgNDcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8ZyBpZD0iQ29udGVudCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCA3NS4wMDAwMDApIj4KICAgICAgICAgICAgICAgICAgICA8ZyBpZD0iVGl0bGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjAwMDAwMCwgMjE5LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgICAgICAgICA8ZyBpZD0iRmllbGQtLS1TZWxlY3QtQ29weSI+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZyBpZD0iU2VsZWN0IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjAwMDAwMCwgMjcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTI1NC40ODEyLDE4IEwyNTYsMTkuNTE0IEwyNDguNSwyNyBMMjQxLDE5LjUxNCBMMjQyLjUxODgsMTggTDI0OC41LDIzLjk2NzIgTDI1NC40ODEyLDE4IFoiIGlkPSJQYWdlLTEiPjwvcGF0aD4KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) no-repeat; | |
| 224 | - background-position: right 16px top 16px; | |
| 798 | + | |
| 799 | +.wp-full-overlay-sidebar-content .customize-control.customize-control-radio#customize-control-changeset_status .customize-inside-control-row { | |
| 800 | + margin-top: 0; | |
| 801 | + text-indent: 0; | |
| 225 | 802 | } |
| 226 | -.customize-control select[multiple] { | |
| 227 | - background: white; | |
| 228 | -} | |
| 229 | -.customize-control input[type="range"] { | |
| 803 | + | |
| 804 | +.wp-full-overlay-sidebar-content .customize-control input[type="range"] { | |
| 230 | 805 | width: 65%; |
| 231 | 806 | } |
| 232 | -.customize-control input[type="range"] { | |
| 807 | + | |
| 808 | +.wp-full-overlay-sidebar-content .customize-control input[type="range"] { | |
| 233 | 809 | position: relative; |
| 234 | 810 | -webkit-appearance: none; |
| 235 | - width: 210px; | |
| 811 | + width: calc(100% - 55px); | |
| 236 | 812 | height: 22px; |
| 237 | 813 | overflow: hidden; |
| 238 | 814 | outline: none; |
| 239 | 815 | background: none; |
| 240 | 816 | } |
| 241 | -.customize-control input[type="range"]:before { | |
| 817 | + | |
| 818 | +.wp-full-overlay-sidebar-content .customize-control input[type="range"]:before { | |
| 242 | 819 | content: " "; |
| 243 | 820 | position: absolute; |
| 244 | 821 | top: 8px; |
| 245 | 822 | left: 0; |
| @@ -248,9 +825,10 @@ | ||
| 248 | 825 | background: #DFE8EF; |
| 249 | 826 | box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.3); |
| 250 | 827 | border-radius: 10px; |
| 251 | 828 | } |
| 252 | -.customize-control input[type="range"]::-webkit-slider-thumb { | |
| 829 | + | |
| 830 | +.wp-full-overlay-sidebar-content .customize-control input[type="range"]::-webkit-slider-thumb { | |
| 253 | 831 | -webkit-appearance: none; |
| 254 | 832 | width: 22px; |
| 255 | 833 | height: 22px; |
| 256 | 834 | background: #27ae60; |
| @@ -259,9 +837,10 @@ | ||
| 259 | 837 | background: #FFFFFF; |
| 260 | 838 | border: 2px solid #B8DAEB; |
| 261 | 839 | border-radius: 4px; |
| 262 | 840 | } |
| 263 | -.customize-control input[type="range"]::-webkit-slider-thumb:before { | |
| 841 | + | |
| 842 | +.wp-full-overlay-sidebar-content .customize-control input[type="range"]::-webkit-slider-thumb:before { | |
| 264 | 843 | content: ".."; |
| 265 | 844 | position: absolute; |
| 266 | 845 | left: 5px; |
| 267 | 846 | top: -5px; |
| @@ -268,11 +847,12 @@ | ||
| 268 | 847 | color: #B8DAEB; |
| 269 | 848 | font-size: 1em; |
| 270 | 849 | letter-spacing: 1px; |
| 271 | 850 | } |
| 272 | -.customize-control input[type="range"]::-webkit-slider-thumb:after { | |
| 851 | + | |
| 852 | +.wp-full-overlay-sidebar-content .customize-control input[type="range"]::-webkit-slider-thumb:after { | |
| 273 | 853 | content: " "; |
| 274 | - width: 210px; | |
| 854 | + width: calc(100% - 55px); | |
| 275 | 855 | height: 6px; |
| 276 | 856 | position: absolute; |
| 277 | 857 | z-index: 1; |
| 278 | 858 | right: 20px; |
| @@ -278,9 +858,10 @@ | ||
| 278 | 858 | right: 20px; |
| 279 | 859 | top: 6px; |
| 280 | 860 | background: #73C5EE; |
| 281 | 861 | } |
| 282 | -.customize-control input[type="number"].range-value { | |
| 862 | + | |
| 863 | +.wp-full-overlay-sidebar-content .customize-control input[type="number"].range-value { | |
| 283 | 864 | min-width: 40px; |
| 284 | 865 | max-width: 80px; |
| 285 | 866 | width: auto; |
| 286 | 867 | height: 30px; |
| @@ -291,10 +872,11 @@ | ||
| 291 | 872 | font-size: 13px; |
| 292 | 873 | line-height: 1; |
| 293 | 874 | text-align: center; |
| 294 | 875 | } |
| 295 | -.customize-control input[type=number]::-webkit-inner-spin-button, | |
| 296 | -.customize-control input[type=number]::-webkit-outer-spin-button { | |
| 876 | + | |
| 877 | +.wp-full-overlay-sidebar-content .customize-control input[type=number]::-webkit-inner-spin-button, | |
| 878 | +.wp-full-overlay-sidebar-content .customize-control input[type=number]::-webkit-outer-spin-button { | |
| 297 | 879 | -webkit-appearance: none; |
| 298 | 880 | margin: 0; |
| 299 | 881 | } |
| 300 | 882 | |
| @@ -300,19 +882,43 @@ | ||
| 300 | 882 | |
| 301 | 883 | .customize-control-color { |
| 302 | 884 | display: block; |
| 303 | 885 | } |
| 886 | + | |
| 304 | 887 | .customize-control-color .customize-control-title, .customize-control-color .separator.label { |
| 305 | 888 | float: left; |
| 306 | 889 | } |
| 890 | + | |
| 307 | 891 | .customize-control-color .wp-picker-container { |
| 308 | 892 | position: relative; |
| 309 | 893 | float: right; |
| 310 | 894 | top: -3px; |
| 311 | 895 | } |
| 896 | + | |
| 312 | 897 | .customize-control-color .wp-picker-container .wp-picker-holder { |
| 313 | 898 | position: relative; |
| 314 | 899 | } |
| 900 | + | |
| 901 | +.customize-control-color .wp-picker-container .wp-color-result, | |
| 902 | +.customize-control-color .wp-picker-container .wp-color-result.button { | |
| 903 | + top: 0; | |
| 904 | + height: 30px; | |
| 905 | + width: 40px; | |
| 906 | + margin: 0; | |
| 907 | + padding: 0; | |
| 908 | + border-radius: 4px; | |
| 909 | + background: #2ECC71; | |
| 910 | + border: 2px solid #B8DAEB; | |
| 911 | + box-shadow: none; | |
| 912 | +} | |
| 913 | + | |
| 914 | +.customize-control-color .wp-picker-container .wp-color-result:after, | |
| 915 | +.customize-control-color .wp-picker-container .wp-color-result .wp-color-result-text, | |
| 916 | +.customize-control-color .wp-picker-container .wp-color-result.button:after, | |
| 917 | +.customize-control-color .wp-picker-container .wp-color-result.button .wp-color-result-text { | |
| 918 | + display: none; | |
| 919 | +} | |
| 920 | + | |
| 315 | 921 | .customize-control-color .wp-picker-container .iris-picker { |
| 316 | 922 | position: absolute; |
| 317 | 923 | top: 40px; |
| 318 | 924 | right: 0; |
| @@ -323,22 +929,30 @@ | ||
| 323 | 929 | border-radius: 0 0 3px 3px; |
| 324 | 930 | border: none; |
| 325 | 931 | background: white; |
| 326 | 932 | } |
| 933 | + | |
| 934 | +.customize-control-color .wp-picker-container .iris-picker, .customize-control-color .wp-picker-container .iris-picker * { | |
| 935 | + box-sizing: content-box; | |
| 936 | +} | |
| 937 | + | |
| 327 | 938 | .customize-control-color .wp-picker-container .iris-picker .iris-square { |
| 328 | 939 | width: 215px !important; |
| 329 | 940 | height: 173px !important; |
| 330 | 941 | margin-right: 0; |
| 331 | 942 | } |
| 943 | + | |
| 332 | 944 | .customize-control-color .wp-picker-container .iris-picker .iris-strip { |
| 333 | 945 | float: right; |
| 334 | 946 | box-shadow: rgba(0, 0, 0, 0.4) 0 1px 1px inset; |
| 335 | 947 | } |
| 948 | + | |
| 336 | 949 | .customize-control-color .wp-picker-container .iris-picker .iris-strip .ui-slider-handle { |
| 337 | 950 | border-color: #aaa !important; |
| 338 | 951 | opacity: 1; |
| 339 | 952 | box-shadow: none; |
| 340 | 953 | } |
| 954 | + | |
| 341 | 955 | .customize-control-color .wp-picker-container .iris-picker .iris-palette { |
| 342 | 956 | width: 24px !important; |
| 343 | 957 | height: 24px !important; |
| 344 | 958 | border-radius: 50px; |
| @@ -343,8 +957,9 @@ | ||
| 343 | 957 | height: 24px !important; |
| 344 | 958 | border-radius: 50px; |
| 345 | 959 | box-shadow: rgba(0, 0, 0, 0.4) 0 1px 1px inset; |
| 346 | 960 | } |
| 961 | + | |
| 347 | 962 | .customize-control-color .wp-picker-container .wp-picker-open + .wp-picker-input-wrap { |
| 348 | 963 | position: absolute; |
| 349 | 964 | z-index: 1000; |
| 350 | 965 | top: 35px; |
| @@ -354,8 +969,9 @@ | ||
| 354 | 969 | background: white; |
| 355 | 970 | border: none; |
| 356 | 971 | border-radius: 3px 3px 0 0; |
| 357 | 972 | } |
| 973 | + | |
| 358 | 974 | .customize-control-color .wp-picker-container .wp-picker-open + .wp-picker-input-wrap input.wp-color-picker { |
| 359 | 975 | float: left; |
| 360 | 976 | width: 100px; |
| 361 | 977 | font-size: 13px; |
| @@ -363,37 +979,30 @@ | ||
| 363 | 979 | margin: 0; |
| 364 | 980 | padding: 6px 12px; |
| 365 | 981 | height: auto; |
| 366 | 982 | } |
| 983 | + | |
| 367 | 984 | .customize-control-color .wp-picker-container .wp-picker-open + .wp-picker-input-wrap input.button { |
| 368 | 985 | float: right; |
| 369 | 986 | padding: 4px 12px; |
| 370 | 987 | height: 30px; |
| 371 | 988 | } |
| 372 | -.customize-control-color .wp-color-result { | |
| 373 | - top: 0; | |
| 374 | - height: 30px; | |
| 375 | - width: 40px; | |
| 376 | - margin: 0; | |
| 377 | - padding: 0; | |
| 378 | - border-radius: 4px; | |
| 379 | - background: #2ECC71; | |
| 380 | - border: 2px solid #B8DAEB; | |
| 381 | - box-shadow: none; | |
| 989 | + | |
| 990 | +.customize-control-font:last-child { | |
| 991 | + margin-bottom: 150px; | |
| 382 | 992 | } |
| 383 | -.customize-control-color .wp-color-result:after { | |
| 384 | - display: none; | |
| 385 | -} | |
| 386 | 993 | |
| 387 | 994 | #accordion-section-live_css_edit_section .customize-section-title { |
| 388 | 995 | margin-top: -13px; |
| 389 | 996 | border-bottom: 1px solid #ddd; |
| 390 | 997 | } |
| 998 | + | |
| 391 | 999 | #accordion-section-live_css_edit_section #css_editor { |
| 392 | 1000 | top: 70px; |
| 393 | 1001 | border-top: 10px solid white; |
| 394 | 1002 | overflow: visible; |
| 395 | 1003 | } |
| 1004 | + | |
| 396 | 1005 | #accordion-section-live_css_edit_section #css_editor:before { |
| 397 | 1006 | content: ""; |
| 398 | 1007 | width: 48px; |
| 399 | 1008 | height: 10px; |
| @@ -403,8 +1012,9 @@ | ||
| 403 | 1012 | position: absolute; |
| 404 | 1013 | z-index: 10000000; |
| 405 | 1014 | left: 0; |
| 406 | 1015 | } |
| 1016 | + | |
| 407 | 1017 | #accordion-section-live_css_edit_section .ace_scroller { |
| 408 | 1018 | padding-left: 10px; |
| 409 | 1019 | } |
| 410 | 1020 | |
| @@ -410,11 +1020,13 @@ | ||
| 410 | 1020 | |
| 411 | 1021 | .wp-full-overlay.editor_opened { |
| 412 | 1022 | margin-left: 500px; |
| 413 | 1023 | } |
| 1024 | + | |
| 414 | 1025 | .wp-full-overlay.editor_opened #customize-controls { |
| 415 | 1026 | width: 500px; |
| 416 | 1027 | } |
| 1028 | + | |
| 417 | 1029 | .wp-full-overlay.editor_opened.collapsed #customize-controls { |
| 418 | 1030 | width: 300px; |
| 419 | 1031 | } |
| 420 | 1032 | |
| @@ -426,8 +1038,9 @@ | ||
| 426 | 1038 | background: #F5FCFF; |
| 427 | 1039 | border: 2px solid #B8DAEB; |
| 428 | 1040 | border-radius: 4px; |
| 429 | 1041 | } |
| 1042 | + | |
| 430 | 1043 | .customize-control-media .current .container, .customize-control-media .current span, |
| 431 | 1044 | .customize-control-site_icon .current .container, |
| 432 | 1045 | .customize-control-site_icon .current span, |
| 433 | 1046 | li#customize-control-site_logo .current .container, |
| @@ -433,8 +1046,9 @@ | ||
| 433 | 1046 | li#customize-control-site_logo .current .container, |
| 434 | 1047 | li#customize-control-site_logo .current span { |
| 435 | 1048 | border: none; |
| 436 | 1049 | } |
| 1050 | + | |
| 437 | 1051 | .customize-control-media .inner, .customize-control-media .current span, |
| 438 | 1052 | .customize-control-site_icon .inner, |
| 439 | 1053 | .customize-control-site_icon .current span, |
| 440 | 1054 | li#customize-control-site_logo .inner, |
| @@ -441,13 +1055,15 @@ | ||
| 441 | 1055 | li#customize-control-site_logo .current span { |
| 442 | 1056 | font-size: 13px; |
| 443 | 1057 | color: #98C6DD; |
| 444 | 1058 | } |
| 1059 | + | |
| 445 | 1060 | .customize-control-media .inner, |
| 446 | 1061 | .customize-control-site_icon .inner, |
| 447 | 1062 | li#customize-control-site_logo .inner { |
| 448 | 1063 | line-height: 1.4; |
| 449 | 1064 | } |
| 1065 | + | |
| 450 | 1066 | .customize-control-media .thumbnail-image, |
| 451 | 1067 | .customize-control-site_icon .thumbnail-image, |
| 452 | 1068 | li#customize-control-site_logo .thumbnail-image { |
| 453 | 1069 | padding: 14px; |
| @@ -452,13 +1068,15 @@ | ||
| 452 | 1068 | li#customize-control-site_logo .thumbnail-image { |
| 453 | 1069 | padding: 14px; |
| 454 | 1070 | text-align: center; |
| 455 | 1071 | } |
| 1072 | + | |
| 456 | 1073 | .customize-control-media .thumbnail-image img, |
| 457 | 1074 | .customize-control-site_icon .thumbnail-image img, |
| 458 | 1075 | li#customize-control-site_logo .thumbnail-image img { |
| 459 | 1076 | width: auto; |
| 460 | 1077 | } |
| 1078 | + | |
| 461 | 1079 | .customize-control-media .actions, |
| 462 | 1080 | .customize-control-site_icon .actions, |
| 463 | 1081 | li#customize-control-site_logo .actions { |
| 464 | 1082 | margin-bottom: 0; |
| @@ -463,25 +1081,21 @@ | ||
| 463 | 1081 | li#customize-control-site_logo .actions { |
| 464 | 1082 | margin-bottom: 0; |
| 465 | 1083 | } |
| 466 | 1084 | |
| 467 | -/** | |
| 468 | - * Typography | |
| 469 | - */ | |
| 470 | -.customize-control-typography select { | |
| 1085 | +.customize-control-typography select, .customize-control-typography select { | |
| 471 | 1086 | margin-bottom: 10px; |
| 472 | 1087 | } |
| 473 | -.customize-control-typography .description { | |
| 1088 | + | |
| 1089 | +.customize-control-typography .description, .customize-control-typography .description { | |
| 474 | 1090 | margin-top: -3px; |
| 475 | 1091 | } |
| 476 | -.customize-control-typography ul li { | |
| 1092 | + | |
| 1093 | +.customize-control-typography ul li, .customize-control-typography ul li { | |
| 477 | 1094 | width: 100%; |
| 478 | 1095 | margin: 0; |
| 479 | 1096 | } |
| 480 | 1097 | |
| 481 | -/** | |
| 482 | - ** Awesome presets | |
| 483 | - */ | |
| 484 | 1098 | .default-preset-button { |
| 485 | 1099 | background-color: #F5F6F6; |
| 486 | 1100 | float: right; |
| 487 | 1101 | padding: 1px 8px; |
| @@ -505,8 +1119,9 @@ | ||
| 505 | 1119 | position: relative; |
| 506 | 1120 | overflow: hidden; |
| 507 | 1121 | height: auto; |
| 508 | 1122 | } |
| 1123 | + | |
| 509 | 1124 | .customify_preset.radio_buttons .customify_radio_button input[type="radio"] { |
| 510 | 1125 | opacity: 0; |
| 511 | 1126 | width: 100%; |
| 512 | 1127 | height: 100%; |
| @@ -512,27 +1127,33 @@ | ||
| 512 | 1127 | height: 100%; |
| 513 | 1128 | position: absolute; |
| 514 | 1129 | z-index: 9999; |
| 515 | 1130 | } |
| 1131 | + | |
| 516 | 1132 | .customify_preset.radio_buttons .customify_radio_button input[type="radio"]:checked + label { |
| 517 | 1133 | background-color: #ebebeb; |
| 518 | 1134 | } |
| 1135 | + | |
| 519 | 1136 | .customify_preset.radio_buttons .customify_radio_button input[type="radio"]:checked + label:before { |
| 520 | 1137 | content: '>'; |
| 521 | 1138 | color: inherit; |
| 522 | 1139 | } |
| 1140 | + | |
| 523 | 1141 | .customify_preset.radio_buttons .customify_radio_button input[type="radio"]:checked + label:after { |
| 524 | 1142 | content: '<'; |
| 525 | 1143 | color: inherit; |
| 526 | 1144 | } |
| 1145 | + | |
| 527 | 1146 | .customify_preset.radio_buttons .customify_radio_button input[type="radio"]:checked:before { |
| 528 | 1147 | opacity: 0; |
| 529 | 1148 | } |
| 1149 | + | |
| 530 | 1150 | .customify_preset.radio_buttons .customify_radio_button label { |
| 531 | 1151 | position: relative; |
| 532 | 1152 | z-index: 999; |
| 533 | 1153 | border-left: 4px solid; |
| 534 | 1154 | } |
| 1155 | + | |
| 535 | 1156 | .customify_preset .awesome_preset { |
| 536 | 1157 | width: 45%; |
| 537 | 1158 | position: relative; |
| 538 | 1159 | display: inline-block; |
| @@ -541,11 +1162,13 @@ | ||
| 541 | 1162 | margin-top: 5px; |
| 542 | 1163 | margin-bottom: 25px; |
| 543 | 1164 | transition: all 0.2s; |
| 544 | 1165 | } |
| 1166 | + | |
| 545 | 1167 | .customify_preset .awesome_preset:hover { |
| 546 | 1168 | opacity: 0.9; |
| 547 | 1169 | } |
| 1170 | + | |
| 548 | 1171 | .customify_preset .awesome_preset:before { |
| 549 | 1172 | content: ''; |
| 550 | 1173 | position: absolute; |
| 551 | 1174 | top: 1px; |
| @@ -557,13 +1180,15 @@ | ||
| 557 | 1180 | opacity: .5; |
| 558 | 1181 | border-radius: 4px; |
| 559 | 1182 | z-index: 5; |
| 560 | 1183 | } |
| 1184 | + | |
| 561 | 1185 | .customify_preset .awesome_preset .preset-wrap .preset-color { |
| 562 | 1186 | height: 128px; |
| 563 | 1187 | border-radius: 4px 4px 0 0; |
| 564 | 1188 | padding: 17px 0 27px; |
| 565 | 1189 | } |
| 1190 | + | |
| 566 | 1191 | .customify_preset .awesome_preset .preset-wrap .preset-color .first-font { |
| 567 | 1192 | display: inline-block; |
| 568 | 1193 | width: 100%; |
| 569 | 1194 | font-size: 55px; |
| @@ -568,8 +1193,9 @@ | ||
| 568 | 1193 | width: 100%; |
| 569 | 1194 | font-size: 55px; |
| 570 | 1195 | line-height: 1; |
| 571 | 1196 | } |
| 1197 | + | |
| 572 | 1198 | .customify_preset .awesome_preset .preset-wrap .preset-color .secondary-font { |
| 573 | 1199 | display: inline-block; |
| 574 | 1200 | width: 100%; |
| 575 | 1201 | font-size: 20px; |
| @@ -575,8 +1201,9 @@ | ||
| 575 | 1201 | font-size: 20px; |
| 576 | 1202 | line-height: 1; |
| 577 | 1203 | margin-top: 8px; |
| 578 | 1204 | } |
| 1205 | + | |
| 579 | 1206 | .customify_preset .awesome_preset .preset-wrap .preset-name { |
| 580 | 1207 | position: relative; |
| 581 | 1208 | font-size: 11px; |
| 582 | 1209 | text-transform: UPPERCASE; |
| @@ -582,8 +1209,9 @@ | ||
| 582 | 1209 | text-transform: UPPERCASE; |
| 583 | 1210 | border-radius: 0 0 4px 4px; |
| 584 | 1211 | padding: 1px; |
| 585 | 1212 | } |
| 1213 | + | |
| 586 | 1214 | .customify_preset .awesome_preset .preset-wrap .preset-name:before { |
| 587 | 1215 | content: ''; |
| 588 | 1216 | position: absolute; |
| 589 | 1217 | border-color: inherit; |
| @@ -594,11 +1222,13 @@ | ||
| 594 | 1222 | top: -10px; |
| 595 | 1223 | border-bottom-color: inherit; |
| 596 | 1224 | left: 40%; |
| 597 | 1225 | } |
| 1226 | + | |
| 598 | 1227 | .customify_preset .awesome_preset:nth-child(odd) { |
| 599 | 1228 | margin-right: 7%; |
| 600 | 1229 | } |
| 1230 | + | |
| 601 | 1231 | .customify_preset .awesome_preset input[type=radio] { |
| 602 | 1232 | height: 100%; |
| 603 | 1233 | width: 100%; |
| 604 | 1234 | position: absolute; |
| @@ -612,8 +1242,9 @@ | ||
| 612 | 1242 | top: 0; |
| 613 | 1243 | left: 0; |
| 614 | 1244 | z-index: 10; |
| 615 | 1245 | } |
| 1246 | + | |
| 616 | 1247 | .customify_preset .awesome_preset input[type=radio]:checked:before { |
| 617 | 1248 | position: absolute; |
| 618 | 1249 | height: 25px; |
| 619 | 1250 | width: 25px; |
| @@ -621,8 +1252,9 @@ | ||
| 621 | 1252 | right: -14px; |
| 622 | 1253 | background: #FFF; |
| 623 | 1254 | z-index: 1; |
| 624 | 1255 | } |
| 1256 | + | |
| 625 | 1257 | .customify_preset .awesome_preset input[type=radio]:checked:after { |
| 626 | 1258 | -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; |
| 627 | 1259 | filter: alpha(opacity=0); |
| 628 | 1260 | content: ''; |
| @@ -639,8 +1271,9 @@ | ||
| 639 | 1271 | |
| 640 | 1272 | .customify_radio_image { |
| 641 | 1273 | display: inline-block; |
| 642 | 1274 | } |
| 1275 | + | |
| 643 | 1276 | .customify_radio_image label { |
| 644 | 1277 | display: block; |
| 645 | 1278 | float: left; |
| 646 | 1279 | margin-right: 10px; |
| @@ -645,8 +1278,9 @@ | ||
| 645 | 1278 | float: left; |
| 646 | 1279 | margin-right: 10px; |
| 647 | 1280 | position: relative; |
| 648 | 1281 | } |
| 1282 | + | |
| 649 | 1283 | .customify_radio_image label input[type=radio] { |
| 650 | 1284 | position: absolute; |
| 651 | 1285 | top: 0; |
| 652 | 1286 | bottom: 0; |
| @@ -655,12 +1289,14 @@ | ||
| 655 | 1289 | width: 100%; |
| 656 | 1290 | height: 100%; |
| 657 | 1291 | visibility: hidden; |
| 658 | 1292 | } |
| 1293 | + | |
| 659 | 1294 | .customify_radio_image label input[type=radio] img { |
| 660 | 1295 | cursor: pointer; |
| 661 | 1296 | border: 2px solid transparent; |
| 662 | 1297 | } |
| 1298 | + | |
| 663 | 1299 | .customify_radio_image label input[type=radio]:checked + img { |
| 664 | 1300 | border: 3px solid #73C5EE; |
| 665 | 1301 | } |
| 666 | 1302 | |
| @@ -672,18 +1308,22 @@ | ||
| 672 | 1308 | |
| 673 | 1309 | .customize-control-custom_background .hide { |
| 674 | 1310 | display: none; |
| 675 | 1311 | } |
| 1312 | + | |
| 676 | 1313 | .customize-control-custom_background .upload_button_div { |
| 677 | 1314 | margin: 10px 0; |
| 678 | 1315 | } |
| 1316 | + | |
| 679 | 1317 | .customize-control-custom_background .upload_button_div > * { |
| 680 | 1318 | margin-right: 10px; |
| 681 | 1319 | } |
| 1320 | + | |
| 682 | 1321 | .customize-control-custom_background .preview_screenshot { |
| 683 | 1322 | text-align: center; |
| 684 | 1323 | margin: 10px 0; |
| 685 | 1324 | } |
| 1325 | + | |
| 686 | 1326 | .customize-control-custom_background .preview_screenshot img { |
| 687 | 1327 | border: 2px solid #ccc; |
| 688 | 1328 | } |
| 689 | 1329 | |
| @@ -700,14 +1340,17 @@ | ||
| 700 | 1340 | margin: 5px; |
| 701 | 1341 | width: 100%; |
| 702 | 1342 | display: inline-block; |
| 703 | 1343 | } |
| 1344 | + | |
| 704 | 1345 | .import_step_note:before { |
| 705 | 1346 | content: "\1F449"; |
| 706 | 1347 | } |
| 1348 | + | |
| 707 | 1349 | .import_step_note.success:before { |
| 708 | 1350 | content: "\1F44D"; |
| 709 | 1351 | } |
| 1352 | + | |
| 710 | 1353 | .import_step_note.failed:before { |
| 711 | 1354 | content: "\274C"; |
| 712 | 1355 | } |
| 713 | 1356 | |
| @@ -712,59 +1355,77 @@ | ||
| 712 | 1355 | } |
| 713 | 1356 | |
| 714 | 1357 | #customize-header-actions { |
| 715 | 1358 | background: #ffffff; |
| 716 | - border-color: #dfe8ef; | |
| 1359 | + border-color: #e0e8ef; | |
| 717 | 1360 | } |
| 718 | 1361 | |
| 719 | -.customize-controls-close { | |
| 720 | - color: #7da9c3; | |
| 721 | - background: #ffffff; | |
| 722 | - border-color: #dfe8ef; | |
| 1362 | +.wp-full-overlay-sidebar, | |
| 1363 | +.customize-themes-panel, | |
| 1364 | +#customize-sidebar-outer-content { | |
| 1365 | + background: #F7F9FA; | |
| 1366 | + border-right: 1px solid #e0e8ef; | |
| 723 | 1367 | } |
| 724 | -.customize-controls-close:focus, .customize-controls-close:hover { | |
| 725 | - background: #f5fcff; | |
| 726 | -} | |
| 727 | 1368 | |
| 728 | -.wp-full-overlay-sidebar, | |
| 729 | -.customize-themes-panel { | |
| 730 | - background: #eaf9fe; | |
| 731 | - border-right: 1px solid #dfe8ef; | |
| 1369 | +.outer-section-open #customize-controls .wp-full-overlay-sidebar-content, | |
| 1370 | +.attachment-media-view, .media-widget-preview.media_audio, .media-widget-preview.media_image { | |
| 1371 | + background: #F7F9FA; | |
| 732 | 1372 | } |
| 733 | 1373 | |
| 734 | 1374 | #customize-theme-controls #accordion-section-menu_locations { |
| 735 | - border-bottom: 1px solid #dfe8ef; | |
| 1375 | + border-bottom: 1px solid #e0e8ef; | |
| 736 | 1376 | } |
| 737 | 1377 | |
| 738 | 1378 | #customize-controls #accordion-section-themes > .accordion-section-title { |
| 739 | 1379 | font-weight: 600; |
| 740 | - border-bottom: 1px solid #dfe8ef; | |
| 1380 | + border-bottom: 1px solid #e0e8ef; | |
| 741 | 1381 | } |
| 1382 | + | |
| 742 | 1383 | #customize-controls #accordion-section-themes > .accordion-section-title:hover { |
| 743 | 1384 | background: #fff; |
| 744 | 1385 | } |
| 1386 | + | |
| 745 | 1387 | #customize-controls .panel-meta.customize-info { |
| 746 | - border-bottom: none; | |
| 1388 | + border-bottom-color: #e0e8ef; | |
| 747 | 1389 | } |
| 748 | 1390 | |
| 749 | 1391 | #customize-theme-controls .control-section .accordion-section-title { |
| 750 | 1392 | font-weight: 400; |
| 751 | - border-top: 1px solid #dfe8ef; | |
| 1393 | + border-top: 1px solid #e0e8ef; | |
| 752 | 1394 | border-bottom: none; |
| 753 | 1395 | } |
| 1396 | + | |
| 754 | 1397 | #customize-theme-controls .control-section:last-of-type > .accordion-section-title { |
| 755 | - border-bottom: 1px solid #dfe8ef; | |
| 1398 | + border-bottom: 1px solid #e0e8ef; | |
| 756 | 1399 | } |
| 1400 | + | |
| 757 | 1401 | #customize-theme-controls .customize-section-title { |
| 758 | - border-top: 1px solid #dfe8ef; | |
| 759 | - border-bottom: 1px solid #dfe8ef; | |
| 1402 | + border-top: 1px solid #e0e8ef; | |
| 1403 | + border-bottom: 1px solid #e0e8ef; | |
| 760 | 1404 | } |
| 761 | 1405 | |
| 762 | 1406 | #customize-controls .control-section .accordion-section-title:focus, #customize-controls .control-section .accordion-section-title:hover, #customize-controls .control-section.open .accordion-section-title, #customize-controls .control-section:hover > .accordion-section-title { |
| 763 | 1407 | color: #056184; |
| 764 | 1408 | background: #f5fcff; |
| 1409 | + border-left-color: #f5fcff; | |
| 765 | 1410 | } |
| 766 | 1411 | |
| 1412 | +.wp-customizer { | |
| 1413 | + /* SECTION: NAV MENUS */ | |
| 1414 | +} | |
| 1415 | + | |
| 1416 | +.wp-customizer .menu-item-edit-active .menu-item-handle, .wp-customizer .section-open .menu-item-settings, .wp-customizer .menu-item-bar .menu-item-handle:hover { | |
| 1417 | + border-color: #e0e8ef; | |
| 1418 | +} | |
| 1419 | + | |
| 1420 | +.wp-customizer .section-open .menu-item-settings { | |
| 1421 | + background: #f5fcff; | |
| 1422 | +} | |
| 1423 | + | |
| 1424 | +.wp-customizer .control-section-nav_menu .menu-location-settings { | |
| 1425 | + border-top-color: #e0e8ef !important; | |
| 1426 | +} | |
| 1427 | + | |
| 767 | 1428 | [data-balloon] { |
| 768 | 1429 | position: relative; |
| 769 | 1430 | } |
| 770 | 1431 | |
| @@ -804,10 +1465,12 @@ | ||
| 804 | 1465 | [data-balloon][data-balloon-pos="up"]::before { |
| 805 | 1466 | bottom: 100%; |
| 806 | 1467 | left: 50%; |
| 807 | 1468 | margin-bottom: 11px; |
| 808 | - transform: translate3d(-50%, 10px, 0); | |
| 809 | - transform-origin: top; | |
| 1469 | + -webkit-transform: translate3d(-50%, 10px, 0); | |
| 1470 | + transform: translate3d(-50%, 10px, 0); | |
| 1471 | + -webkit-transform-origin: top; | |
| 1472 | + transform-origin: top; | |
| 810 | 1473 | } |
| 811 | 1474 | |
| 812 | 1475 | [data-balloon][data-balloon-pos="up"]::after { |
| 813 | 1476 | bottom: 100%; |
| @@ -812,18 +1475,22 @@ | ||
| 812 | 1475 | [data-balloon][data-balloon-pos="up"]::after { |
| 813 | 1476 | bottom: 100%; |
| 814 | 1477 | left: 50%; |
| 815 | 1478 | margin-bottom: 5px; |
| 816 | - transform: translate3d(-50%, 10px, 0); | |
| 817 | - transform-origin: top; | |
| 1479 | + -webkit-transform: translate3d(-50%, 10px, 0); | |
| 1480 | + transform: translate3d(-50%, 10px, 0); | |
| 1481 | + -webkit-transform-origin: top; | |
| 1482 | + transform-origin: top; | |
| 818 | 1483 | } |
| 819 | 1484 | |
| 820 | 1485 | [data-balloon][data-balloon-pos="up"]:hover::before { |
| 821 | - transform: translate3d(-50%, 0, 0); | |
| 1486 | + -webkit-transform: translate3d(-50%, 0, 0); | |
| 1487 | + transform: translate3d(-50%, 0, 0); | |
| 822 | 1488 | } |
| 823 | 1489 | |
| 824 | 1490 | [data-balloon][data-balloon-pos="up"]:hover::after { |
| 825 | - transform: translate3d(-50%, 0, 0); | |
| 1491 | + -webkit-transform: translate3d(-50%, 0, 0); | |
| 1492 | + transform: translate3d(-50%, 0, 0); | |
| 826 | 1493 | } |
| 827 | 1494 | |
| 828 | 1495 | [data-balloon][data-balloon-pos='down']::before { |
| 829 | 1496 | left: 50%; |
| @@ -828,9 +1495,10 @@ | ||
| 828 | 1495 | [data-balloon][data-balloon-pos='down']::before { |
| 829 | 1496 | left: 50%; |
| 830 | 1497 | margin-top: 11px; |
| 831 | 1498 | top: 100%; |
| 832 | - transform: translate3d(-50%, -10px, 0); | |
| 1499 | + -webkit-transform: translate3d(-50%, -10px, 0); | |
| 1500 | + transform: translate3d(-50%, -10px, 0); | |
| 833 | 1501 | } |
| 834 | 1502 | |
| 835 | 1503 | [data-balloon][data-balloon-pos='down']::after { |
| 836 | 1504 | background: no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(180 18 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>'); |
| @@ -839,17 +1507,20 @@ | ||
| 839 | 1507 | height: 6px; |
| 840 | 1508 | left: 50%; |
| 841 | 1509 | margin-top: 5px; |
| 842 | 1510 | top: 100%; |
| 843 | - transform: translate3d(-50%, -10px, 0); | |
| 1511 | + -webkit-transform: translate3d(-50%, -10px, 0); | |
| 1512 | + transform: translate3d(-50%, -10px, 0); | |
| 844 | 1513 | } |
| 845 | 1514 | |
| 846 | 1515 | [data-balloon][data-balloon-pos='down']:hover::before { |
| 847 | - transform: translate3d(-50%, 0, 0); | |
| 1516 | + -webkit-transform: translate3d(-50%, 0, 0); | |
| 1517 | + transform: translate3d(-50%, 0, 0); | |
| 848 | 1518 | } |
| 849 | 1519 | |
| 850 | 1520 | [data-balloon][data-balloon-pos='down']:hover::after { |
| 851 | - transform: translate3d(-50%, 0, 0); | |
| 1521 | + -webkit-transform: translate3d(-50%, 0, 0); | |
| 1522 | + transform: translate3d(-50%, 0, 0); | |
| 852 | 1523 | } |
| 853 | 1524 | |
| 854 | 1525 | [data-balloon][data-balloon-pos='left']::before { |
| 855 | 1526 | margin-right: 11px; |
| @@ -854,9 +1525,10 @@ | ||
| 854 | 1525 | [data-balloon][data-balloon-pos='left']::before { |
| 855 | 1526 | margin-right: 11px; |
| 856 | 1527 | right: 100%; |
| 857 | 1528 | top: 50%; |
| 858 | - transform: translate3d(10px, -50%, 0); | |
| 1529 | + -webkit-transform: translate3d(10px, -50%, 0); | |
| 1530 | + transform: translate3d(10px, -50%, 0); | |
| 859 | 1531 | } |
| 860 | 1532 | |
| 861 | 1533 | [data-balloon][data-balloon-pos='left']::after { |
| 862 | 1534 | background: no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(-90 18 18)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>'); |
| @@ -865,17 +1537,20 @@ | ||
| 865 | 1537 | height: 18px; |
| 866 | 1538 | margin-right: 5px; |
| 867 | 1539 | right: 100%; |
| 868 | 1540 | top: 50%; |
| 869 | - transform: translate3d(10px, -50%, 0); | |
| 1541 | + -webkit-transform: translate3d(10px, -50%, 0); | |
| 1542 | + transform: translate3d(10px, -50%, 0); | |
| 870 | 1543 | } |
| 871 | 1544 | |
| 872 | 1545 | [data-balloon][data-balloon-pos='left']:hover::before { |
| 873 | - transform: translate3d(0, -50%, 0); | |
| 1546 | + -webkit-transform: translate3d(0, -50%, 0); | |
| 1547 | + transform: translate3d(0, -50%, 0); | |
| 874 | 1548 | } |
| 875 | 1549 | |
| 876 | 1550 | [data-balloon][data-balloon-pos='left']:hover::after { |
| 877 | - transform: translate3d(0, -50%, 0); | |
| 1551 | + -webkit-transform: translate3d(0, -50%, 0); | |
| 1552 | + transform: translate3d(0, -50%, 0); | |
| 878 | 1553 | } |
| 879 | 1554 | |
| 880 | 1555 | [data-balloon][data-balloon-pos='right']::before { |
| 881 | 1556 | left: 100%; |
| @@ -880,9 +1555,10 @@ | ||
| 880 | 1555 | [data-balloon][data-balloon-pos='right']::before { |
| 881 | 1556 | left: 100%; |
| 882 | 1557 | margin-left: 11px; |
| 883 | 1558 | top: 50%; |
| 884 | - transform: translate3d(-10px, -50%, 0); | |
| 1559 | + -webkit-transform: translate3d(-10px, -50%, 0); | |
| 1560 | + transform: translate3d(-10px, -50%, 0); | |
| 885 | 1561 | } |
| 886 | 1562 | |
| 887 | 1563 | [data-balloon][data-balloon-pos='right']::after { |
| 888 | 1564 | background: no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(90 6 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>'); |
| @@ -891,17 +1567,20 @@ | ||
| 891 | 1567 | height: 18px; |
| 892 | 1568 | left: 100%; |
| 893 | 1569 | margin-left: 5px; |
| 894 | 1570 | top: 50%; |
| 895 | - transform: translate3d(-10px, -50%, 0); | |
| 1571 | + -webkit-transform: translate3d(-10px, -50%, 0); | |
| 1572 | + transform: translate3d(-10px, -50%, 0); | |
| 896 | 1573 | } |
| 897 | 1574 | |
| 898 | 1575 | [data-balloon][data-balloon-pos='right']:hover::before { |
| 899 | - transform: translate3d(0, -50%, 0); | |
| 1576 | + -webkit-transform: translate3d(0, -50%, 0); | |
| 1577 | + transform: translate3d(0, -50%, 0); | |
| 900 | 1578 | } |
| 901 | 1579 | |
| 902 | 1580 | [data-balloon][data-balloon-pos='right']:hover::after { |
| 903 | - transform: translate3d(0, -50%, 0); | |
| 1581 | + -webkit-transform: translate3d(0, -50%, 0); | |
| 1582 | + transform: translate3d(0, -50%, 0); | |
| 904 | 1583 | } |
| 905 | 1584 | |
| 906 | 1585 | [data-balloon][data-balloon-length='small']::before { |
| 907 | 1586 | white-space: normal; |
| @@ -928,10 +1607,1500 @@ | ||
| 928 | 1607 | white-space: normal; |
| 929 | 1608 | width: 90vw; |
| 930 | 1609 | } |
| 931 | 1610 | } |
| 1611 | + | |
| 932 | 1612 | [data-balloon][data-balloon-length='fit']::before { |
| 933 | 1613 | white-space: normal; |
| 934 | 1614 | width: 100%; |
| 935 | 1615 | } |
| 936 | 1616 | |
| 937 | -/*# sourceMappingURL=customizer.css.map */ | |
| 1617 | +/* ========================================================================== | |
| 1618 | + #FEEDBACK MODAL | |
| 1619 | + ========================================================================== */ | |
| 1620 | +body.modal-open { | |
| 1621 | + overflow: hidden; | |
| 1622 | +} | |
| 1623 | + | |
| 1624 | +body.modal-open #style-manager-user-feedback-modal .modal { | |
| 1625 | + overflow-x: hidden; | |
| 1626 | + overflow-y: auto; | |
| 1627 | + visibility: visible; | |
| 1628 | + opacity: 1; | |
| 1629 | + -webkit-transform: translate(0, 0); | |
| 1630 | + transform: translate(0, 0); | |
| 1631 | +} | |
| 1632 | + | |
| 1633 | +#style-manager-user-feedback-modal { | |
| 1634 | + height: 100%; | |
| 1635 | +} | |
| 1636 | + | |
| 1637 | +#style-manager-user-feedback-modal .modal { | |
| 1638 | + position: relative; | |
| 1639 | + height: 100%; | |
| 1640 | + display: -ms-flexbox; | |
| 1641 | + display: flex; | |
| 1642 | + -ms-flex-align: center; | |
| 1643 | + align-items: center; | |
| 1644 | + top: 0; | |
| 1645 | + right: 0; | |
| 1646 | + bottom: 0; | |
| 1647 | + left: 0; | |
| 1648 | + z-index: 1050; | |
| 1649 | + opacity: 0; | |
| 1650 | + visibility: hidden; | |
| 1651 | + overflow: hidden; | |
| 1652 | + outline: 0; | |
| 1653 | + transition: all .3s ease; | |
| 1654 | + -webkit-transform: translate(0, -10%); | |
| 1655 | + transform: translate(0, -10%); | |
| 1656 | + font-family: 'Galano Grotesque Alt', -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; | |
| 1657 | + font-weight: 400; | |
| 1658 | + font-size: 16px; | |
| 1659 | + line-height: 1.7; | |
| 1660 | +} | |
| 1661 | + | |
| 1662 | +#style-manager-user-feedback-modal .modal-dialog { | |
| 1663 | + position: relative; | |
| 1664 | + width: auto; | |
| 1665 | + margin: 10px; | |
| 1666 | + text-align: left; | |
| 1667 | +} | |
| 1668 | + | |
| 1669 | +#style-manager-user-feedback-modal .modal-content { | |
| 1670 | + position: relative; | |
| 1671 | + display: -ms-flexbox; | |
| 1672 | + display: flex; | |
| 1673 | + -ms-flex-direction: column; | |
| 1674 | + flex-direction: column; | |
| 1675 | + background-color: #fff; | |
| 1676 | + background-clip: padding-box; | |
| 1677 | + border: none; | |
| 1678 | + border-radius: 4px; | |
| 1679 | + box-shadow: 0 4px 4px 0 rgba(42, 54, 52, 0.1), 0 8px 8px 0 rgba(42, 54, 52, 0.1), 0 16px 16px 0 rgba(42, 54, 52, 0.1), 0 16px 32px 0 rgba(42, 54, 52, 0.1), 0 32px 64px 0 rgba(42, 54, 52, 0.1), 0 64px 128px 0 rgba(42, 54, 52, 0.1); | |
| 1680 | + outline: 0; | |
| 1681 | +} | |
| 1682 | + | |
| 1683 | +#style-manager-user-feedback-modal .modal-content p { | |
| 1684 | + color: #000; | |
| 1685 | +} | |
| 1686 | + | |
| 1687 | +#style-manager-user-feedback-modal .modal-content p a { | |
| 1688 | + font-weight: 500; | |
| 1689 | + color: #9660C6; | |
| 1690 | + border-bottom: 1px solid #9660C6; | |
| 1691 | +} | |
| 1692 | + | |
| 1693 | +#style-manager-user-feedback-modal .modal-content > form { | |
| 1694 | + margin-bottom: 20px; | |
| 1695 | +} | |
| 1696 | + | |
| 1697 | +#style-manager-user-feedback-modal .modal-backdrop { | |
| 1698 | + position: fixed; | |
| 1699 | + top: 0; | |
| 1700 | + right: 0; | |
| 1701 | + bottom: 0; | |
| 1702 | + left: 0; | |
| 1703 | + z-index: 1040; | |
| 1704 | + background-color: #000; | |
| 1705 | + opacity: 0; | |
| 1706 | + visibility: hidden; | |
| 1707 | + transition: all 0.3s ease; | |
| 1708 | +} | |
| 1709 | + | |
| 1710 | +.modal-open #style-manager-user-feedback-modal .modal-backdrop { | |
| 1711 | + opacity: 0.8; | |
| 1712 | + visibility: visible; | |
| 1713 | +} | |
| 1714 | + | |
| 1715 | +#style-manager-user-feedback-modal .modal-header { | |
| 1716 | + display: -ms-flexbox; | |
| 1717 | + display: flex; | |
| 1718 | + -ms-flex-align: start; | |
| 1719 | + align-items: flex-start; | |
| 1720 | + -ms-flex-pack: justify; | |
| 1721 | + justify-content: space-between; | |
| 1722 | + padding: 30px 48px 10px 48px; | |
| 1723 | +} | |
| 1724 | + | |
| 1725 | +#style-manager-user-feedback-modal .modal-header .close.button { | |
| 1726 | + top: -10px; | |
| 1727 | +} | |
| 1728 | + | |
| 1729 | +#style-manager-user-feedback-modal .modal-header .close.icon { | |
| 1730 | + opacity: 0.5; | |
| 1731 | +} | |
| 1732 | + | |
| 1733 | +#style-manager-user-feedback-modal .modal-header .close:hover { | |
| 1734 | + opacity: 1; | |
| 1735 | +} | |
| 1736 | + | |
| 1737 | +#style-manager-user-feedback-modal .modal-title { | |
| 1738 | + margin-bottom: 10px; | |
| 1739 | + line-height: 1.5; | |
| 1740 | +} | |
| 1741 | + | |
| 1742 | +#style-manager-user-feedback-modal .modal-title.modal-title--small { | |
| 1743 | + font-weight: 500; | |
| 1744 | +} | |
| 1745 | + | |
| 1746 | +#style-manager-user-feedback-modal .modal-body { | |
| 1747 | + position: relative; | |
| 1748 | + -ms-flex: 1 1 auto; | |
| 1749 | + flex: 1 1 auto; | |
| 1750 | + padding: 30px 30px 0 30px; | |
| 1751 | +} | |
| 1752 | + | |
| 1753 | +#style-manager-user-feedback-modal .modal-body.full { | |
| 1754 | + padding: 0; | |
| 1755 | +} | |
| 1756 | + | |
| 1757 | +#style-manager-user-feedback-modal .modal-body.full .box { | |
| 1758 | + padding-top: 0; | |
| 1759 | + padding-bottom: 0; | |
| 1760 | + margin-top: 0; | |
| 1761 | +} | |
| 1762 | + | |
| 1763 | +#style-manager-user-feedback-modal .modal-body.full + .modal-footer.full .box { | |
| 1764 | + padding-top: 18px; | |
| 1765 | +} | |
| 1766 | + | |
| 1767 | +#style-manager-user-feedback-modal .modal-footer { | |
| 1768 | + padding: 30px; | |
| 1769 | + text-align: center; | |
| 1770 | +} | |
| 1771 | + | |
| 1772 | +#style-manager-user-feedback-modal .modal-footer .box .button:last-child { | |
| 1773 | + margin-bottom: 0; | |
| 1774 | +} | |
| 1775 | + | |
| 1776 | +#style-manager-user-feedback-modal .modal-footer.full { | |
| 1777 | + padding: 0; | |
| 1778 | +} | |
| 1779 | + | |
| 1780 | +#style-manager-user-feedback-modal .modal-scrollbar-measure { | |
| 1781 | + position: absolute; | |
| 1782 | + top: -9999px; | |
| 1783 | + width: 50px; | |
| 1784 | + height: 50px; | |
| 1785 | + overflow: scroll; | |
| 1786 | +} | |
| 1787 | + | |
| 1788 | +#style-manager-user-feedback-modal .modal-state { | |
| 1789 | + display: none; | |
| 1790 | +} | |
| 1791 | + | |
| 1792 | +#style-manager-user-feedback-modal .modal-state:checked + .modal { | |
| 1793 | + opacity: 1; | |
| 1794 | + visibility: visible; | |
| 1795 | +} | |
| 1796 | + | |
| 1797 | +#style-manager-user-feedback-modal .modal-state:checked + .modal .modal__inner { | |
| 1798 | + top: 0; | |
| 1799 | +} | |
| 1800 | + | |
| 1801 | +@media (min-width: 576px) { | |
| 1802 | + #style-manager-user-feedback-modal .modal-dialog { | |
| 1803 | + max-width: 655px; | |
| 1804 | + margin: 30px auto; | |
| 1805 | + } | |
| 1806 | + #style-manager-user-feedback-modal .modal-sm { | |
| 1807 | + max-width: 300px; | |
| 1808 | + } | |
| 1809 | +} | |
| 1810 | + | |
| 1811 | +@media (min-width: 576px) { | |
| 1812 | + #style-manager-user-feedback-modal .modal-lg { | |
| 1813 | + max-width: 800px; | |
| 1814 | + } | |
| 1815 | +} | |
| 1816 | + | |
| 1817 | +#style-manager-user-feedback .modal-body .box { | |
| 1818 | + position: relative; | |
| 1819 | + -ms-flex-direction: column; | |
| 1820 | + flex-direction: column; | |
| 1821 | + display: -ms-flexbox; | |
| 1822 | + display: flex; | |
| 1823 | + -ms-flex-wrap: nowrap; | |
| 1824 | + flex-wrap: nowrap; | |
| 1825 | + -ms-flex-align: center; | |
| 1826 | + align-items: center; | |
| 1827 | + margin: 20px 0; | |
| 1828 | + padding: 16px 52px; | |
| 1829 | + border-radius: 4px; | |
| 1830 | +} | |
| 1831 | + | |
| 1832 | +#style-manager-user-feedback .modal-body .box > * { | |
| 1833 | + width: 100%; | |
| 1834 | +} | |
| 1835 | + | |
| 1836 | +#style-manager-user-feedback .modal-body p { | |
| 1837 | + font-size: 16px; | |
| 1838 | + margin-bottom: 20px; | |
| 1839 | +} | |
| 1840 | + | |
| 1841 | +#style-manager-user-feedback .modal-body textarea { | |
| 1842 | + width: 100%; | |
| 1843 | + margin: 0; | |
| 1844 | + padding: 11px 18px; | |
| 1845 | + border: 1px solid #dddddd; | |
| 1846 | + border-radius: 4px; | |
| 1847 | + box-shadow: none; | |
| 1848 | + font-family: 'Galano Grotesque Alt', -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; | |
| 1849 | + font-size: 16px; | |
| 1850 | + line-height: 26px; | |
| 1851 | + color: #473850; | |
| 1852 | +} | |
| 1853 | + | |
| 1854 | +#style-manager-user-feedback .modal-title { | |
| 1855 | + margin-top: 0; | |
| 1856 | + margin-bottom: 34px; | |
| 1857 | + font-family: 'Galano Classic', -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; | |
| 1858 | + font-weight: 600; | |
| 1859 | + font-size: 28px; | |
| 1860 | + line-height: 1.4; | |
| 1861 | + text-align: center; | |
| 1862 | +} | |
| 1863 | + | |
| 1864 | +#style-manager-user-feedback .button { | |
| 1865 | + text-decoration: none; | |
| 1866 | + cursor: pointer; | |
| 1867 | + -webkit-font-smoothing: antialiased; | |
| 1868 | + position: relative; | |
| 1869 | + transition-duration: .2s; | |
| 1870 | + transition-timing-function: cubic-bezier(0, 0, 0.58, 1); | |
| 1871 | + transition-property: -webkit-transform,background,background-color,color,box-shadow; | |
| 1872 | + transition-property: transform,background,background-color,color,box-shadow; | |
| 1873 | + display: inline-block; | |
| 1874 | + padding: 15px 50px; | |
| 1875 | + border-radius: 2px; | |
| 1876 | + font-family: "Galano Classic", -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; | |
| 1877 | + font-size: 16px; | |
| 1878 | + line-height: 23px; | |
| 1879 | + font-weight: 600; | |
| 1880 | + text-align: center; | |
| 1881 | + background-color: #9660c6; | |
| 1882 | + color: #ffffff; | |
| 1883 | + border-radius: 4px; | |
| 1884 | + box-shadow: none; | |
| 1885 | + height: auto; | |
| 1886 | + width: 100%; | |
| 1887 | + margin-top: 20px; | |
| 1888 | +} | |
| 1889 | + | |
| 1890 | +#style-manager-user-feedback .button:hover { | |
| 1891 | + background-color: #9660c6; | |
| 1892 | + color: #ffffff; | |
| 1893 | + -webkit-transform: scale(1.05) translateY(-3px); | |
| 1894 | + transform: scale(1.05) translateY(-3px); | |
| 1895 | + box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.7); | |
| 1896 | +} | |
| 1897 | + | |
| 1898 | +#style-manager-user-feedback .second-step { | |
| 1899 | + margin-top: 18px; | |
| 1900 | +} | |
| 1901 | + | |
| 1902 | +#style-manager-user-feedback .thanks-step, | |
| 1903 | +#style-manager-user-feedback .error-step { | |
| 1904 | + text-align: center; | |
| 1905 | +} | |
| 1906 | + | |
| 1907 | +#style-manager-user-feedback .thanks-step .modal-title, | |
| 1908 | +#style-manager-user-feedback .error-step .modal-title { | |
| 1909 | + margin-bottom: 0; | |
| 1910 | +} | |
| 1911 | + | |
| 1912 | +#style-manager-user-feedback .thanks-step p:last-child, | |
| 1913 | +#style-manager-user-feedback .error-step p:last-child { | |
| 1914 | + margin-bottom: 10px; | |
| 1915 | +} | |
| 1916 | + | |
| 1917 | +.scorecard { | |
| 1918 | + display: -ms-flexbox; | |
| 1919 | + display: flex; | |
| 1920 | + -ms-flex-align: baseline; | |
| 1921 | + align-items: baseline; | |
| 1922 | + -ms-flex-pack: space-evenly; | |
| 1923 | + justify-content: space-evenly; | |
| 1924 | + color: #9660C6; | |
| 1925 | + font-family: "Galano Classic", -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; | |
| 1926 | + font-size: 18px; | |
| 1927 | + font-weight: 600; | |
| 1928 | + text-align: center; | |
| 1929 | +} | |
| 1930 | + | |
| 1931 | +.scorecard > label { | |
| 1932 | + font-size: 20px; | |
| 1933 | +} | |
| 1934 | + | |
| 1935 | +.scorecard > label span { | |
| 1936 | + display: block; | |
| 1937 | + width: 46px; | |
| 1938 | + border: 2px solid #9660C6; | |
| 1939 | + line-height: 46px; | |
| 1940 | + border-radius: 100%; | |
| 1941 | + background: #FFF; | |
| 1942 | + transition: all 0.25s ease; | |
| 1943 | +} | |
| 1944 | + | |
| 1945 | +.scorecard > label input[type="radio"] { | |
| 1946 | + display: none; | |
| 1947 | +} | |
| 1948 | + | |
| 1949 | +.scorecard > label span:hover, | |
| 1950 | +.scorecard > label input[type="radio"]:checked ~ span { | |
| 1951 | + background: #9660C6; | |
| 1952 | + color: #FFF; | |
| 1953 | +} | |
| 1954 | + | |
| 1955 | +.font-options__wrapper .font-options__options-list { | |
| 1956 | + border-color: #B8DAEB; | |
| 1957 | + box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15); | |
| 1958 | +} | |
| 1959 | + | |
| 1960 | +.font-options__wrapper .font-options__option { | |
| 1961 | + margin-bottom: 12px; | |
| 1962 | +} | |
| 1963 | + | |
| 1964 | +.font-options__wrapper .font-options__option label { | |
| 1965 | + display: block; | |
| 1966 | + margin-bottom: 6px; | |
| 1967 | +} | |
| 1968 | + | |
| 1969 | +.font-options__wrapper [type=checkbox]:checked ~ .font-options__options-list { | |
| 1970 | + opacity: 1; | |
| 1971 | + display: block; | |
| 1972 | +} | |
| 1973 | + | |
| 1974 | +input.customify_font_tooltip { | |
| 1975 | + display: none; | |
| 1976 | +} | |
| 1977 | + | |
| 1978 | +ul.font-options__options-list .select2-container { | |
| 1979 | + width: 100% !important; | |
| 1980 | +} | |
| 1981 | + | |
| 1982 | +ul.font-options__options-list .select2-container .select2-selection--single { | |
| 1983 | + -webkit-appearance: initial; | |
| 1984 | +} | |
| 1985 | + | |
| 1986 | +ul.font-options__options-list .select2-container .select2-selection--single .select2-selection__arrow { | |
| 1987 | + display: none; | |
| 1988 | +} | |
| 1989 | + | |
| 1990 | +ul.font-options__options-list .select2-container--default .select2-selection--single .select2-selection__rendered { | |
| 1991 | + color: inherit; | |
| 1992 | + line-height: initial; | |
| 1993 | +} | |
| 1994 | + | |
| 1995 | +.select2-container.select2-container--open { | |
| 1996 | + z-index: 99999999; | |
| 1997 | +} | |
| 1998 | + | |
| 1999 | +#customize-theme-controls .select2-container { | |
| 2000 | + width: 100% !important; | |
| 2001 | +} | |
| 2002 | + | |
| 2003 | +#customize-theme-controls .select2-container .select2-selection--multiple { | |
| 2004 | + -webkit-appearance: initial; | |
| 2005 | + padding: 4px 8px 4px; | |
| 2006 | + height: auto; | |
| 2007 | + background: none; | |
| 2008 | +} | |
| 2009 | + | |
| 2010 | +#customize-theme-controls .select2-container .select2-selection--multiple .select2-selection__arrow { | |
| 2011 | + display: none; | |
| 2012 | +} | |
| 2013 | + | |
| 2014 | +#customize-theme-controls .select2-container .select2-selection--multiple .select2-selection__rendered { | |
| 2015 | + padding: 0; | |
| 2016 | + display: -ms-flexbox; | |
| 2017 | + display: flex; | |
| 2018 | +} | |
| 2019 | + | |
| 2020 | +#customize-theme-controls .select2-container .select2-selection--multiple .select2-selection__rendered .select2-search--inline { | |
| 2021 | + -ms-flex: 1; | |
| 2022 | + flex: 1; | |
| 2023 | +} | |
| 2024 | + | |
| 2025 | +#customize-theme-controls .select2-container .select2-selection--multiple .select2-selection__rendered .select2-search--inline .select2-search__field[class] { | |
| 2026 | + min-width: 100%; | |
| 2027 | + border-width: 0; | |
| 2028 | + margin-top: 3px !important; | |
| 2029 | +} | |
| 2030 | + | |
| 2031 | +#customize-theme-controls .select2-container .select2-selection--multiple .select2-selection__rendered .select2-selection__choice { | |
| 2032 | + padding: 3px 7px; | |
| 2033 | + margin-right: 6px; | |
| 2034 | + margin-top: 0px; | |
| 2035 | + border-color: #e0e8ef; | |
| 2036 | + background-color: #f6fbff; | |
| 2037 | +} | |
| 2038 | + | |
| 2039 | +#customize-theme-controls .select2-container .select2-search--inline .select2-search__field { | |
| 2040 | + height: 29px; | |
| 2041 | + min-width: 9em; | |
| 2042 | + margin-top: 0; | |
| 2043 | +} | |
| 2044 | + | |
| 2045 | +.select2-container--default .select2-results__option[aria-selected=true][class] { | |
| 2046 | + background: transparent; | |
| 2047 | + opacity: 0.3; | |
| 2048 | + pointer-events: none; | |
| 2049 | +} | |
| 2050 | + | |
| 2051 | +.select2-container .select2-dropdown { | |
| 2052 | + border-color: #e0e8ef; | |
| 2053 | +} | |
| 2054 | + | |
| 2055 | +#customize-theme-controls .widget-content .accordion-container { | |
| 2056 | + margin-left: -10px; | |
| 2057 | + margin-right: -10px; | |
| 2058 | + margin-top: 20px; | |
| 2059 | + margin-bottom: 10px; | |
| 2060 | +} | |
| 2061 | + | |
| 2062 | +#customize-theme-controls .widget-content .accordion-container .accordion-section .accordion-section-content { | |
| 2063 | + position: relative; | |
| 2064 | + left: 0; | |
| 2065 | + max-height: 0; | |
| 2066 | + padding-top: 0; | |
| 2067 | + padding-bottom: 0; | |
| 2068 | + overflow: hidden; | |
| 2069 | + transition: all .4s ease; | |
| 2070 | + color: #416B7E; | |
| 2071 | +} | |
| 2072 | + | |
| 2073 | +#customize-theme-controls .widget-content .accordion-container .accordion-section .accordion-section-content p:first-child { | |
| 2074 | + margin-top: 0; | |
| 2075 | +} | |
| 2076 | + | |
| 2077 | +#customize-theme-controls .widget-content .accordion-container .accordion-section .accordion-section-content p:last-child { | |
| 2078 | + margin-bottom: 0; | |
| 2079 | +} | |
| 2080 | + | |
| 2081 | +#customize-theme-controls .widget-content .accordion-container .accordion-section .accordion-section-title { | |
| 2082 | + color: #39474D; | |
| 2083 | +} | |
| 2084 | + | |
| 2085 | +#customize-theme-controls .widget-content .accordion-container .accordion-section .accordion-section-title:after { | |
| 2086 | + content: "\f142"; | |
| 2087 | + -webkit-transform: rotate(180deg); | |
| 2088 | + transform: rotate(180deg); | |
| 2089 | +} | |
| 2090 | + | |
| 2091 | +#customize-theme-controls .widget-content .accordion-container .accordion-section.open { | |
| 2092 | + border-bottom: none; | |
| 2093 | +} | |
| 2094 | + | |
| 2095 | +#customize-theme-controls .widget-content .accordion-container .accordion-section.open .accordion-section-content { | |
| 2096 | + max-height: 100%; | |
| 2097 | + padding-top: 17px; | |
| 2098 | + padding-bottom: 17px; | |
| 2099 | +} | |
| 2100 | + | |
| 2101 | +#customize-theme-controls .widget-content .accordion-container .accordion-section.open .accordion-section-title { | |
| 2102 | + border-bottom: 1px solid; | |
| 2103 | +} | |
| 2104 | + | |
| 2105 | +#customize-theme-controls .widget-content .accordion-container .accordion-section.open .accordion-section-title:after { | |
| 2106 | + -webkit-transform: rotate(0deg); | |
| 2107 | + transform: rotate(0deg); | |
| 2108 | +} | |
| 2109 | + | |
| 2110 | +#customize-theme-controls .widget-content .accordion-container label.customize-control-title, #customize-theme-controls .widget-content .accordion-container label.separator.label { | |
| 2111 | + cursor: default; | |
| 2112 | +} | |
| 2113 | + | |
| 2114 | +.widget .widget-content > p input[type=checkbox], | |
| 2115 | +.widget .widget-content > p input[type=radio] { | |
| 2116 | + margin-bottom: 3px; | |
| 2117 | + margin-top: 3px; | |
| 2118 | +} | |
| 2119 | + | |
| 2120 | +.widget .widget-content small { | |
| 2121 | + margin-top: 5px; | |
| 2122 | + display: block; | |
| 2123 | +} | |
| 2124 | + | |
| 2125 | +#available-widgets [class*=pixelgrade] .widget .widget-title:before, | |
| 2126 | +#available-widgets [class*=featured-posts] .widget .widget-title:before, | |
| 2127 | +#available-widgets [class*=categories-image-grid] .widget .widget-title:before { | |
| 2128 | + content: "\f538"; | |
| 2129 | + color: #9660c6; | |
| 2130 | +} | |
| 2131 | + | |
| 2132 | +#available-widgets [class*=pixelgrade-featured-posts-slideshow] .widget .widget-title:before { | |
| 2133 | + content: "\f233"; | |
| 2134 | +} | |
| 2135 | + | |
| 2136 | +#available-widgets [class*=pixelgrade-featured-posts-carousel] .widget .widget-title:before { | |
| 2137 | + content: "\f169"; | |
| 2138 | +} | |
| 2139 | + | |
| 2140 | +#available-widgets [class*=featured-posts-grid] .widget .widget-title:before { | |
| 2141 | + content: "\f180"; | |
| 2142 | +} | |
| 2143 | + | |
| 2144 | +#available-widgets [class*=featured-posts-list] .widget .widget-title:before { | |
| 2145 | + content: "\f164"; | |
| 2146 | +} | |
| 2147 | + | |
| 2148 | +#available-widgets [class*=categories-image-grid] .widget .widget-title:before { | |
| 2149 | + content: "\f163"; | |
| 2150 | +} | |
| 2151 | + | |
| 2152 | +#available-widgets [class*=pixelgrade-promo-box] .widget .widget-title:before { | |
| 2153 | + content: "\f488"; | |
| 2154 | +} | |
| 2155 | + | |
| 2156 | +.ui-tooltip { | |
| 2157 | + z-index: 999999; | |
| 2158 | +} | |
| 2159 | + | |
| 2160 | +.wp-customizer .widget-conditional .condition-control:after { | |
| 2161 | + content: " "; | |
| 2162 | + display: table; | |
| 2163 | + clear: both; | |
| 2164 | +} | |
| 2165 | + | |
| 2166 | +.wp-customizer .widget-conditional .selection { | |
| 2167 | + padding-right: 50px; | |
| 2168 | + padding-left: 28px; | |
| 2169 | + padding-bottom: 19px; | |
| 2170 | + margin-left: 0; | |
| 2171 | + margin-right: 0; | |
| 2172 | + margin-bottom: 10px; | |
| 2173 | + border-bottom: 1px solid #cbcfd4; | |
| 2174 | +} | |
| 2175 | + | |
| 2176 | +.wp-customizer .widget-conditional .condition:last-child .selection { | |
| 2177 | + border: 0; | |
| 2178 | +} | |
| 2179 | + | |
| 2180 | +.wp-customizer .widget-conditional select { | |
| 2181 | + max-width: 100%; | |
| 2182 | + width: 170px; | |
| 2183 | +} | |
| 2184 | + | |
| 2185 | +.wp-customizer .widget-conditional .condition-top select { | |
| 2186 | + width: 130px; | |
| 2187 | +} | |
| 2188 | + | |
| 2189 | +.pix_customizer_setting .customize-inside-control-row { | |
| 2190 | + position: relative; | |
| 2191 | + width: 100% !important; | |
| 2192 | + margin-left: 0 !important; | |
| 2193 | + text-indent: 0 !important; | |
| 2194 | + background-size: cover; | |
| 2195 | + background-position: 50% 50%; | |
| 2196 | + height: 64px; | |
| 2197 | + border-radius: 5px; | |
| 2198 | + overflow: hidden; | |
| 2199 | +} | |
| 2200 | + | |
| 2201 | +.pix_customizer_setting .customize-inside-control-row:before { | |
| 2202 | + content: ''; | |
| 2203 | + position: absolute; | |
| 2204 | + top: 0; | |
| 2205 | + bottom: 0; | |
| 2206 | + left: 0; | |
| 2207 | + right: 0; | |
| 2208 | + z-index: 10; | |
| 2209 | + pointer-events: none; | |
| 2210 | + box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.2); | |
| 2211 | +} | |
| 2212 | + | |
| 2213 | +.pix_customizer_setting .customize-inside-control-row:hover:before { | |
| 2214 | + box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.4); | |
| 2215 | +} | |
| 2216 | + | |
| 2217 | +.pix_customizer_setting .customize-inside-control-row:hover .palette__item { | |
| 2218 | + -webkit-transform: translateY(0%); | |
| 2219 | + transform: translateY(0%); | |
| 2220 | +} | |
| 2221 | + | |
| 2222 | +.pix_customizer_setting .customize-inside-control-row:hover label { | |
| 2223 | + left: 10px; | |
| 2224 | +} | |
| 2225 | + | |
| 2226 | +.pix_customizer_setting .customize-inside-control-row input { | |
| 2227 | + opacity: 0; | |
| 2228 | +} | |
| 2229 | + | |
| 2230 | +.pix_customizer_setting .customize-inside-control-row input:checked + label .preview__letter--checked { | |
| 2231 | + display: inline-block; | |
| 2232 | + vertical-align: middle; | |
| 2233 | +} | |
| 2234 | + | |
| 2235 | +.pix_customizer_setting .customize-inside-control-row input:checked + label .preview__letter { | |
| 2236 | + display: none; | |
| 2237 | +} | |
| 2238 | + | |
| 2239 | +.pix_customizer_setting .customize-inside-control-row label { | |
| 2240 | + position: absolute; | |
| 2241 | + display: -ms-flexbox; | |
| 2242 | + display: flex; | |
| 2243 | + z-index: 2; | |
| 2244 | + width: 100%; | |
| 2245 | + height: 100%; | |
| 2246 | + top: 0; | |
| 2247 | + left: 0; | |
| 2248 | + padding: 0 10px; | |
| 2249 | + margin-top: 0 !important; | |
| 2250 | + -ms-flex-align: center; | |
| 2251 | + align-items: center; | |
| 2252 | + transition: all .3s ease; | |
| 2253 | +} | |
| 2254 | + | |
| 2255 | +.pix_customizer_setting .customize-inside-control-row .palette { | |
| 2256 | + position: absolute; | |
| 2257 | + display: -ms-flexbox; | |
| 2258 | + display: flex; | |
| 2259 | + top: 0; | |
| 2260 | + left: 0; | |
| 2261 | + z-index: 1; | |
| 2262 | + width: 100%; | |
| 2263 | + height: 100%; | |
| 2264 | + transition: all .2s ease; | |
| 2265 | +} | |
| 2266 | + | |
| 2267 | +.pix_customizer_setting .customize-inside-control-row .palette__item { | |
| 2268 | + -ms-flex: 1; | |
| 2269 | + flex: 1; | |
| 2270 | + -webkit-transform: translateY(100%); | |
| 2271 | + transform: translateY(100%); | |
| 2272 | + transition: all .3s ease; | |
| 2273 | +} | |
| 2274 | + | |
| 2275 | +.pix_customizer_setting .customize-inside-control-row .palette__item:nth-child(1) { | |
| 2276 | + transition-delay: 0s; | |
| 2277 | +} | |
| 2278 | + | |
| 2279 | +.pix_customizer_setting .customize-inside-control-row .palette__item:nth-child(2) { | |
| 2280 | + transition-delay: 0.05s; | |
| 2281 | +} | |
| 2282 | + | |
| 2283 | +.pix_customizer_setting .customize-inside-control-row .palette__item:nth-child(3) { | |
| 2284 | + transition-delay: 0.1s; | |
| 2285 | +} | |
| 2286 | + | |
| 2287 | +.pix_customizer_setting .customize-inside-control-row .palette__item:nth-child(4) { | |
| 2288 | + transition-delay: 0.15s; | |
| 2289 | +} | |
| 2290 | + | |
| 2291 | +.pix_customizer_setting .customize-inside-control-row .palette__item:nth-child(5) { | |
| 2292 | + transition-delay: 0.2s; | |
| 2293 | +} | |
| 2294 | + | |
| 2295 | +.pix_customizer_setting .customize-inside-control-row .palette__item:nth-child(6) { | |
| 2296 | + transition-delay: 0.25s; | |
| 2297 | +} | |
| 2298 | + | |
| 2299 | +.pix_customizer_setting .customize-inside-control-row .palette__item:nth-child(7) { | |
| 2300 | + transition-delay: 0.3s; | |
| 2301 | +} | |
| 2302 | + | |
| 2303 | +.pix_customizer_setting .customize-inside-control-row .palette__item:nth-child(8) { | |
| 2304 | + transition-delay: 0.35s; | |
| 2305 | +} | |
| 2306 | + | |
| 2307 | +.pix_customizer_setting .customize-inside-control-row .palette__item:nth-child(9) { | |
| 2308 | + transition-delay: 0.4s; | |
| 2309 | +} | |
| 2310 | + | |
| 2311 | +.pix_customizer_setting .customize-inside-control-row .palette__item:nth-child(10) { | |
| 2312 | + transition-delay: 0.45s; | |
| 2313 | +} | |
| 2314 | + | |
| 2315 | +.pix_customizer_setting .customize-inside-control-row .preview__letter, | |
| 2316 | +.pix_customizer_setting .customize-inside-control-row .preview__letter--checked { | |
| 2317 | + display: inline-block; | |
| 2318 | + padding: 3px; | |
| 2319 | + border-radius: 2px; | |
| 2320 | + color: white; | |
| 2321 | + margin-right: 5px; | |
| 2322 | + min-height: 26px; | |
| 2323 | + min-width: 26px; | |
| 2324 | + text-align: center; | |
| 2325 | + background-position: center center; | |
| 2326 | + background-repeat: no-repeat; | |
| 2327 | + background-size: 15px 15px; | |
| 2328 | + font-style: normal; | |
| 2329 | + vertical-align: baseline; | |
| 2330 | +} | |
| 2331 | + | |
| 2332 | +.pix_customizer_setting .customize-inside-control-row .preview__letter--checked { | |
| 2333 | + display: none; | |
| 2334 | +} | |
| 2335 | + | |
| 2336 | +[id*="sm_current_color_palette_control"] .customize-inside-control-row .palette__item[class] { | |
| 2337 | + -webkit-transform: none; | |
| 2338 | + transform: none; | |
| 2339 | +} | |
| 2340 | + | |
| 2341 | +[id*="sm_current_color_palette_control"] .variation-control { | |
| 2342 | + display: -ms-flexbox; | |
| 2343 | + display: flex; | |
| 2344 | +} | |
| 2345 | + | |
| 2346 | +.label__inner { | |
| 2347 | + color: #000000; | |
| 2348 | + background: #F5F6F1; | |
| 2349 | + padding: 7px 12px 7px 7px; | |
| 2350 | + z-index: 2; | |
| 2351 | + border-radius: 3px; | |
| 2352 | + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15); | |
| 2353 | +} | |
| 2354 | + | |
| 2355 | +.picker { | |
| 2356 | + position: relative; | |
| 2357 | + top: 0; | |
| 2358 | + left: 50%; | |
| 2359 | + width: 80%; | |
| 2360 | + max-width: 3em; | |
| 2361 | + margin-top: auto; | |
| 2362 | + margin-bottom: auto; | |
| 2363 | + border-radius: 50%; | |
| 2364 | + overflow: hidden; | |
| 2365 | + -webkit-transform: translate3d(-50%, 0, 0); | |
| 2366 | + transform: translate3d(-50%, 0, 0); | |
| 2367 | +} | |
| 2368 | + | |
| 2369 | +.colors .picker > i { | |
| 2370 | + display: block; | |
| 2371 | + position: absolute; | |
| 2372 | + top: 0; | |
| 2373 | + right: 0; | |
| 2374 | + bottom: 0; | |
| 2375 | + left: 0; | |
| 2376 | + box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.2); | |
| 2377 | + border-radius: 50%; | |
| 2378 | + pointer-events: none; | |
| 2379 | + z-index: 20; | |
| 2380 | +} | |
| 2381 | + | |
| 2382 | +.picker:before, | |
| 2383 | +.picker:after { | |
| 2384 | + content: ""; | |
| 2385 | + display: block; | |
| 2386 | + background: currentColor; | |
| 2387 | + border-radius: 50%; | |
| 2388 | +} | |
| 2389 | + | |
| 2390 | +.picker:before { | |
| 2391 | + padding-top: 100%; | |
| 2392 | +} | |
| 2393 | + | |
| 2394 | +.picker:after { | |
| 2395 | + position: absolute; | |
| 2396 | + top: 0; | |
| 2397 | + left: 0; | |
| 2398 | + width: 100%; | |
| 2399 | + height: 100%; | |
| 2400 | +} | |
| 2401 | + | |
| 2402 | +.fill { | |
| 2403 | + overflow: hidden; | |
| 2404 | +} | |
| 2405 | + | |
| 2406 | +.color:first-child .fill { | |
| 2407 | + border-top-left-radius: 5px; | |
| 2408 | + border-bottom-left-radius: 5px; | |
| 2409 | +} | |
| 2410 | + | |
| 2411 | +.color:last-child .fill { | |
| 2412 | + border-top-right-radius: 5px; | |
| 2413 | + border-bottom-right-radius: 5px; | |
| 2414 | +} | |
| 2415 | + | |
| 2416 | +.label { | |
| 2417 | + margin-right: auto; | |
| 2418 | +} | |
| 2419 | + | |
| 2420 | +#customize-theme-controls [id*="sm_current_color_palette_control"] { | |
| 2421 | + display: block; | |
| 2422 | + width: auto; | |
| 2423 | +} | |
| 2424 | + | |
| 2425 | +#customize-theme-controls [id*="sm_current_color_palette_control"] .color-palette-container { | |
| 2426 | + background: white; | |
| 2427 | +} | |
| 2428 | + | |
| 2429 | +#customize-theme-controls [id*="sm_current_color_palette_control"] .color-palette-container .description { | |
| 2430 | + margin-bottom: 15px; | |
| 2431 | +} | |
| 2432 | + | |
| 2433 | +#customize-theme-controls [id*="sm_current_color_palette_control"] .description.c-color-palette__notification { | |
| 2434 | + padding-top: 19px; | |
| 2435 | + margin-bottom: 0; | |
| 2436 | + font-size: inherit; | |
| 2437 | + font-weight: bold; | |
| 2438 | +} | |
| 2439 | + | |
| 2440 | +.c-color-palette__fields { | |
| 2441 | + position: relative; | |
| 2442 | +} | |
| 2443 | + | |
| 2444 | +.c-color-palette .iris-picker { | |
| 2445 | + position: absolute; | |
| 2446 | + top: 100%; | |
| 2447 | + left: 0; | |
| 2448 | + z-index: 100; | |
| 2449 | + margin-top: 1em; | |
| 2450 | + border: 0; | |
| 2451 | + box-shadow: black 0 3px 12px -4px; | |
| 2452 | +} | |
| 2453 | + | |
| 2454 | +.c-color-palette .iris-picker .iris-square-handle { | |
| 2455 | + border-color: transparent; | |
| 2456 | + left: -6px; | |
| 2457 | + top: -6px; | |
| 2458 | +} | |
| 2459 | + | |
| 2460 | +.c-color-palette .iris-picker .iris-square-handle:after { | |
| 2461 | + position: absolute; | |
| 2462 | + bottom: 0; | |
| 2463 | + right: 0; | |
| 2464 | + left: 0; | |
| 2465 | + top: 0; | |
| 2466 | + border: 2px solid white; | |
| 2467 | +} | |
| 2468 | + | |
| 2469 | +.c-color-palette .iris-picker .iris-square-value { | |
| 2470 | + box-shadow: none !important; | |
| 2471 | +} | |
| 2472 | + | |
| 2473 | +.colors { | |
| 2474 | + position: relative; | |
| 2475 | + display: -ms-flexbox; | |
| 2476 | + display: flex; | |
| 2477 | + -ms-flex-wrap: wrap; | |
| 2478 | + flex-wrap: wrap; | |
| 2479 | + -ms-flex-align: center; | |
| 2480 | + align-items: center; | |
| 2481 | + width: 100%; | |
| 2482 | + height: 3em; | |
| 2483 | +} | |
| 2484 | + | |
| 2485 | +.color { | |
| 2486 | + display: -ms-flexbox; | |
| 2487 | + display: flex; | |
| 2488 | + -ms-flex-direction: column; | |
| 2489 | + flex-direction: column; | |
| 2490 | + -ms-flex: 1 1 0; | |
| 2491 | + flex: 1 1 0; | |
| 2492 | + overflow: hidden; | |
| 2493 | + transition: -ms-flex-positive 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28); | |
| 2494 | + transition: flex-grow 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28); | |
| 2495 | +} | |
| 2496 | + | |
| 2497 | +.color.hidden { | |
| 2498 | + display: -ms-flexbox; | |
| 2499 | + display: flex; | |
| 2500 | + -ms-flex-positive: 0; | |
| 2501 | + flex-grow: 0; | |
| 2502 | + transition: -ms-flex-positive 0.3s cubic-bezier(0.6, -1, 0.74, 0.05); | |
| 2503 | + transition: flex-grow 0.3s cubic-bezier(0.6, -1, 0.74, 0.05); | |
| 2504 | +} | |
| 2505 | + | |
| 2506 | +.color.hidden .picker { | |
| 2507 | + opacity: 0; | |
| 2508 | + transition: opacity .2s ease-out; | |
| 2509 | +} | |
| 2510 | + | |
| 2511 | +.color .picker { | |
| 2512 | + transition: opacity .3s ease-in-out, border-color .3s ease-in-out; | |
| 2513 | + cursor: pointer; | |
| 2514 | +} | |
| 2515 | + | |
| 2516 | +.color.inactive .picker { | |
| 2517 | + opacity: 0.2; | |
| 2518 | +} | |
| 2519 | + | |
| 2520 | +.color.inactive .picker:hover { | |
| 2521 | + opacity: 1; | |
| 2522 | +} | |
| 2523 | + | |
| 2524 | +input.c-color-palette__input[class] { | |
| 2525 | + margin-top: 1em; | |
| 2526 | +} | |
| 2527 | + | |
| 2528 | +#customize-control-sm_toggle_advanced_settings_control { | |
| 2529 | + margin-bottom: 0; | |
| 2530 | + opacity: 0; | |
| 2531 | +} | |
| 2532 | + | |
| 2533 | +#customize-control-sm_toggle_advanced_settings_control button { | |
| 2534 | + width: 100%; | |
| 2535 | +} | |
| 2536 | + | |
| 2537 | +@-webkit-keyframes bounceIn { | |
| 2538 | + 0%, 20%, 40%, 60%, 80%, 100% { | |
| 2539 | + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); | |
| 2540 | + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); | |
| 2541 | + } | |
| 2542 | + 0% { | |
| 2543 | + opacity: 0; | |
| 2544 | + -webkit-transform: scale3d(0.3, 0.3, 0.3); | |
| 2545 | + transform: scale3d(0.3, 0.3, 0.3); | |
| 2546 | + } | |
| 2547 | + 20% { | |
| 2548 | + -webkit-transform: scale3d(1.1, 1.1, 1.1); | |
| 2549 | + transform: scale3d(1.1, 1.1, 1.1); | |
| 2550 | + } | |
| 2551 | + 40% { | |
| 2552 | + -webkit-transform: scale3d(0.9, 0.9, 0.9); | |
| 2553 | + transform: scale3d(0.9, 0.9, 0.9); | |
| 2554 | + } | |
| 2555 | + 60% { | |
| 2556 | + opacity: 1; | |
| 2557 | + -webkit-transform: scale3d(1.03, 1.03, 1.03); | |
| 2558 | + transform: scale3d(1.03, 1.03, 1.03); | |
| 2559 | + } | |
| 2560 | + 80% { | |
| 2561 | + -webkit-transform: scale3d(0.97, 0.97, 0.97); | |
| 2562 | + transform: scale3d(0.97, 0.97, 0.97); | |
| 2563 | + } | |
| 2564 | + 100% { | |
| 2565 | + opacity: 1; | |
| 2566 | + -webkit-transform: scale3d(1, 1, 1); | |
| 2567 | + transform: scale3d(1, 1, 1); | |
| 2568 | + } | |
| 2569 | +} | |
| 2570 | + | |
| 2571 | +@keyframes bounceIn { | |
| 2572 | + 0%, 20%, 40%, 60%, 80%, 100% { | |
| 2573 | + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); | |
| 2574 | + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); | |
| 2575 | + } | |
| 2576 | + 0% { | |
| 2577 | + opacity: 0; | |
| 2578 | + -webkit-transform: scale3d(0.3, 0.3, 0.3); | |
| 2579 | + transform: scale3d(0.3, 0.3, 0.3); | |
| 2580 | + } | |
| 2581 | + 20% { | |
| 2582 | + -webkit-transform: scale3d(1.1, 1.1, 1.1); | |
| 2583 | + transform: scale3d(1.1, 1.1, 1.1); | |
| 2584 | + } | |
| 2585 | + 40% { | |
| 2586 | + -webkit-transform: scale3d(0.9, 0.9, 0.9); | |
| 2587 | + transform: scale3d(0.9, 0.9, 0.9); | |
| 2588 | + } | |
| 2589 | + 60% { | |
| 2590 | + opacity: 1; | |
| 2591 | + -webkit-transform: scale3d(1.03, 1.03, 1.03); | |
| 2592 | + transform: scale3d(1.03, 1.03, 1.03); | |
| 2593 | + } | |
| 2594 | + 80% { | |
| 2595 | + -webkit-transform: scale3d(0.97, 0.97, 0.97); | |
| 2596 | + transform: scale3d(0.97, 0.97, 0.97); | |
| 2597 | + } | |
| 2598 | + 100% { | |
| 2599 | + opacity: 1; | |
| 2600 | + -webkit-transform: scale3d(1, 1, 1); | |
| 2601 | + transform: scale3d(1, 1, 1); | |
| 2602 | + } | |
| 2603 | +} | |
| 2604 | + | |
| 2605 | +#customize-theme-controls #sub-accordion-panel-style_manager_panel .customize-panel-description, | |
| 2606 | +#customize-theme-controls #sub-accordion-panel-theme_options_panel .customize-panel-description { | |
| 2607 | + display: block; | |
| 2608 | +} | |
| 2609 | + | |
| 2610 | +#customize-theme-controls li#accordion-panel-style_manager_panel h3.accordion-section-title:before { | |
| 2611 | + position: relative; | |
| 2612 | + float: right; | |
| 2613 | + content: "ï…•"; | |
| 2614 | + color: #aed2e5; | |
| 2615 | + font-family: dashicons; | |
| 2616 | + padding: 1px; | |
| 2617 | + margin-right: 28px; | |
| 2618 | + font-size: 17px; | |
| 2619 | + -webkit-font-smoothing: antialiased; | |
| 2620 | +} | |
| 2621 | + | |
| 2622 | +#customize-theme-controls li#accordion-panel-style_manager_panel h3.accordion-section-title:before { | |
| 2623 | + font-size: 18px; | |
| 2624 | + color: #f8bc30; | |
| 2625 | +} | |
| 2626 | + | |
| 2627 | +#customize-theme-controls li#accordion-section-sm_color_palettes_section h3.accordion-section-title:before { | |
| 2628 | + position: relative; | |
| 2629 | + float: right; | |
| 2630 | + content: "ï„€"; | |
| 2631 | + color: #aed2e5; | |
| 2632 | + font-family: dashicons; | |
| 2633 | + padding: 1px; | |
| 2634 | + margin-right: 28px; | |
| 2635 | + font-size: 17px; | |
| 2636 | + -webkit-font-smoothing: antialiased; | |
| 2637 | +} | |
| 2638 | + | |
| 2639 | +#customize-theme-controls li#accordion-section-sm_color_palettes_section h3.accordion-section-title { | |
| 2640 | + border-top: none; | |
| 2641 | +} | |
| 2642 | + | |
| 2643 | +#customize-theme-controls li#accordion-section-sm_font_palettes_section h3.accordion-section-title:before { | |
| 2644 | + position: relative; | |
| 2645 | + float: right; | |
| 2646 | + content: "ï„¢"; | |
| 2647 | + color: #aed2e5; | |
| 2648 | + font-family: dashicons; | |
| 2649 | + padding: 1px; | |
| 2650 | + margin-right: 28px; | |
| 2651 | + font-size: 17px; | |
| 2652 | + -webkit-font-smoothing: antialiased; | |
| 2653 | +} | |
| 2654 | + | |
| 2655 | +#customize-theme-controls li#accordion-section-sm_color_palettes_section h3.accordion-section-title:before, | |
| 2656 | +#customize-theme-controls li#accordion-section-sm_font_palettes_section h3.accordion-section-title:before { | |
| 2657 | + padding: 3px; | |
| 2658 | + margin-right: 5px; | |
| 2659 | + margin-top: -2px; | |
| 2660 | +} | |
| 2661 | + | |
| 2662 | +#customize-theme-controls li#accordion-panel-theme_options_panel h3.accordion-section-title:before { | |
| 2663 | + position: relative; | |
| 2664 | + float: right; | |
| 2665 | + content: ""; | |
| 2666 | + color: #aed2e5; | |
| 2667 | + font-family: dashicons; | |
| 2668 | + padding: 1px; | |
| 2669 | + margin-right: 28px; | |
| 2670 | + font-size: 17px; | |
| 2671 | + -webkit-font-smoothing: antialiased; | |
| 2672 | +} | |
| 2673 | + | |
| 2674 | +#customize-theme-controls li#accordion-panel-theme_options_panel h3.accordion-section-title { | |
| 2675 | + border-bottom: 1px solid #ddd; | |
| 2676 | + border-left: none; | |
| 2677 | + border-right: none; | |
| 2678 | + margin: 0 0 15px 0; | |
| 2679 | +} | |
| 2680 | + | |
| 2681 | +#customize-theme-controls li[id$="[general]"], | |
| 2682 | +#customize-theme-controls li[id$="[footer_section]"] { | |
| 2683 | + border-bottom: 1px solid #ddd; | |
| 2684 | + border-left: none; | |
| 2685 | + border-right: none; | |
| 2686 | + margin: 0 0 15px 0; | |
| 2687 | +} | |
| 2688 | + | |
| 2689 | +#customize-theme-controls li[id$="[general]"] h3.accordion-section-title { | |
| 2690 | + border-top: none; | |
| 2691 | +} | |
| 2692 | + | |
| 2693 | +.color .disc { | |
| 2694 | + display: block; | |
| 2695 | + overflow: hidden; | |
| 2696 | + position: absolute; | |
| 2697 | + top: 0; | |
| 2698 | + right: 0; | |
| 2699 | + bottom: 0; | |
| 2700 | + left: 0; | |
| 2701 | + z-index: 15; | |
| 2702 | + pointer-events: none; | |
| 2703 | + opacity: 0; | |
| 2704 | + transition: opacity .3s ease-in-out; | |
| 2705 | +} | |
| 2706 | + | |
| 2707 | +.color .disc:after { | |
| 2708 | + content: ""; | |
| 2709 | + -webkit-filter: blur(6px) saturate(0.7) brightness(1.1); | |
| 2710 | + filter: blur(6px) saturate(0.7) brightness(1.1); | |
| 2711 | + display: block; | |
| 2712 | + width: 200%; | |
| 2713 | + height: 200%; | |
| 2714 | + padding-top: 100%; | |
| 2715 | + position: absolute; | |
| 2716 | + top: -50%; | |
| 2717 | + left: -50%; | |
| 2718 | + -webkit-transform: scale(1); | |
| 2719 | + transform: scale(1); | |
| 2720 | + background-image: linear-gradient(330deg, transparent 50%, #ff8100 0), linear-gradient(300deg, transparent 50%, #ff5800 0), linear-gradient(270deg, transparent 50%, #c92323 0), linear-gradient(240deg, transparent 50%, #cc42a2 0), linear-gradient(210deg, transparent 50%, #9f49ac 0), linear-gradient(180deg, transparent 50%, #306cd3 0), linear-gradient(150deg, transparent 50%, #179067 0), linear-gradient(120deg, transparent 50%, #0eb5d6 0), linear-gradient(90deg, transparent 50%, #50b517 0), linear-gradient(60deg, transparent 50%, #ede604 0), linear-gradient(30deg, transparent 50%, #fc0 0), linear-gradient(0deg, transparent 50%, #feac00 0); | |
| 2721 | + background-clip: content-box,content-box,content-box,content-box,content-box,content-box,padding-box,padding-box,padding-box,padding-box,padding-box,padding-box; | |
| 2722 | +} | |
| 2723 | + | |
| 2724 | +.color.altered .disc { | |
| 2725 | + opacity: 1; | |
| 2726 | +} | |
| 2727 | + | |
| 2728 | +.customize-control-color .wp-picker-container .iris-picker .iris-palette-container { | |
| 2729 | + display: -ms-flexbox; | |
| 2730 | + display: flex; | |
| 2731 | + width: 215px; | |
| 2732 | +} | |
| 2733 | + | |
| 2734 | +.customize-control-color .wp-picker-container .iris-picker .iris-palette { | |
| 2735 | + width: auto !important; | |
| 2736 | + height: auto !important; | |
| 2737 | + -ms-flex: 1 1 0; | |
| 2738 | + flex: 1 1 0; | |
| 2739 | + float: none; | |
| 2740 | +} | |
| 2741 | + | |
| 2742 | +.customize-control-color .wp-picker-container .iris-picker .iris-palette:after { | |
| 2743 | + content: ""; | |
| 2744 | + display: block; | |
| 2745 | + padding-top: 100%; | |
| 2746 | +} | |
| 2747 | + | |
| 2748 | +.c-color-palette { | |
| 2749 | + padding: 30px 20px 18px; | |
| 2750 | +} | |
| 2751 | + | |
| 2752 | +[id="customize-control-sm_current_color_palette_control"][id] { | |
| 2753 | + margin-bottom: 0; | |
| 2754 | +} | |
| 2755 | + | |
| 2756 | +[id="customize-control-sm_current_color_palette_control"][id] ~ .customize-control { | |
| 2757 | + background-color: #FFFFFF; | |
| 2758 | + margin-bottom: 0; | |
| 2759 | + padding: 24px 20px 0; | |
| 2760 | +} | |
| 2761 | + | |
| 2762 | +#customize-control-sm_dark_color_primary_slider_control, | |
| 2763 | +#customize-control-sm_dark_color_secondary_slider_control, | |
| 2764 | +#customize-control-sm_dark_color_tertiary_slider_control { | |
| 2765 | + display: none !important; | |
| 2766 | +} | |
| 2767 | + | |
| 2768 | +.sm_color_matrix { | |
| 2769 | + display: -ms-flexbox; | |
| 2770 | + display: flex; | |
| 2771 | + -ms-flex-wrap: wrap; | |
| 2772 | + flex-wrap: wrap; | |
| 2773 | + margin-left: -15px; | |
| 2774 | +} | |
| 2775 | + | |
| 2776 | +.sm_color_matrix > * { | |
| 2777 | + display: grid; | |
| 2778 | + grid-auto-rows: 2px; | |
| 2779 | + grid-auto-columns: 2px; | |
| 2780 | + -ms-flex: 0 0 33.33333%; | |
| 2781 | + flex: 0 0 33.33333%; | |
| 2782 | + padding-top: 15px; | |
| 2783 | + padding-left: 15px; | |
| 2784 | +} | |
| 2785 | + | |
| 2786 | +.sm_color_matrix > * > * { | |
| 2787 | + background-color: currentColor; | |
| 2788 | + border-radius: 50%; | |
| 2789 | + border: 1px solid #ccc; | |
| 2790 | + -webkit-animation-duration: 0.75s; | |
| 2791 | + animation-duration: 0.75s; | |
| 2792 | + -webkit-animation-name: bounceIn; | |
| 2793 | + animation-name: bounceIn; | |
| 2794 | +} | |
| 2795 | + | |
| 2796 | +.sm_color_matrix > * > :nth-child(1) { | |
| 2797 | + grid-area: 16 / 12 / span 12 / span 12; | |
| 2798 | +} | |
| 2799 | + | |
| 2800 | +.sm_color_matrix > * > :nth-child(2) { | |
| 2801 | + grid-area: 26 / 24 / span 4 / span 4; | |
| 2802 | +} | |
| 2803 | + | |
| 2804 | +.sm_color_matrix > * > :nth-child(3) { | |
| 2805 | + grid-area: 13 / 24 / span 4 / span 4; | |
| 2806 | +} | |
| 2807 | + | |
| 2808 | +.sm_color_matrix > * > :nth-child(4) { | |
| 2809 | + grid-area: 8 / 8 / span 8 / span 8; | |
| 2810 | +} | |
| 2811 | + | |
| 2812 | +.sm_color_matrix > * > :nth-child(5) { | |
| 2813 | + grid-area: 32 / 8 / span 4 / span 4; | |
| 2814 | +} | |
| 2815 | + | |
| 2816 | +.sm_color_matrix > * > :nth-child(6) { | |
| 2817 | + grid-area: 30 / 16 / span 8 / span 8; | |
| 2818 | +} | |
| 2819 | + | |
| 2820 | +.sm_color_matrix > * > :nth-child(7) { | |
| 2821 | + grid-area: 4 / 20 / span 8 / span 8; | |
| 2822 | +} | |
| 2823 | + | |
| 2824 | +.sm_color_matrix > * > :nth-child(8) { | |
| 2825 | + grid-area: 17 / 26 / span 8 / span 8; | |
| 2826 | +} | |
| 2827 | + | |
| 2828 | +.sm_color_matrix > * > :nth-child(9) { | |
| 2829 | + grid-area: 22 / 2 / span 8 / span 8; | |
| 2830 | +} | |
| 2831 | + | |
| 2832 | +.sm_color_matrix > * > :nth-child(10) { | |
| 2833 | + grid-area: 28 / 11 / span 2 / span 2; | |
| 2834 | +} | |
| 2835 | + | |
| 2836 | +.sm_color_matrix > * > :nth-child(11) { | |
| 2837 | + grid-area: 9 / 31 / span 6 / span 6; | |
| 2838 | +} | |
| 2839 | + | |
| 2840 | +.sm_color_matrix > * > :nth-child(11) { | |
| 2841 | + grid-area: 26 / 30 / span 9 / span 9; | |
| 2842 | +} | |
| 2843 | + | |
| 2844 | +.sm_color_matrix > * > :nth-child(12) { | |
| 2845 | + grid-area: 17 / 7 / span 4 / span 4; | |
| 2846 | +} | |
| 2847 | + | |
| 2848 | +.sm_color_matrix > * > :nth-child(13) { | |
| 2849 | + grid-area: 19 / 36 / span 6 / span 6; | |
| 2850 | +} | |
| 2851 | + | |
| 2852 | +.sm_color_matrix > * > :nth-child(14) { | |
| 2853 | + grid-area: 12 / 18 / span 2 / span 2; | |
| 2854 | +} | |
| 2855 | + | |
| 2856 | +.sm_color_matrix > * > :nth-child(n+15) { | |
| 2857 | + display: none; | |
| 2858 | +} | |
| 2859 | + | |
| 2860 | +.sm-tabs { | |
| 2861 | + display: -ms-flexbox; | |
| 2862 | + display: flex; | |
| 2863 | + -ms-flex-pack: justify; | |
| 2864 | + justify-content: space-between; | |
| 2865 | + padding: 0 16px; | |
| 2866 | + text-align: center; | |
| 2867 | + border-bottom: 1px solid #DFE8EF; | |
| 2868 | +} | |
| 2869 | + | |
| 2870 | +.sm-tabs__item { | |
| 2871 | + padding: 12px 0; | |
| 2872 | + margin-bottom: -1px; | |
| 2873 | + -ms-flex-preferred-size: 31%; | |
| 2874 | + flex-basis: 31%; | |
| 2875 | + font-size: 14px; | |
| 2876 | + color: #416B7E; | |
| 2877 | + opacity: 0.7; | |
| 2878 | + border-bottom: 3px solid transparent; | |
| 2879 | + cursor: pointer; | |
| 2880 | + transition: all 0.2s ease; | |
| 2881 | +} | |
| 2882 | + | |
| 2883 | +.sm-tabs__item:not(.sm-tabs__item--active):hover { | |
| 2884 | + color: #2A3B44; | |
| 2885 | + border-bottom-color: #E2E4E7; | |
| 2886 | + opacity: 1; | |
| 2887 | +} | |
| 2888 | + | |
| 2889 | +.sm-tabs__item--active { | |
| 2890 | + color: #2A3B44; | |
| 2891 | + border-bottom-color: #57ABD5; | |
| 2892 | + opacity: 1; | |
| 2893 | +} | |
| 2894 | + | |
| 2895 | +[id="sub-accordion-section-sm_color_palettes_section"] { | |
| 2896 | + display: -ms-flexbox !important; | |
| 2897 | + display: flex !important; | |
| 2898 | + -ms-flex-direction: column; | |
| 2899 | + flex-direction: column; | |
| 2900 | + padding: 12px 0 0 !important; | |
| 2901 | + overflow: hidden; | |
| 2902 | +} | |
| 2903 | + | |
| 2904 | +[id="sub-accordion-section-sm_color_palettes_section"] #customize-control-sm_color_palette_control { | |
| 2905 | + -ms-flex-negative: 0; | |
| 2906 | + flex-shrink: 0; | |
| 2907 | + -ms-flex-positive: 1; | |
| 2908 | + flex-grow: 1; | |
| 2909 | + overflow-y: scroll; | |
| 2910 | + margin-bottom: 0; | |
| 2911 | + padding-top: 12px; | |
| 2912 | +} | |
| 2913 | + | |
| 2914 | +[id="sub-accordion-section-sm_color_palettes_section"] > * { | |
| 2915 | + -ms-flex-positive: 0; | |
| 2916 | + flex-grow: 0; | |
| 2917 | + padding: 0 12px; | |
| 2918 | +} | |
| 2919 | + | |
| 2920 | +[id="sub-accordion-section-sm_color_palettes_section"] [id="customize-control-sm_current_color_palette_control"] ~ * { | |
| 2921 | + display: none !important; | |
| 2922 | +} | |
| 2923 | + | |
| 2924 | +[id="sub-accordion-section-sm_color_palettes_section"] [id="customize-control-sm_palettes_description_control"] span, | |
| 2925 | +[id="sub-accordion-section-sm_color_palettes_section"] [id="customize-control-sm_filters_description_control"] span, | |
| 2926 | +[id="sub-accordion-section-sm_color_palettes_section"] [id="customize-control-sm_customize_description_control"] span { | |
| 2927 | + margin: 0; | |
| 2928 | +} | |
| 2929 | + | |
| 2930 | +[id="sub-accordion-section-sm_color_palettes_section"].sm-view-palettes [id="customize-control-sm_palettes_description_control"], | |
| 2931 | +[id="sub-accordion-section-sm_color_palettes_section"].sm-view-palettes [id="customize-control-sm_color_palette_control"] { | |
| 2932 | + display: block !important; | |
| 2933 | +} | |
| 2934 | + | |
| 2935 | +[id="sub-accordion-section-sm_color_palettes_section"].sm-view-filters [id="customize-control-sm_filters_description_control"], | |
| 2936 | +[id="sub-accordion-section-sm_color_palettes_section"].sm-view-filters [id="customize-control-sm_palette_filter_control"] { | |
| 2937 | + display: block !important; | |
| 2938 | +} | |
| 2939 | + | |
| 2940 | +[id="sub-accordion-section-sm_color_palettes_section"].sm-view-customize [id="customize-control-sm_customize_description_control"], | |
| 2941 | +[id="sub-accordion-section-sm_color_palettes_section"].sm-view-customize [id="customize-control-sm_coloration_level_control"], | |
| 2942 | +[id="sub-accordion-section-sm_color_palettes_section"].sm-view-customize [id="customize-control-sm_color_diversity_control"], | |
| 2943 | +[id="sub-accordion-section-sm_color_palettes_section"].sm-view-customize [id="customize-control-sm_shuffle_colors_control"], | |
| 2944 | +[id="sub-accordion-section-sm_color_palettes_section"].sm-view-customize [id="customize-control-sm_dark_mode_control"] { | |
| 2945 | + display: block !important; | |
| 2946 | +} | |
| 2947 | + | |
| 2948 | +[id="sub-accordion-section-sm_color_palettes_section"] [id="customize-control-sm_spacing_bottom_control"][id] { | |
| 2949 | + display: block !important; | |
| 2950 | + min-height: 24px; | |
| 2951 | + -ms-flex-positive: 1; | |
| 2952 | + flex-grow: 1; | |
| 2953 | +} | |
| 2954 | + | |
| 2955 | +[id="customize-control-sm_color_palette_control"] .customize-control-title, [id="customize-control-sm_color_palette_control"] .separator.label, | |
| 2956 | +[id="customize-control-sm_color_palette_control"] .customize-control-description { | |
| 2957 | + display: none; | |
| 2958 | +} | |
| 2959 | + | |
| 2960 | +.customize-control-radio[class][id="customize-control-sm_palette_filter_control"] > .customize-inside-control-row:not(:only-of-type) { | |
| 2961 | + display: block; | |
| 2962 | + width: auto; | |
| 2963 | +} | |
| 2964 | + | |
| 2965 | +.color[class*="sm_color"][class*="_connected"], .color[class*="sm_dark"][class*="_connected"], .color[class*="sm_light"][class*="_connected"] { | |
| 2966 | + display: none; | |
| 2967 | +} | |
| 2968 | + | |
| 2969 | +.c-color-palette__colors { | |
| 2970 | + position: relative; | |
| 2971 | +} | |
| 2972 | + | |
| 2973 | +.c-color-palette canvas, .c-color-palette svg { | |
| 2974 | + max-width: 100%; | |
| 2975 | + height: auto; | |
| 2976 | +} | |
| 2977 | + | |
| 2978 | +.c-color-palette__fields { | |
| 2979 | + position: absolute; | |
| 2980 | + top: 100%; | |
| 2981 | + left: 0; | |
| 2982 | + right: 0; | |
| 2983 | + z-index: 100; | |
| 2984 | +} | |
| 2985 | + | |
| 2986 | +[id="sub-accordion-section-sm_color_palettes_section"] > .customize-section-description-container { | |
| 2987 | + margin-bottom: 0; | |
| 2988 | + border-bottom: 1px solid #DFE8EF; | |
| 2989 | +} | |
| 2990 | + | |
| 2991 | +.sm-palette-filter .colors { | |
| 2992 | + width: auto; | |
| 2993 | + height: auto; | |
| 2994 | + padding: 10px 10px; | |
| 2995 | + border-radius: 999em; | |
| 2996 | +} | |
| 2997 | + | |
| 2998 | +.sm-palette-filter .picker:after { | |
| 2999 | + box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.2); | |
| 3000 | +} | |
| 3001 | + | |
| 3002 | +.sm-palette-filter > label { | |
| 3003 | + position: relative; | |
| 3004 | + display: block; | |
| 3005 | + margin: 0 0 10px; | |
| 3006 | +} | |
| 3007 | + | |
| 3008 | +.sm-palette-filter > label:hover .filter-label { | |
| 3009 | + opacity: 1; | |
| 3010 | +} | |
| 3011 | + | |
| 3012 | +.sm-palette-filter > input { | |
| 3013 | + display: none; | |
| 3014 | +} | |
| 3015 | + | |
| 3016 | +.sm-palette-filter .filter-label { | |
| 3017 | + position: absolute; | |
| 3018 | + top: 0; | |
| 3019 | + left: 0; | |
| 3020 | + z-index: 10; | |
| 3021 | + width: 100%; | |
| 3022 | + height: 100%; | |
| 3023 | + display: -ms-flexbox; | |
| 3024 | + display: flex; | |
| 3025 | + -ms-flex-align: center; | |
| 3026 | + align-items: center; | |
| 3027 | + -ms-flex-pack: center; | |
| 3028 | + justify-content: center; | |
| 3029 | + opacity: 0; | |
| 3030 | + transition: opacity .2s ease-out; | |
| 3031 | +} | |
| 3032 | + | |
| 3033 | +.sm-palette-filter .filter-label span { | |
| 3034 | + position: relative; | |
| 3035 | + z-index: 20; | |
| 3036 | +} | |
| 3037 | + | |
| 3038 | +.sm-palette-filter .filter-label:after { | |
| 3039 | + content: ""; | |
| 3040 | + display: block; | |
| 3041 | + position: absolute; | |
| 3042 | + top: 0; | |
| 3043 | + left: 0; | |
| 3044 | + z-index: 10; | |
| 3045 | + width: 100%; | |
| 3046 | + height: 100%; | |
| 3047 | + background-color: #ffffff; | |
| 3048 | + box-shadow: #d6e0e5 0 0 0 1px; | |
| 3049 | + border-radius: 999em; | |
| 3050 | +} | |
| 3051 | + | |
| 3052 | +.sm-palette-filter > input:checked + label .filter-label:after { | |
| 3053 | + background-color: #f7f9fa; | |
| 3054 | + box-shadow: none; | |
| 3055 | +} | |
| 3056 | + | |
| 3057 | +.sm-palette-filter > input:checked + label .colors { | |
| 3058 | + background-color: #f7f9fa; | |
| 3059 | + box-shadow: #57ABD5 0 0 0 2px; | |
| 3060 | +} | |
| 3061 | + | |
| 3062 | +.customize-control-sm_palette_filter .customize-control-title, .customize-control-sm_palette_filter .separator.label { | |
| 3063 | + display: none; | |
| 3064 | +} | |
| 3065 | + | |
| 3066 | +#customize-control-sm_font_palette_control ~ .customize-control { | |
| 3067 | + display: none !important; | |
| 3068 | +} | |
| 3069 | + | |
| 3070 | +.pix_customizer_setting .font_palette[class][class] .customize-inside-control-row { | |
| 3071 | + height: auto; | |
| 3072 | + padding-top: 52%; | |
| 3073 | + background-color: white; | |
| 3074 | + border-radius: 6px; | |
| 3075 | + overflow: hidden; | |
| 3076 | +} | |
| 3077 | + | |
| 3078 | +.pix_customizer_setting .font_palette[class][class] .customize-inside-control-row:before { | |
| 3079 | + border: 1px solid #DFE8EF; | |
| 3080 | + border-radius: 6px; | |
| 3081 | +} | |
| 3082 | + | |
| 3083 | +.pix_customizer_setting .font_palette[class][class] .customize-inside-control-row:before, .pix_customizer_setting .font_palette[class][class] .customize-inside-control-row:hover:before { | |
| 3084 | + box-shadow: 0 1px 0 0 #B8DAEB; | |
| 3085 | +} | |
| 3086 | + | |
| 3087 | +.pix_customizer_setting .font_palette[class][class] .customize-inside-control-row input { | |
| 3088 | + display: none; | |
| 3089 | +} | |
| 3090 | + | |
| 3091 | +.pix_customizer_setting .font_palette[class][class] .customize-inside-control-row label { | |
| 3092 | + border-radius: 6px; | |
| 3093 | + left: 0; | |
| 3094 | +} | |
| 3095 | + | |
| 3096 | +.pix_customizer_setting .font_palette[class][class] .customize-inside-control-row input + label { | |
| 3097 | + border: 2px solid transparent; | |
| 3098 | +} | |
| 3099 | + | |
| 3100 | +.pix_customizer_setting .font_palette[class][class] .customize-inside-control-row input:checked + label { | |
| 3101 | + border-color: #57ABD5; | |
| 3102 | +} | |
| 3103 | + | |
| 3104 | +.pix_customizer_setting .font_palette[class][class] .customize-inside-control-row .label__inner { | |
| 3105 | + display: none; | |
| 3106 | +} | |