PluginProbe ʕ •ᴥ•ʔ
Shortcoder — Create Shortcodes for Anything / 6.2
Shortcoder — Create Shortcodes for Anything v6.2
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 3 years ago style-insert.css 3 years ago style-settings.css 3 years ago style-tools.css 3 years ago style.css 3 years ago
style-insert.css
265 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 display: flex;
130 flex-wrap: nowrap;
131 }
132 .sc_head:hover {
133 background: lightyellow;
134 }
135 .sc_head h3{
136 display: inline-block;
137 }
138 .sc_head img{
139 vertical-align: middle;
140 margin-right: 10px;
141 transition: transform 0.8s;
142 }
143 .sc_head p{
144 white-space: nowrap;
145 display: inline-block;
146 margin: 0 10px 0 15px;
147 color: #666;
148 flex: 1;
149 overflow: hidden;
150 text-overflow: ellipsis;
151 }
152 .sc_head:hover .sc_tools{
153 background: lightyellow;
154 }
155
156 .sc_tools{
157 position: absolute;
158 top: 10px;
159 right: 10px;
160 display: none;
161 background: #fff;
162 }
163 .sc_tools .button{
164 margin-left: 10px;
165 }
166
167 .sc_foot {
168 padding: 0 0 10px 0;
169 }
170 .sc_foot:after{
171 content: '';
172 clear: both;
173 display: block;
174 }
175 .sc_foot .sc_insert{
176 float: right;
177 }
178
179 .sc_note{
180 padding: 15px;
181 text-align: center;
182 }
183 .sc_search_none{
184 display: none;
185 }
186
187 .top_btns{
188 float: right;
189 }
190 .top_btns .button{
191 margin-left: 10px;
192 }
193 .promo_link{
194 position: relative;
195 }
196 .promo_link i{
197 opacity: 0.5;
198 }
199 .promo_link span{
200 display: none;
201 position: absolute;
202 right: 0;
203 top: 35px;
204 z-index: 9999;
205 }
206 .promo_link:hover span{
207 display: block;
208 }
209 .promo_link span img{
210 width: 300px;
211 box-shadow: 0 2px 5px -2px rgb(0 0 0 / 50%);
212 border-radius: 10px;
213 }
214
215 /** Note **/
216 .note{
217 position: fixed;
218 bottom: 0;
219 left: 0;
220 right: 0;
221 background: #ffffe2;
222 padding: 15px 20px;
223 border-top: 1px solid #dfdfdf;
224 box-shadow: 0 -2px 6px -5px #7d7d7d6e;
225 }
226 .note > p{
227 cursor: pointer;
228 font-size: 14px;
229 }
230 .note > p:hover{
231 color: #000;
232 }
233 .note table {
234 border-top: 1px solid #dfdfdf;
235 margin: 15px 0 0 0;
236 display: none;
237 }
238 .note pre{
239 background: #f7f7f7;
240 color: #333;
241 padding: 15px;
242 display: block;
243 margin: 0 0 20px 0;
244 border: 1px solid #dfdfdf;
245 }
246 .note td{
247 width: 50%;
248 padding: 15px 30px 0 30px;
249 vertical-align: top;
250 }
251 .note td p {
252 margin: 0 0 10px 0;
253 }
254
255 /** Footer **/
256 .footer_thanks {
257 margin: 20px 0 0 0;
258 font-style: italic;
259 }
260 .footer_thanks a{
261 text-decoration: none;
262 }
263 .footer_thanks a:hover{
264 text-decoration: underline;
265 }