PluginProbe ʕ •ᴥ•ʔ
Shortcoder — Create Shortcodes for Anything / 6.5.1
Shortcoder — Create Shortcodes for Anything v6.5.1
trunk 3.0 3.0.1 3.1 3.2 3.3 3.4 3.4.1 4.0 4.0.1 4.0.2 4.0.3 4.1 4.1.1 4.1.2 4.1.3 4.1.4 4.1.5 4.1.6 4.1.7 4.1.8 4.1.9 4.2 4.3 4.4 4.5 4.6 5.0 5.0.1 5.0.2 5.0.3 5.0.4 5.1 5.2 5.2.1 5.3 5.3.1 5.3.2 5.3.3 5.3.4 5.4 5.5 5.6 5.7 5.8 6.0 6.1 6.2 6.3 6.3.1 6.3.2 6.4 6.5 6.5.1 6.5.2 6.5.3
shortcoder / admin / css / style-tools.css
shortcoder / admin / css Last commit date
menu-icon.css 11 months ago style-insert.css 11 months ago style-settings.css 11 months ago style-tools.css 11 months ago style.css 11 months ago
style-tools.css
59 lines
1 #sci_bg{
2 position: fixed;
3 top: 0;
4 left: 0;
5 right: 0;
6 bottom: 0;
7 background: rgba(0, 0, 0, 0.5);
8 z-index: 999999;
9 }
10
11 #sci_popup {
12 position: fixed;
13 z-index: 999999;
14 background: #fff;
15 top: 50px;
16 bottom: 50px;
17 left: 25%;
18 right: 25%;
19 border: 1px solid #dfdfdf;
20 box-shadow: 0 0 9px -4px;
21 display: flex;
22 flex-wrap: nowrap;
23 flex-direction: column;
24 }
25
26 #sci_popup iframe {
27 height: 100%;
28 background: #fff;
29 }
30
31 #sci_popup header {
32 position: relative;
33 padding: 10px 20px;
34 border-bottom: 1px solid #eee;
35 }
36 #sci_title{
37 background: url(../images/shortcoder.svg) no-repeat;
38 background-size: 16px;
39 padding-left: 28px;
40 background-position: left center;
41 }
42 #sci_close{
43 position: absolute;
44 right: 0;
45 top: 0;
46 bottom: 0;
47 width: 40px;
48 border-left: 1px solid #eee;
49 cursor: pointer;
50 }
51 #sci_close:hover{
52 background: #fafafa;
53 }
54 #sci_close > .dashicons {
55 position: absolute;
56 top: 50%;
57 left: 50%;
58 margin: -10px 0 0 -10px;
59 }