PluginProbe
Depicter — Popup & Slider Builder / trunk
Depicter — Popup & Slider Builder vtrunk
4.8.1 trunk 1.0.0 1.1.0 1.1.2 1.1.4 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.3.5 1.3.8 1.5.0 1.5.1 1.5.2 1.5.5 1.6.0 1.6.1 1.6.2 1.7.0 All 76 releases
depicter / resources / styles / admin / admin.css

admin.css in Depicter — Popup & Slider Builder trunk, at resources/styles/admin/admin.css

293 lines 7.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 #toplevel_page_depicter-dashboard .wp-menu-image > img{
2 padding-top: 8px !important;
3 }
4 #toplevel_page_depicter-dashboard.current .wp-menu-image > img{
5 padding-left: 8px !important;
6 opacity: 1;
7 }
8 #toplevel_page_depicter-dashboard .wp-has-current-submenu:after{
9 border-right-color: #191919 !important;
10 }
11
12 .depicter-survey-container {
13 position: fixed;
14 top: 0;
15 left: 0;
16 width: 100vw;
17 height: 100vh;
18 background-color: #000000b3;
19 z-index: 9999;
20 align-items: center;
21 justify-content: center;
22 display: none;
23 }
24 .depicter-survey-container.show {
25 display: flex;
26 }
27
28 .depicter-survey-container .depicter-survey-list {
29 width: 423px;
30 background-color: #fff;
31 position: relative;
32 border-radius: 4px;
33 overflow: hidden;
34 box-shadow: 2px 10px 25px #00000040;
35 }
36 .depicter-survey-container .depicter-survey-list .depicter-logo {
37 display: flex;
38 justify-content: space-between;
39 align-items: center;
40 background-color: #222222;
41 padding: 16px;
42 }
43 .depicter-survey-container .depicter-survey-list .depicter-logo img {
44 max-width: 93px;
45 }
46 .depicter-survey-container .depicter-survey-list .depicter-logo .depicter-close {
47 width: 10px;
48 height: 10px;
49 transform: rotate(45deg);
50 cursor: pointer;
51 }
52 .depicter-survey-container .depicter-survey-list .depicter-logo .depicter-close:before {
53 content: '';
54 width: 11px;
55 height: 1px;
56 background-color: #fff;
57 display: block;
58 position: relative;
59 top: 6px;
60 }
61 .depicter-survey-container .depicter-survey-list .depicter-logo .depicter-close:after {
62 content: '';
63 width: 1px;
64 height: 11px;
65 background-color: #fff;
66 display: block;
67 position: relative;
68 left: 5px;
69 }
70 .depicter-survey-container .depicter-survey-list form {
71 padding: 24px 20px;
72 }
73 .depicter-survey-list form h3 {
74 margin: 0 0 15px 0;
75 color: #222222;
76 font-size: 15px;
77 line-height: 20px;
78 }
79 .depicter-survey-container .depicter-button-wrapper {
80 display: flex;
81 justify-content: flex-end;
82 margin-top: 33px;
83 position: relative
84 }
85 .depicter-survey-container .depicter-button-wrapper.loading:after {
86 content: ' ';
87 width: 10px;
88 height: 10px;
89 display: inline-block;
90 border-width: 1px 1px 1px 0px;
91 border-color: #fff;
92 border-style: solid;
93 position: absolute;
94 top: 9px;
95 right: 63px;
96 z-index: 1;
97 border-radius: 50%;
98 animation: depicterRotate 1s infinite linear;
99 }
100 .depicter-survey-container .depicter-button-wrapper.loading.skipped:after {
101 right: unset;
102 border-color: #000;
103 left: 180px;
104 }
105 .depicter-survey-container .depicter-button-wrapper input {
106 font-size: 11px;
107 line-height: 15px;
108 color: #222222;
109 padding: 7px 16px;
110 border-radius: 20px;
111 background-color: transparent;
112 margin-bottom: 0;
113 transition: all 0.3s ease;
114 }
115 .depicter-survey-container .depicter-button-wrapper input.depicter-submit:disabled {
116 cursor: default;
117 background-color: #efefef;
118 color: #a8a8a8;
119 }
120 .depicter-survey-container .depicter-button-wrapper.loading:not(.skipped) input.depicter-submit,
121 .depicter-survey-container .depicter-button-wrapper.loading.skipped input.depicter-skip{
122 color: transparent;
123 }
124 .depicter-survey-container .depicter-button-wrapper input.depicter-submit {
125 background-color: #4980F5;
126 color: #fff;
127 }
128 .depicter-deactivate-issue {
129 margin-top: 9px;
130 }
131 .depicter-deactivate-issue label {
132 vertical-align: text-bottom;
133 margin-left: 2px;
134 color: #222222;
135 font-size: 15px;
136 line-height: 20px;
137 }
138 .depicter-deactivate-issue input[type="text"] {
139 display: none;
140 width: calc(100% - 22px );
141 margin-left: 22px;
142 margin-top: 10px;
143 border-color: #AAAAAA;
144 background-color: #F8F8F8;
145 border-radius: 5px;
146 padding: 10px 15px;
147 font-size: 13px;
148 line-height: 18px;
149 }
150 input[type="radio"]:checked + label + br + input[type="text"] {
151 display: block;
152 }
153
154 @keyframes depicterRotate {
155 0% {
156 transform: rotate(0deg);
157 }
158 100% {
159 transform: rotate(360deg);
160 }
161 }
162
163 .depicter-editor-notice .depicter-notice-txts {
164 display: flex;
165 align-items: flex-start;
166 }
167 .depicter-editor-notice .depicter-notice-icon {
168 color: #F7BA19;
169 padding: 2px 7px;
170 border: 2px solid #F7BA19;
171 border-radius: 50%;
172 margin-right: 5px;
173 font-size: 14px;
174 }
175 .depicter-editor-notice .depicter-notice-txts > span:last-child {
176 font-family: roboto;
177 font-size: 12px;
178 line-height: 14px;
179 }
180 .oxygen-control .depicter-editor-notice .depicter-notice-txts > span:last-child {
181 color: #AAAAAA;
182 }
183 .depicter-editor-notice .depicter-notice-btns {
184 display: flex;
185 justify-content: space-between;
186 margin-top: 15px;
187 }
188 .depicter-editor-notice .depicter-edit-slider {
189 background-color: #4499C0;
190 color: #fff;
191 padding: 5px 10px;
192 width:100%;
193 margin-right: 5px;
194 }
195 .depicter-editor-notice .depicter-publish-slider {
196 padding: 5px 10px;
197 width:100%;
198 margin-left: 5px;
199 }
200
201 .fl-lightbox .fl-form-table tr[id*="fl-field-slider_control_buttons_"] td {
202 padding-left: 0 !important;
203 }
204 .depicter-state-icon {
205 width: 10px;
206 height: 10px;
207 display: inline-block;
208 border-width: 1px 1px 1px 0px;
209 border-color: #000;
210 border-style: solid;
211 border-radius: 50%;
212 animation: depicterRotate 1s infinite linear;
213 }
214 .wp-block-depicter-slider > iframe,
215 .oxy-depicter > iframe {
216 pointer-events: none;
217 }
218 .depicter-go-pro {
219 color: #58ba5d;
220 font-weight:700;
221 }
222 .depicter-go-pro:hover {
223 color: #58ba5d;
224 text-decoration: underline;
225 }
226
227 #adminmenu #toplevel_page_depicter-dashboard a[href="admin.php?page=depicter-dashboard-goto-pro"] {
228 font-weight: 700;
229 color: #fff;
230 background-color: #219653;
231 box-shadow:none;
232 padding: 0px 6px;
233 height: 31px;
234 font-size: 12px;
235 transition: all .3s;
236 text-align: center;
237 border-radius:6px;
238 margin: 5px 10px 0;
239 display: flex;
240 align-items: center;
241 justify-content: center;
242 }
243
244 #adminmenu #toplevel_page_depicter-dashboard a[href="admin.php?page=depicter-dashboard-goto-pro"]:before {
245 content: '';
246 background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTIuNDA3IiBoZWlnaHQ9IjExLjA0MyIgdmlld0JveD0iMCAwIDEyLjQwNyAxMS4wNDMiPiA8ZGVmcz4gPGxpbmVhckdyYWRpZW50IGlkPSJsaW5lYXItZ3JhZGllbnQiIHgxPSIwLjUiIHgyPSIwLjUiIHkyPSIxIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+IDxzdG9wIG9mZnNldD0iMCIgc3RvcC1jb2xvcj0iI2VmMCIvPiA8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNmZmQ1MDAiLz4gPC9saW5lYXJHcmFkaWVudD4gPC9kZWZzPiA8cGF0aCBpZD0iZ2VtIiBkPSJNLTExNTAuOTgzLDE1MjIuNzg4aDIuOTQ4bDIuMzQzLDcuMjI5LS4wMi4wMjZabTMuODEsMGgyLjM2OGwtLjAwOC0uMDA5aC4wNDJsLS4wMDguMDA5aDIuMzU0bC0yLjM3Myw3LjE4Ny0uMDMyLjA0MlptNS42MDksMGgyLjk0OGwtNS4zMjMsNy4xODdabTEuNTIzLS43ODNoLTEuNTIzbDAtLjAwOWgtMi4zNDhsMi42NjgtMywuMDU4LjA2NXYwbDIuNTksMi45MDctLjAyMy4wMzFabS03LjMxMy0zaDIuMzQ5bDAtLjAwOWgyLjk0OGwuMDIzLjAzMS0yLjU5MSwyLjkwOS0uMDU3LjA2NVptLTIuMTg4LDNoLTEuNDRsLS4wMTctLjAyMywyLjYtMi45MTcuMDU4LS4wNjYsMi42NjksM2gtMi4zNjNsMCwuMDA4WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTE1MSAtMTUxOSkiIGZpbGw9InVybCgjbGluZWFyLWdyYWRpZW50KSIvPiA8L3N2Zz4=) no-repeat 0 0;
247 display: inline-block;
248 width: 13px;
249 height: 13px;
250 margin-right:3px;
251 }
252
253 #adminmenu #toplevel_page_depicter-dashboard a[href="admin.php?page=depicter-dashboard-goto-pro"]:hover {
254 background-color: #1b7843;
255 }
256
257 .depicter-flush-cache.loading .dashicons {
258 animation: spin infinite 1500ms linear;
259 }
260
261 .depicter-flush-cache.success .dashicons:before {
262 color: #219653;
263 content: "\f147";
264 }
265
266 #adminmenu .depicter-notif-number {
267 animation: shake 3s infinite;
268 }
269
270 @keyframes shake {
271 0%, 33% {
272 transform: scale(1);
273 }
274 6.6%, 13.2% {
275 transform: scale(1.15);
276 }
277 19.8%, 26.4% {
278 transform: scale(0.9);
279 }
280 33%, 100% {
281 transform: scale(1);
282 }
283 }
284
285 @keyframes spin {
286 0% {
287 transform: rotate(0deg);
288 }
289 100% {
290 transform: rotate(360deg);
291 }
292 }
293