| 1 |
/** |
| 2 |
* CSS code for the spinner animation and AJAX alert boxes. |
| 3 |
* |
| 4 |
* @package TablePress |
| 5 |
* @subpackage Admin CSS |
| 6 |
* @author Tobias Bäthge |
| 7 |
* @since 2.0.0 |
| 8 |
*/ |
| 9 |
|
| 10 |
/* Hour glass cursor, while waiting for AJAX */ |
| 11 |
body.wait * { |
| 12 |
cursor: wait !important; |
| 13 |
} |
| 14 |
|
| 15 |
/* Spinner/loading animation that is shown during saving/preview preparation */ |
| 16 |
.spinner.spinner-save-changes, |
| 17 |
.spinner.spinner-table-preview { |
| 18 |
float: none; |
| 19 |
margin: 0 0 0 6px; |
| 20 |
} |
| 21 |
|
| 22 |
#tablepress-page { |
| 23 |
/* Margins for dynamically created (inline) .notice messages */ |
| 24 |
div.ajax-alert { |
| 25 |
transition: opacity 2s 3s; |
| 26 |
|
| 27 |
&:not(.tablepress-postbox-table .ajax-alert) { |
| 28 |
margin: -10px 0 15px; |
| 29 |
} |
| 30 |
|
| 31 |
&.notice-error { |
| 32 |
transition-delay: 6s; |
| 33 |
} |
| 34 |
|
| 35 |
p { |
| 36 |
font-weight: bold; |
| 37 |
} |
| 38 |
|
| 39 |
pre { |
| 40 |
margin: -6px 0 0.5em 2px; |
| 41 |
|
| 42 |
+ p { |
| 43 |
display: none; |
| 44 |
} |
| 45 |
} |
| 46 |
} |
| 47 |
} |
| 48 |
|