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