PluginProbe
HTML Forms – Simple WordPress Forms Plugin / 1.0.4
HTML Forms – Simple WordPress Forms Plugin v1.0.4
1.7.0 trunk 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.2.0 1.3.0 1.3.1 1.3.10 1.3.11 1.3.12 1.3.13 1.3.14 1.3.15 1.3.16 All 67 releases
html-forms / assets / css / admin.css

admin.css in HTML Forms – Simple WordPress Forms Plugin 1.0.4, at assets/css/admin.css

544 lines 10.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .hf-tab {
2 display: none;
3 background: inherit;
4 border: none;
5 font-weight: initial; }
6 .hf-tab.hf-tab-active {
7 display: block; }
8 .hf-tab h2 {
9 margin-top: 20px; }
10
11 .hf-accordion {
12 border: 1px solid #e5e5e5;
13 margin-bottom: 6px; }
14
15 .hf-accordion-heading {
16 color: #555555;
17 background-color: #fff;
18 border-bottom: 1px solid #eeeeee;
19 padding: 10px 10px 11px 14px;
20 line-height: 21px;
21 cursor: pointer;
22 position: relative;
23 margin: 0;
24 font-size: 14px; }
25 .hf-accordion-heading:hover {
26 color: #23282d;
27 background: #f5f5f5; }
28 .hf-accordion-heading:after {
29 content: '\f140';
30 font: normal 20px/1 'dashicons';
31 float: right;
32 right: 20px; }
33
34 .hf-accordion.expanded .hf-accordion-heading:after {
35 content: "\f142"; }
36
37 .hf-accordion-content {
38 padding: 20px;
39 background: #fff; }
40
41 .hf-action-summary {
42 display: none; }
43
44 .hf-field-builder {
45 border: 1px solid #ccc;
46 padding: 20px;
47 background: #fff; }
48 .hf-field-builder h4:first-of-type {
49 margin-top: 0; }
50 .hf-field-builder label {
51 display: block;
52 font-weight: bold; }
53 .hf-field-builder label.inline,
54 .hf-field-builder label span {
55 font-weight: normal; }
56 .hf-field-builder input + .help {
57 margin-top: 0; }
58 .hf-field-builder input[type="text"] {
59 width: 100%; }
60 .hf-field-builder .available-fields button {
61 margin-right: 4px; }
62 .hf-field-builder .field-config *:last-child {
63 margin-bottom: 0; }
64
65 .hf-column:hover .hf-column-menu {
66 display: block; }
67
68 .hf-column-menu {
69 display: none;
70 float: right;
71 position: relative; }
72 .hf-column-menu .submenu-toggle:after {
73 content: "\f333";
74 font: normal 20px/1 'dashicons';
75 float: right;
76 right: 20px; }
77 .hf-column-menu .submenu {
78 border: 1px solid #e1e1e1;
79 display: none;
80 position: absolute;
81 top: 20px;
82 right: 0;
83 min-width: 140px;
84 background: white; }
85 .hf-column-menu .submenu a {
86 font-size: 12px;
87 padding: 2px 4px;
88 text-align: right;
89 display: block;
90 border-bottom: 1px dotted #e1e1e1; }
91 .hf-column-menu:hover .submenu {
92 display: block; }
93
94 .hf-tiny-margin {
95 margin-top: 10px;
96 margin-bottom: 10px; }
97
98 .hf-small-margin {
99 margin-top: 20px;
100 margin-bottom: 20px; }
101
102 .hf-medium-margin {
103 margin-top: 40px;
104 margin-bottom: 40px; }
105
106 .hf-well {
107 background: white;
108 padding: 20px;
109 border: 1px solid #ddd; }
110
111 .hf-danger,
112 .danger {
113 color: #a00; }
114
115 .hf-clear,
116 .clear {
117 clear: both; }
118
119 .hf-italic {
120 font-style: italic; }
121
122 .hf-small {
123 font-size: 90%; }
124
125 .pull-right,
126 .hf-pull-right {
127 float: right; }
128
129 .hf-required {
130 color: indianred;
131 font-size: 110%; }
132
133 .hf-muted {
134 font-weight: normal;
135 font-size: 90%;
136 color: #999; }
137
138 /* BASICS */
139 /* Codemirror */
140 .CodeMirror {
141 /* Set height, width, borders, and global font properties here */
142 font-family: monospace;
143 color: black;
144 border: 1px solid #ddd;
145 padding: 10px;
146 min-height: 500px;
147 font-weight: normal;
148 height: 500px; }
149
150 .CodeMirror-empty {
151 color: #999; }
152
153 /* PADDING */
154 .CodeMirror-lines {
155 padding: 4px 0;
156 /* Vertical padding around content */ }
157
158 .CodeMirror pre {
159 padding: 0 4px;
160 /* Horizontal padding of content */ }
161
162 .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
163 background-color: white;
164 /* The little square between H and V scrollbars */ }
165
166 /* GUTTER */
167 .CodeMirror-gutters {
168 border-right: 1px solid #ddd;
169 background-color: #f7f7f7;
170 white-space: nowrap; }
171
172 .CodeMirror-linenumber {
173 padding: 0 3px 0 5px;
174 min-width: 20px;
175 text-align: right;
176 color: #999;
177 white-space: nowrap; }
178
179 .CodeMirror-guttermarker {
180 color: black; }
181
182 .CodeMirror-guttermarker-subtle {
183 color: #999; }
184
185 /* CURSOR */
186 .CodeMirror-cursor {
187 border-left: 1px solid black;
188 border-right: none;
189 width: 0; }
190
191 /* Shown when moving in bi-directional text */
192 .CodeMirror div.CodeMirror-secondarycursor {
193 border-left: 1px solid silver; }
194
195 .cm-fat-cursor .CodeMirror-cursor {
196 width: auto;
197 border: 0;
198 background: #7e7; }
199
200 .cm-fat-cursor div.CodeMirror-cursors {
201 z-index: 1; }
202
203 .cm-animate-fat-cursor {
204 width: auto;
205 border: 0;
206 -webkit-animation: blink 1.06s steps(1) infinite;
207 -moz-animation: blink 1.06s steps(1) infinite;
208 animation: blink 1.06s steps(1) infinite;
209 background-color: #7e7; }
210
211 @-moz-keyframes blink {
212 0% { }
213 50% {
214 background-color: transparent; }
215 100% { } }
216
217 @-webkit-keyframes blink {
218 0% { }
219 50% {
220 background-color: transparent; }
221 100% { } }
222
223 @keyframes blink {
224 0% { }
225 50% {
226 background-color: transparent; }
227 100% { } }
228
229 /* Can style cursor different in overwrite (non-insert) mode */
230 .cm-tab {
231 display: inline-block;
232 text-decoration: inherit; }
233
234 .CodeMirror-ruler {
235 border-left: 1px solid #ccc;
236 position: absolute; }
237
238 /* DEFAULT THEME */
239 .cm-s-default .cm-header {
240 color: blue; }
241
242 .cm-s-default .cm-quote {
243 color: #090; }
244
245 .cm-negative {
246 color: #d44; }
247
248 .cm-positive {
249 color: #292; }
250
251 .cm-header, .cm-strong {
252 font-weight: bold; }
253
254 .cm-em {
255 font-style: italic; }
256
257 .cm-link {
258 text-decoration: underline; }
259
260 .cm-strikethrough {
261 text-decoration: line-through; }
262
263 .cm-s-default .cm-keyword {
264 color: #708; }
265
266 .cm-s-default .cm-atom {
267 color: #219; }
268
269 .cm-s-default .cm-number {
270 color: #164; }
271
272 .cm-s-default .cm-def {
273 color: #00f; }
274
275 .cm-s-default .cm-variable-2 {
276 color: #05a; }
277
278 .cm-s-default .cm-variable-3 {
279 color: #085; }
280
281 .cm-s-default .cm-comment {
282 color: #a50; }
283
284 .cm-s-default .cm-string {
285 color: #a11; }
286
287 .cm-s-default .cm-string-2 {
288 color: #f50; }
289
290 .cm-s-default .cm-meta {
291 color: #555; }
292
293 .cm-s-default .cm-qualifier {
294 color: #555; }
295
296 .cm-s-default .cm-builtin {
297 color: #30a; }
298
299 .cm-s-default .cm-bracket {
300 color: #997; }
301
302 .cm-s-default .cm-tag {
303 color: #170; }
304
305 .cm-s-default .cm-attribute {
306 color: #00c; }
307
308 .cm-s-default .cm-hr {
309 color: #999; }
310
311 .cm-s-default .cm-link {
312 color: #00c; }
313
314 .cm-s-default .cm-error {
315 color: #f00; }
316
317 .cm-invalidchar {
318 color: #f00; }
319
320 .CodeMirror-composing {
321 border-bottom: 2px solid; }
322
323 /* Default styles for common addons */
324 div.CodeMirror span.CodeMirror-matchingbracket {
325 color: #0f0; }
326
327 div.CodeMirror span.CodeMirror-nonmatchingbracket {
328 color: #f22; }
329
330 .CodeMirror-matchingtag {
331 background: rgba(255, 150, 0, 0.3); }
332
333 .CodeMirror-activeline-background {
334 background: #e8f2ff; }
335
336 /* STOP */
337 /* The rest of this file contains styles related to the mechanics of
338 the editor. You probably shouldn't touch them. */
339 .CodeMirror {
340 position: relative;
341 overflow: hidden;
342 background: white; }
343
344 .CodeMirror-scroll {
345 overflow: scroll !important;
346 /* Things will break if this is overridden */
347 /* 30px is the magic margin used to hide the element's real scrollbars */
348 /* See overflow: hidden in .CodeMirror */
349 margin-bottom: -30px;
350 margin-right: -30px;
351 padding-bottom: 30px;
352 height: 100%;
353 outline: none;
354 /* Prevent dragging from highlighting the element */
355 position: relative; }
356
357 .CodeMirror-sizer {
358 position: relative;
359 border-right: 30px solid transparent; }
360
361 /* The fake, visible scrollbars. Used to force redraw during scrolling
362 before actual scrolling happens, thus preventing shaking and
363 flickering artifacts. */
364 .CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
365 position: absolute;
366 z-index: 6;
367 display: none; }
368
369 .CodeMirror-vscrollbar {
370 right: 0;
371 top: 0;
372 overflow-x: hidden;
373 overflow-y: scroll; }
374
375 .CodeMirror-hscrollbar {
376 bottom: 0;
377 left: 0;
378 overflow-y: hidden;
379 overflow-x: scroll; }
380
381 .CodeMirror-scrollbar-filler {
382 right: 0;
383 bottom: 0; }
384
385 .CodeMirror-gutter-filler {
386 left: 0;
387 bottom: 0; }
388
389 .CodeMirror-gutters {
390 position: absolute;
391 left: 0;
392 top: 0;
393 z-index: 3; }
394
395 .CodeMirror-gutter {
396 white-space: normal;
397 height: 100%;
398 display: inline-block;
399 vertical-align: top;
400 margin-bottom: -30px;
401 /* Hack to make IE7 behave */
402 *zoom: 1;
403 *display: inline; }
404
405 .CodeMirror-gutter-wrapper {
406 position: absolute;
407 z-index: 4;
408 background: none !important;
409 border: none !important; }
410
411 .CodeMirror-gutter-background {
412 position: absolute;
413 top: 0;
414 bottom: 0;
415 z-index: 4; }
416
417 .CodeMirror-gutter-elt {
418 position: absolute;
419 cursor: default;
420 z-index: 4; }
421
422 .CodeMirror-gutter-wrapper {
423 -webkit-user-select: none;
424 -moz-user-select: none;
425 user-select: none; }
426
427 .CodeMirror-lines {
428 cursor: text;
429 min-height: 1px;
430 /* prevents collapsing before first draw */ }
431
432 .CodeMirror pre {
433 /* Reset some styles that the rest of the page might have set */
434 -moz-border-radius: 0;
435 -webkit-border-radius: 0;
436 border-radius: 0;
437 border-width: 0;
438 background: transparent;
439 font-family: inherit;
440 font-size: inherit;
441 margin: 0;
442 white-space: pre;
443 word-wrap: normal;
444 line-height: inherit;
445 color: inherit;
446 z-index: 2;
447 position: relative;
448 overflow: visible;
449 -webkit-tap-highlight-color: transparent; }
450
451 .CodeMirror-wrap pre {
452 word-wrap: break-word;
453 white-space: pre-wrap;
454 word-break: normal; }
455
456 .CodeMirror-linebackground {
457 position: absolute;
458 left: 0;
459 right: 0;
460 top: 0;
461 bottom: 0;
462 z-index: 0; }
463
464 .CodeMirror-linewidget {
465 position: relative;
466 z-index: 2;
467 overflow: auto; }
468
469 .CodeMirror-code {
470 outline: none; }
471
472 /* Force content-box sizing for the elements where we expect it */
473 .CodeMirror-scroll,
474 .CodeMirror-sizer,
475 .CodeMirror-gutter,
476 .CodeMirror-gutters,
477 .CodeMirror-linenumber {
478 -moz-box-sizing: content-box;
479 box-sizing: content-box; }
480
481 .CodeMirror-measure {
482 position: absolute;
483 width: 100%;
484 height: 0;
485 overflow: hidden;
486 visibility: hidden; }
487
488 .CodeMirror-cursor {
489 position: absolute; }
490
491 .CodeMirror-measure pre {
492 position: static; }
493
494 div.CodeMirror-cursors {
495 visibility: hidden;
496 position: relative;
497 z-index: 3; }
498
499 div.CodeMirror-dragcursors {
500 visibility: visible; }
501
502 .CodeMirror-focused div.CodeMirror-cursors {
503 visibility: visible; }
504
505 .CodeMirror-selected {
506 background: #d9d9d9; }
507
508 .CodeMirror-focused .CodeMirror-selected {
509 background: #d7d4f0; }
510
511 .CodeMirror-crosshair {
512 cursor: crosshair; }
513
514 .CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection {
515 background: #d7d4f0; }
516
517 .CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection {
518 background: #d7d4f0; }
519
520 .cm-searching {
521 background: #ffa;
522 background: rgba(255, 255, 0, 0.4); }
523
524 /* IE7 hack to prevent it from returning funny offsetTops on the spans */
525 .CodeMirror span {
526 *vertical-align: text-bottom; }
527
528 /* Used to force a border model for a node */
529 .cm-force-border {
530 padding-right: .1px; }
531
532 @media print {
533 /* Hide the cursor when printing */
534 .CodeMirror div.CodeMirror-cursors {
535 visibility: hidden; } }
536
537 /* See issue #2901 */
538 .cm-tab-wrap-hack:after {
539 content: ''; }
540
541 /* Help users use markselection to safely style text background */
542 span.CodeMirror-selectedtext {
543 background: none; }
544