PluginProbe ʕ •ᴥ•ʔ
Shortcoder — Create Shortcodes for Anything / 6.3.1
Shortcoder — Create Shortcodes for Anything v6.3.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-insert.css
shortcoder / admin / css Last commit date
menu-icon.css 2 years ago style-insert.css 2 years ago style-settings.css 2 years ago style-tools.css 2 years ago style.css 2 years ago
style-insert.css
226 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 flex-grow: 1;
116 padding: 0 10px 10px 0;
117 }
118
119 .sc_params_wrap label input {
120 display: block;
121 width: 100%;
122 margin: 10px 25px 0 0px;
123 }
124
125 .sc_head {
126 padding: 15px;
127 cursor: pointer;
128 position: relative;
129 box-shadow: 0 1px 5px -3px rgba(0, 0, 0, 0.5);
130 display: flex;
131 flex-wrap: nowrap;
132 }
133 .sc_head:hover {
134 background: lightyellow;
135 }
136 .sc_head h3{
137 display: inline-block;
138 }
139 .sc_head img{
140 vertical-align: middle;
141 margin-right: 10px;
142 transition: transform 0.8s;
143 }
144 .sc_head p{
145 white-space: nowrap;
146 display: inline-block;
147 margin: 0 10px 0 15px;
148 color: #666;
149 flex: 1;
150 overflow: hidden;
151 text-overflow: ellipsis;
152 }
153 .sc_head:hover .sc_tools{
154 background: lightyellow;
155 }
156
157 .sc_tools{
158 position: absolute;
159 top: 10px;
160 right: 10px;
161 display: none;
162 background: #fff;
163 }
164 .sc_tools .button{
165 margin-left: 10px;
166 }
167
168 .sc_foot {
169 padding: 0 0 10px 0;
170 }
171 .sc_foot:after{
172 content: '';
173 clear: both;
174 display: block;
175 }
176 .sc_foot .sc_insert{
177 float: right;
178 }
179
180 .sc_note{
181 padding: 15px;
182 text-align: center;
183 }
184 .sc_search_none{
185 display: none;
186 }
187
188 .top_btns{
189 float: right;
190 }
191 .top_btns .button{
192 margin-left: 10px;
193 }
194 .promo_link{
195 position: relative;
196 }
197 .promo_link i{
198 opacity: 0.5;
199 }
200 .promo_link span{
201 display: none;
202 position: absolute;
203 right: 0;
204 top: 35px;
205 z-index: 9999;
206 }
207 .promo_link:hover span{
208 display: block;
209 }
210 .promo_link span img{
211 width: 300px;
212 box-shadow: 0 2px 5px -2px rgb(0 0 0 / 50%);
213 border-radius: 10px;
214 }
215
216 /** Footer **/
217 .footer_thanks {
218 margin: 20px 0 0 0;
219 font-style: italic;
220 }
221 .footer_thanks a{
222 text-decoration: none;
223 }
224 .footer_thanks a:hover{
225 text-decoration: underline;
226 }