PluginProbe ʕ •ᴥ•ʔ
Shortcoder — Create Shortcodes for Anything / 5.6
Shortcoder — Create Shortcodes for Anything v5.6
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-insert.css
shortcoder / admin / css Last commit date
menu-icon.css 4 years ago style-insert.css 4 years ago style-settings.css 4 years ago style-tools.css 4 years ago style.css 4 years ago
style-insert.css
249 lines
1 *{
2 box-sizing: border-box;
3 }
4 body{
5 color: #444;
6 font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
7 font-size: 13px;
8 line-height: 1.4em;
9 padding: 20px;
10 margin: 0;
11 background: #f7f7f7;
12 }
13 p, h3, h4 {
14 margin: 0;
15 }
16 input[type="text"], input[type="search"]{
17 padding: 5px;
18 border: 1px solid #CCC;
19 }
20 a {
21 color: #0073aa;
22 }
23 .button{
24 display: inline-block;
25 text-decoration: none;
26 font-size: 13px;
27 line-height: 26px;
28 height: 28px;
29 margin: 0;
30 padding: 0 10px 1px;
31 cursor: pointer;
32 border: 1px solid;
33 border-radius: 3px;
34 white-space: nowrap;
35 box-sizing: border-box;
36 color: #555;
37 border-color: #ccc;
38 background: #f7f7f7;
39 box-shadow: 0 1px 0 #ccc;
40 vertical-align: top
41 }
42 .button-primary {
43 background: #0085ba;
44 border-color: #0073aa #006799 #006799;
45 box-shadow: 0 1px 0 #006799;
46 color: #fff;
47 text-decoration: none;
48 text-shadow: 0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799;
49 }
50 p .button {
51 vertical-align: baseline
52 }
53 .button:focus, .button:hover {
54 background: #fafafa;
55 border-color: #999;
56 color: #23282d
57 }
58 .button:focus {
59 border-color: #5b9dd9;
60 box-shadow: 0 0 3px rgba(0,115,170,.8)
61 }
62 .button:active {
63 background: #eee;
64 border-color: #999;
65 box-shadow: inset 0 2px 5px -3px rgba(0,0,0,.5);
66 transform: translateY(1px)
67 }
68 .button-primary:hover, .button-primary:focus {
69 background: #008ec2;
70 border-color: #006799;
71 color: #fff;
72 }
73
74 .sc_menu {
75 margin: 0 0 20px 0;
76 }
77
78 .sc_list {
79 background: #fff;
80 box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.2);
81 }
82 .sc_wrap {
83 border-bottom: 1px solid #eee;
84 overflow: hidden;
85 }
86 .sc_wrap:last-child{
87 border-bottom: none;
88 }
89 .sc_wrap:hover .sc_tools{
90 display: block;
91 }
92 .sc_wrap.open .sc_head img{
93 transform: rotate(180deg);
94 }
95
96 .sc_options{
97 padding: 15px 15px 10px 15px;
98 background: #fcfcfc;
99 display: none;
100 }
101 .sc_options > *{
102 margin-bottom: 20px;
103 }
104 .sc_options > *:last-child{
105 margin-bottom: 0;
106 }
107
108 .sc_params_wrap {
109 display: flex;
110 flex-wrap: wrap;
111 }
112
113 .sc_params_wrap label {
114 flex-basis: 33%;
115 padding: 0 10px 10px 0;
116 }
117
118 .sc_params_wrap label input {
119 display: block;
120 width: 100%;
121 margin: 10px 25px 0 0px;
122 }
123
124 .sc_head {
125 padding: 15px;
126 cursor: pointer;
127 position: relative;
128 box-shadow: 0 1px 5px -3px rgba(0, 0, 0, 0.5);
129 }
130 .sc_head:hover {
131 background: lightyellow;
132 }
133 .sc_head h3{
134 display: inline-block;
135 }
136 .sc_head img{
137 vertical-align: middle;
138 margin-right: 10px;
139 transition: transform 0.8s;
140 }
141 .sc_tools{
142 position: absolute;
143 top: 10px;
144 right: 10px;
145 display: none;
146 }
147 .sc_tools .button{
148 margin-left: 10px;
149 }
150
151 .sc_foot {
152 padding: 0 0 10px 0;
153 }
154 .sc_foot:after{
155 content: '';
156 clear: both;
157 display: block;
158 }
159 .sc_foot .sc_insert{
160 float: right;
161 }
162
163 .sc_note{
164 padding: 15px;
165 text-align: center;
166 }
167 .sc_search_none{
168 display: none;
169 }
170
171 .top_btns{
172 float: right;
173 }
174 .top_btns .button{
175 margin-left: 10px;
176 }
177 .promo_link{
178 position: relative;
179 }
180 .promo_link i{
181 opacity: 0.5;
182 }
183 .promo_link span{
184 display: none;
185 position: absolute;
186 right: 0;
187 top: 35px;
188 z-index: 9999;
189 }
190 .promo_link:hover span{
191 display: block;
192 }
193 .promo_link span img{
194 width: 300px;
195 box-shadow: 0 2px 5px -2px rgb(0 0 0 / 50%);
196 border-radius: 10px;
197 }
198
199 /** Note **/
200 .note{
201 position: fixed;
202 bottom: 0;
203 left: 0;
204 right: 0;
205 background: #fff;
206 padding: 15px 20px;
207 border-top: 1px solid #dfdfdf;
208 box-shadow: 0 -2px 6px -5px #7d7d7d6e;
209 }
210 .note > p{
211 cursor: pointer;
212 font-size: 14px;
213 }
214 .note > p:hover{
215 color: #000;
216 }
217 .note table {
218 border-top: 1px solid #dfdfdf;
219 margin: 15px 0 0 0;
220 display: none;
221 }
222 .note pre{
223 background: #f7f7f7;
224 color: #333;
225 padding: 15px;
226 display: block;
227 margin: 0 0 20px 0;
228 border: 1px solid #dfdfdf;
229 }
230 .note td{
231 width: 50%;
232 padding: 15px 30px 0 30px;
233 vertical-align: top;
234 }
235 .note td p {
236 margin: 0 0 10px 0;
237 }
238
239 /** Footer **/
240 .footer_thanks {
241 margin: 20px 0 0 0;
242 font-style: italic;
243 }
244 .footer_thanks a{
245 text-decoration: none;
246 }
247 .footer_thanks a:hover{
248 text-decoration: underline;
249 }