PluginProbe
TablePress – Tables in WordPress made easy / 2.2.3
TablePress – Tables in WordPress made easy v2.2.3
3.3.4 3.3.3 3.3.2 3.3.1 trunk 1.12 1.14 1.9.2 2.0.4 2.1.7 2.1.8 2.2 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.3 2.3.1 2.3.2 2.4 2.4.1 2.4.2 2.4.3 2.4.4 All 44 releases
tablepress / admin / css / _spinner-alert.scss

_spinner-alert.scss in TablePress – Tables in WordPress made easy 2.2.3, at admin/css/_spinner-alert.scss

48 lines 807 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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