mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-19 09:05:22 +01:00
6b775d4afe
See https://make.wordpress.org/core/2016/02/16/selective-refresh-in-the-customizer/. Props westonruter, valendesigns, DrewAPicture, ocean90. Fixes #27355. Built from https://develop.svn.wordpress.org/trunk@36586 git-svn-id: http://core.svn.wordpress.org/trunk@36553 1a063a9b-81f0-0310-95a4-ce76da25c4cd
22 lines
458 B
CSS
22 lines
458 B
CSS
.customize-partial-refreshing {
|
|
opacity: 0.25;
|
|
-webkit-transition: opacity 0.25s;
|
|
transition: opacity 0.25s;
|
|
cursor: progress;
|
|
}
|
|
|
|
/* Override highlight when refreshing */
|
|
.customize-partial-refreshing.widget-customizer-highlighted-widget {
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.customize-render-content-error {
|
|
outline: solid 1px red;
|
|
}
|
|
.customize-render-content-error-message {
|
|
display: block;
|
|
padding: 1em;
|
|
background-color: #FFCCCC;
|
|
}
|