PluginProbe
MaxButtons – Create buttons / 6.26.1
MaxButtons – Create buttons v6.26.1
6.23 6.24 6.25 6.26 6.26.1 6.27 6.28 6.3 6.4 6.5 6.6 6.7 6.8 6.9 7.0 7.1 7.1.1 7.1.2 7.1.3 7.10 7.11 7.13 7.13.1 7.13.2 7.13.3 All 100 releases
maxbuttons / assets / scss / _global.scss

_global.scss in MaxButtons – Create buttons 6.26.1, at assets/scss/_global.scss

55 lines 918 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 // WARNING : This will load -outside- the #maxbutton namespacing, potentially affecting WP in general
2
3 /* Modal */
4
5 // colorpicker
6 .mb_colorpicker {
7 z-index: 200;
8
9 }
10
11
12 .ads
13 {
14 .button-primary {
15 display: block;
16 margin: 0 auto 20px auto;
17 width: 210px;
18 text-align: center;
19 overflow: visible;
20 }
21 }
22
23 .max-load-spinner {
24 background: url('/wp-admin/images/wpspin_light.gif') no-repeat;
25 background-size: 16px 16px;
26 opacity: .9;
27 //filter: alpha(opacity=70);
28 width: 16px;
29 height: 16px;
30 display: inline-block;
31 vertical-align: middle;
32 position: absolute;
33 top: 50%;
34 left: 50%;
35 margin-left: -8px;
36 margin-top: -8px;
37 z-index: 10;
38 &.large {
39 background: url('/wp-admin/images/wpspin_light-2x.gif') no-repeat;
40 width: 32px;
41 height: 32px;
42 }
43 }
44
45 .max-load-overlay {
46 position: absolute;
47 top: 0;
48 left: 0;
49 right: 0;
50 bottom: 0;
51 opacity: 0.80;
52 background-color: #f0f0f0;
53 z-index: 9;
54 }
55