luci-app-banip: handle load errors of the countries file
[project/luci.git] / themes / luci-theme-material / htdocs / luci-static / material / cascade.css
1 /**
2 * Material is a clean HTML5 theme for LuCI. It is based on luci-theme-bootstrap and MUI
3 *
4 * luci-theme-material
5 * Copyright 2015 Lutty Yang <lutty@wcan.in>
6 *
7 * Have a bug? Please create an issue here on GitHub!
8 * https://github.com/LuttyYang/luci-theme-material/issues
9 *
10 * luci-theme-bootstrap:
11 * Copyright 2008 Steven Barth <steven@midlink.org>
12 * Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
13 * Copyright 2012 David Menting <david@nut-bolt.nl>
14 *
15 * MUI:
16 * https://github.com/muicss/mui
17 *
18 * Menu and loading spinner icons from IcoMoon:
19 * https://icomoon.io
20 *
21 * Pure CSS ripple effect:
22 * https://github.com/mladenplavsic/css-ripple-effect
23 *
24 * Licensed to the public under the Apache License 2.0
25 */
26
27 /*
28 * Include custom css
29 */
30 @import url("custom.css");
31
32 .table {
33 position: relative;
34 display: table;
35 }
36
37 .tr {
38 display: table-row;
39 }
40 .thead {
41 display: table-header-group;
42 }
43
44 .tbody {
45 display: table-row-group;
46 }
47
48 .tfoot {
49 display: table-footer-group;
50 }
51
52 .td,
53 .th {
54 line-height: normal;
55 display: table-cell;
56 padding: .5em;
57 text-align: center;
58 vertical-align: middle;
59 }
60
61 .th {
62 font-weight: bold;
63 }
64
65 .tr.placeholder {
66 height: 4em;
67 }
68
69 .tr.placeholder > .td {
70 line-height: 3;
71 position: absolute;
72 right: 0;
73 bottom: 0;
74 left: 0;
75 text-align: center !important;
76 background: inherit;
77 }
78
79 .td[width="33%"],
80 .td[width="33%"]~.td {
81 padding: 1.1em;
82 }
83
84 .table[width="33%"],
85 .th[width="33%"],
86 .td[width="33%"] {
87 width: 33%;
88 }
89
90 .table[width="100%"],
91 .th[width="100%"],
92 .td[width="100%"] {
93 width: 100%;
94 }
95
96 .col-1 {
97 flex: 1 1 30px !important;
98 }
99
100 .col-2 {
101 flex: 2 2 60px !important;
102 }
103
104 .col-3 {
105 flex: 3 3 90px !important;
106 }
107
108 .col-4 {
109 flex: 4 4 120px !important;
110 }
111
112 .col-5 {
113 flex: 5 5 150px !important;
114 }
115
116 .col-6 {
117 flex: 6 6 180px !important;
118 }
119
120 .col-7 {
121 flex: 7 7 210px !important;
122 }
123
124 .col-8 {
125 flex: 8 8 240px !important;
126 }
127
128 .col-9 {
129 flex: 9 9 270px !important;
130 }
131
132 .col-10 {
133 flex: 10 10 300px !important;
134 }
135
136 * {
137 box-sizing: border-box;
138 margin: 0;
139 padding: 0;
140 }
141
142 .h1,
143 .h2,
144 .h3,
145 .h4,
146 .h5,
147 .h6,
148 h1,
149 h2,
150 h3,
151 h4,
152 h5,
153 h6 {
154 font-family: inherit;
155 font-weight: normal;
156 line-height: 1.1 !important;
157 color: inherit;
158 }
159
160 html {
161 overflow-y: hidden;
162 -webkit-text-size-adjust: 100%;
163 -ms-text-size-adjust: 100%;
164 }
165
166 body {
167 font-size: .8rem;
168 background-color: #eee;
169 }
170
171 html,
172 body {
173 font-family: "Microsoft Yahei", "WenQuanYi Micro Hei", "sans-serif", "Helvetica Neue", "Helvetica", "Hiragino Sans GB";
174 font-family: var(--font-body);
175 height: 100%;
176 margin: 0;
177 padding: 0;
178 }
179
180 select {
181 padding: .36rem .8rem;
182 color: #555;
183 border: thin solid #ccc;
184 background-color: #fff;
185 background-image: none;
186 }
187
188 .btn,
189 button,
190 select,
191 input,
192 .cbi-dropdown {
193 min-height: 1.8rem;
194 padding: 0;
195 color: rgba(0, 0, 0, .87);
196 border: 0;
197 border-bottom: 2px solid rgba(0, 0, 0, .26);
198 border-radius: 0;
199 outline: 0;
200 background-color: transparent;
201 background-image: none;
202 box-shadow: none;
203 align-items: center;
204 }
205
206 select,
207 .cbi-dropdown {
208 width: inherit;
209 cursor: default;
210 }
211
212 select:not([multiple="multiple"]):focus,
213 input:not(.cbi-button):focus,
214 .cbi-dropdown:focus {
215 border-color: #09c;
216 border-color: var(--main-color);
217 }
218
219 .cbi-dropdown,
220 select[multiple="multiple"] {
221 height: auto;
222 }
223
224 pre {
225 overflow: auto;
226 }
227
228 code {
229 font-size: 1rem;
230 font-size-adjust: .35;
231 padding: 1px 3px;
232 color: #101010;
233 border-radius: 2px;
234 background: #ddd;
235 }
236
237 abbr {
238 cursor: help;
239 text-decoration: underline;
240 color: #005470;
241 }
242
243 hr {
244 margin: 1rem 0;
245 opacity: .1;
246 border-color: #eee;
247 }
248
249 header,
250 .main {
251 position: absolute;
252 width: 100%;
253 }
254
255 header {
256 position: fixed;
257 z-index: 2000;
258 float: left;
259 height: 4rem;
260 transition: box-shadow .2s;
261 box-shadow: 0 2px 5px rgba(0, 0, 0, .26);
262 }
263
264 footer {
265 font-size: .8rem;
266 overflow: hidden;
267 padding: 1rem;
268 text-align: right;
269 white-space: nowrap;
270 color: #aaa;
271 text-shadow: 0 0 2px #bbb;
272 }
273
274 footer > a {
275 text-decoration: none;
276 color: #aaa;
277 }
278
279 small {
280 font-size: 90%;
281 line-height: 1.42857143;
282 white-space: normal;
283 }
284
285 .main {
286 position: relative;
287 top: 4rem;
288 bottom: 0;
289 overflow-y: auto;
290 height: 100%;
291 height: calc(100% - 4rem);
292 }
293
294 .main > .loading {
295 position: fixed;
296 z-index: 1000;
297 top: 0;
298 opacity: 1;
299 visibility: visible;
300 width: 100%;
301 height: 100%;
302 pointer-events: none;
303 background-color: rgb(240, 240, 240);
304 transition: visibility 400ms, opacity 400ms;
305 }
306
307 .main > .loading > span {
308 font-family: monospace;
309 font-size: 2rem;
310 font-size-adjust: .35;
311 position: relative;
312 top: 12.5%;
313 display: block;
314 text-align: center;
315 color: #888;
316 }
317
318 .main > .loading > span > .loading-img {
319 position: relative;
320 top: .1rem;
321 left: .05rem;
322 display: inline-block;
323 width: 1.25rem;
324 height: 1.25rem;
325 margin-right: 1rem;
326 animation: anim-rotate 2s infinite linear;
327 background: url(./icons/spinner.svg) no-repeat center;
328 }
329
330 @keyframes anim-rotate {
331 0% {
332 -webkit-transform: rotate(0);
333 -ms-transform: rotate(0);
334 transform: rotate(0);
335 }
336 100% {
337 -webkit-transform: rotate(360deg);
338 -ms-transform: rotate(360deg);
339 transform: rotate(360deg);
340 }
341 }
342
343 .main-left {
344 position: fixed;
345 top: 4rem;
346 float: left;
347 overflow-x: auto;
348 width: 15%;
349 width: calc(0% + 15rem);
350 height: 100%;
351 height: calc(100% - 4rem);
352 background-color: #fff;
353 background-color: var(--menu-bg-color);
354 transition: visibility 400ms, width 400ms;
355 }
356
357 .main-right {
358 float: right;
359 width: 85%;
360 width: calc(100% - 15rem);
361 height: 100%;
362 background-color: #eee;
363 }
364
365 .main-right > #maincontent {
366 background-color: #eee;
367 }
368
369 .pull-right {
370 float: right;
371 }
372
373 .pull-left {
374 float: left;
375 }
376
377 .nowrap:not(.td) {
378 white-space: nowrap;
379 }
380
381 [disabled="disabled"] {
382 pointer-events: none;
383 }
384
385 header {
386 color: #fff;
387 color: var(--header-color);
388 background: #09c;
389 background: var(--header-bg);
390 }
391
392 header > .fill > .container {
393 margin-top: .5rem;
394 padding: .5rem 1rem 0 1rem;
395 -webkit-user-select: none;
396 -moz-user-select: none;
397 -ms-user-select: none;
398 user-select: none;
399 }
400
401 header > .fill > .container > #logo {
402 margin: 0 3.5rem 0 1.5rem;
403 }
404
405 header > .fill > .container > #logo > img {
406 width: calc(0% + 10rem);
407 margin-top: -.1rem;
408 }
409
410 header > .fill > .container > .brand {
411 font-size: 1.4rem;
412 position: absolute;
413 cursor: default;
414 vertical-align: text-bottom;
415 text-decoration: none;
416 color: #fff;
417 color: var(--header-color);
418 }
419
420 header > .fill > .container > .status {
421 position: absolute;
422 top: 25%;
423 right: 1em;
424 float: right;
425 }
426
427 header > .fill > .container > .status > * {
428 position: relative;
429 top: .2rem;
430 float: left;
431 margin-left: .3rem;
432 cursor: pointer;
433 }
434
435 .modemenu-buttons {
436 display: flex;
437 flex-wrap: wrap;
438 align-items: center;
439 color: #fff;
440 color: var(--header-color);
441 background: #09c;
442 background: var(--header-bg);
443 padding: .5rem;
444 transition: box-shadow .2s;
445 box-shadow: 0 2px 5px rgb(0 0 0 / 26%);
446 }
447
448 #modemenu {
449 margin: 0.25rem;
450 display: flex;
451 align-items: center;
452 flex-wrap: wrap;
453 }
454
455 #modemenu > li > a {
456 font-size: .8rem;
457 font-weight: bold;
458 padding: .3rem .8rem;
459 white-space: nowrap;
460 text-decoration: none;
461 text-transform: uppercase;
462 color: #fff !important;
463 border-radius: 3px;
464 background-color: #bfbfbf;
465 text-shadow: none;
466 }
467
468 #modemenu > li > a.active {
469 background-color: #5bc0de !important;
470 }
471
472 #modemenu > li.divider {
473 margin-left: .25rem;
474 margin-right: .25rem;
475 border: .5rem solid var(--submenu-bg-hover);
476 border-left: 1px solid var(--submenu-bg-hover);
477 border-right: 1px solid var(--submenu-bg-hover);
478 border-radius: 1rem;
479 }
480
481 #xhr_poll_status {
482 display: flex;
483 }
484
485 .danger {
486 background-color: #ff7d60 !important;
487 }
488
489 .warning {
490 background-color: #f0e68c !important;
491 }
492
493 .success {
494 background-color: #5cb85c !important;
495 }
496
497 .notice,
498 [data-indicator]:not([data-style="inactive"]) {
499 background-color: #5bc0de !important;
500 }
501
502 .error {
503 color: #f00;
504 }
505
506 .alert,
507 .alert-message {
508 font-weight: bold;
509 margin-bottom: 1em;
510 padding: 1rem;
511 border: 0;
512 border-radius: 0 !important;
513 background-color: #fff;
514 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12);
515 text-shadow: 1px 1px rgba(0, 0, 0, .1);
516 }
517
518 .alert-message > h4 {
519 font-size: 110%;
520 font-weight: bold;
521 }
522
523 .alert-message > * {
524 margin: .5rem 0;
525 }
526
527 .alert-message .btn {
528 padding: .3rem .6rem;
529 }
530
531 .container .alert,
532 .container .alert-message {
533 margin-top: 1rem;
534 }
535
536 .main > .main-left > .nav {
537 margin-top: .5rem;
538 }
539
540 .main > .main-left > .nav > li {
541 cursor: pointer;
542 -webkit-user-select: none;
543 -moz-user-select: none;
544 -ms-user-select: none;
545 user-select: none;
546 }
547
548 .main > .main-left > .nav > li:last-child {
549 display: flex;
550 align-items: center;
551 margin: 2rem 0 1rem 0;
552 padding: 0 0 0 2rem;
553 }
554
555 .main > .main-left > .nav > li a {
556 display: block;
557 color: #5f6368;
558 color: var(--menu-color);
559 }
560
561 .main > .main-left > .nav > li.active > a {
562 color: #fff;
563 }
564
565 .main > .main-left > .nav > li.active {
566 background-color: #09c;
567 background-color: var(--submenu-bg-hover-active);
568 }
569
570 .main > .main-left > .nav > li.slide.active {
571 background-color: unset;
572 }
573
574 .main > .main-left > .nav > .slide {
575 padding: 0;
576 }
577
578 .main > .main-left > .nav > .slide > ul {
579 display: none;
580 }
581
582 .main > .main-left > .nav > .slide.active > ul {
583 display: block;
584 }
585
586 .main > .main-left > .nav > .slide > .menu,
587 .main > .main-left > .nav > li > [data-title] {
588 font-size: 1.15rem;
589 font-weight: 500;
590 display: flex;
591 align-items: center;
592 width: 100%;
593 padding: .5rem 1rem;
594 text-decoration: none;
595 color: #202124;
596 color: var(--main-menu-color);
597 }
598
599 .main > .main-left > .nav > .slide > .menu::before {
600 position: absolute;
601 right: 17px;
602 width: 16px;
603 height: 16px;
604 content: "";
605 background: url(./icons/arrow.svg) no-repeat;
606 }
607
608 .main > .main-left > .nav > .slide > .menu.active::before {
609 transform: rotate(-180deg);
610 }
611
612 body[class*="node-"] > .main > .main-left > .nav > .slide > .menu::before {
613 transition: transform .1s ease-in-out;
614 }
615
616 body[class*="node-"] > .main > .main-left > .nav > .slide > .menu.active::before {
617 transition: transform .2s ease-in-out;
618 }
619
620 .main > .main-left[style*="overflow: hidden"] > .nav > .slide > .menu::before {
621 display: none;
622 }
623
624 .main > .main-left > .nav > li:last-child::before {
625 position: absolute;
626 left: 14px;
627 width: 24px;
628 height: 24px;
629 content: url(./icons/logout.svg);
630 }
631
632 .main > .main-left > .nav > li:hover,
633 .main > .main-left > .nav > .slide > .menu:hover {
634 background: #d4d4d4;
635 background: var(--submenu-bg-hover);
636 }
637
638 .main > .main-left > .nav > .slide:hover {
639 background: none;
640 }
641
642 .main > .main-left > .nav > .slide > .slide-menu > .active {
643 background-color: #09c;
644 background-color: var(--submenu-bg-hover-active);
645 }
646
647 .main > .main-left > .nav > .slide > .slide-menu > li > a {
648 white-space: nowrap;
649 text-decoration: none;
650 padding: .4rem 2rem;
651 }
652
653 .main > .main-left > .nav > .slide > .slide-menu > .active > a {
654 color: #fff;
655 }
656
657 .main > .main-left > .nav > .slide > .slide-menu > li:hover {
658 background: #d4d4d4;
659 background: var(--submenu-bg-hover);
660 }
661
662 .main > .main-left > .nav > .slide > .slide-menu > li:not(.active):hover > a {
663 color: #202124;
664 color: var(--menu-color-hover);
665 }
666
667 .main > .main-left > .nav > .slide > .slide-menu > .active:hover {
668 background-color: #09c;
669 background-color: var(--main-color);
670 }
671
672 /* ripple effect */
673 .main > .main-left > .nav > .slide > .menu,
674 .main > .main-left > .nav > .slide > .slide-menu > li,
675 .main > .main-left > .nav > li:last-child {
676 position: relative;
677 overflow: hidden;
678 transform: translate3d(0, 0, 0);
679 }
680
681 .main > .main-left > .nav > .slide > .menu::after,
682 .main > .main-left > .nav > .slide > .slide-menu > li::after,
683 .main > .main-left > .nav > li:last-child::after {
684 position: absolute;
685 top: 0;
686 left: 0;
687 display: block;
688 width: 100%;
689 height: 100%;
690 content: "";
691 transition: transform .5s, opacity 1s;
692 transform: scale(10, 10);
693 pointer-events: none;
694 opacity: 0;
695 background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
696 background-repeat: no-repeat;
697 background-position: 50%;
698 }
699
700 .main > .main-left > .nav > .slide > .menu:active::after,
701 .main > .main-left > .nav > .slide > .slide-menu > li:active::after,
702 .main > .main-left > .nav > li:last-child:active::after {
703 transition: 0s;
704 transform: scale(0, 0);
705 opacity: .2;
706 }
707
708 #maincontent > .container {
709 margin: 0 2rem 1rem 2rem;
710 }
711
712 ul {
713 line-height: normal;
714 }
715
716 li {
717 list-style-type: none;
718 }
719
720 h1 {
721 font-size: 2rem;
722 padding-bottom: 10px;
723 border-bottom: thin solid #eee;
724 }
725
726 h2 {
727 font-size: 1.8rem;
728 margin: 2rem 0 0 0;
729 padding-bottom: 10px;
730 border-bottom: thin solid #eee;
731 }
732
733 h3 {
734 font-size: 1.4rem;
735 margin: 2rem 0 0 0;
736 padding-bottom: 10px;
737 }
738
739 h4 {
740 font-size: 1.2rem;
741 margin: 2rem 0 0 0;
742 padding-bottom: 10px;
743 }
744
745 h5 {
746 font-size: 1rem;
747 margin: 2rem 0 0 0;
748 padding-bottom: 10px;
749 }
750
751 .cbi-section,
752 .cbi-section-error,
753 #iptables,
754 .Firewall form,
755 #cbi-network > .cbi-section-node,
756 #cbi-wireless > .cbi-section-node,
757 #cbi-wireless > #wifi_assoclist_table,
758 [data-tab-title],
759 [data-page^="admin-system-admin"]:not(.node-main-login) .cbi-map:not(#cbi-dropbear),
760 [data-page="admin-system-opkg"] #maincontent > .container {
761 font-family: inherit;
762 font-weight: normal;
763 font-style: normal;
764 line-height: normal;
765 min-width: inherit;
766 margin: 1rem 0 0 0;
767 padding: 2rem;
768 border: 0;
769 border-radius: 0;
770 background-color: #fff;
771 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12);
772 }
773
774 .cbi-modal .cbi-section,
775 .cbi-section .cbi-section {
776 padding: 0;
777 box-shadow: none;
778 }
779
780 .cbi-modal .cbi-tabmenu {
781 margin-left: 0;
782 }
783
784 .cbi-map-descr,
785 .cbi-section-descr {
786 font-size: small;
787 line-height: 1.42857143;
788 padding: .5rem;
789 color: #999;
790 }
791
792 .cbi-map-descr + fieldset {
793 margin-top: 1rem;
794 }
795
796 .cbi-section > legend {
797 display: none !important;
798 }
799
800 fieldset > fieldset,
801 .cbi-section > .cbi-section {
802 margin: 0;
803 padding: 0;
804 border: 0;
805 box-shadow: none;
806 }
807
808 .cbi-section > h3:first-child,
809 .panel-title {
810 font-size: 1.4rem;
811 line-height: 1;
812 display: block;
813 width: 100%;
814 margin: 0;
815 margin-bottom: .5rem;
816 padding-bottom: 1rem;
817 color: #404040;
818 border-bottom: thin solid #eee;
819 }
820
821 .cbi-section > h4:first-child,
822 .cbi-section > p:first-child,
823 [data-tab-title] > h3:first-child,
824 [data-tab-title] > h4:first-child,
825 [data-tab-title] > p:first-child {
826 padding-top: 1rem;
827 }
828
829 table {
830 border-spacing: 0;
831 border-collapse: collapse;
832 }
833
834 table,
835 .table {
836 overflow-y: hidden;
837 width: 100%;
838 box-shadow: 0 0 0 1px #ddd;
839 }
840
841 table > tbody > tr > td,
842 table > tbody > tr > th,
843 table > tfoot > tr > td,
844 table > tfoot > tr > th,
845 table > thead > tr > td,
846 table > thead > tr > th,
847 .table > .tbody > .tr > .td,
848 .table > .tbody > .tr > .th,
849 .table > .tfoot > .tr > .td,
850 .table > .tfoot > .tr > .th,
851 .table > .thead > .tr > .td,
852 .table > .thead > .tr > .th,
853 .table > .tr > .td.cbi-value-field,
854 .table > .tr > .th.cbi-section-table-cell {
855 padding: .5rem;
856 }
857
858 .container > .cbi-section:first-of-type > .table[width="100%"] > .tr > .td {
859 padding: .6rem;
860 }
861
862 .cbi-section-table-cell {
863 line-height: 1.1;
864 align-self: flex-end;
865 flex: 1 1 auto;
866 }
867
868 tr > td,
869 tr > th,
870 .tr > .td,
871 .tr > .th,
872 .cbi-section-table-row::before,
873 #cbi-wireless > #wifi_assoclist_table > .tr:nth-child(2) {
874 border-top: thin solid #ddd;
875 }
876
877 #cbi-wireless .td,
878 #cbi-network .tr:first-child > .td,
879 .table[width="100%"] > .tr:first-child > .td,
880 [data-page="admin-network-diagnostics"] .tr > .td,
881 .tr.table-titles > .th,
882 .tr.cbi-section-table-titles > .th {
883 border-top: 0 !important;
884 }
885
886 .table[width="100%"] > .tr:first-child > .td {
887 margin: auto 0;
888 }
889
890 .cbi-section-table-row {
891 margin-bottom: 1rem;
892 text-align: center !important;
893 background: #f4f4f4;
894 }
895
896 .cbi-section-table-row:last-child {
897 margin-bottom: 0;
898 }
899
900 .cbi-section-table-row > .cbi-value-field .cbi-dropdown,
901 .cbi-section-table-row > .cbi-value-field .cbi-input-select,
902 .cbi-section-table-row > .cbi-value-field .cbi-input-text,
903 .cbi-section-table-row > .cbi-value-field .cbi-input-password {
904 width: 100%;
905 }
906
907 .cbi-section-table-row > .cbi-value-field [data-dynlist] > input,
908 .cbi-section-table-row > .cbi-value-field input.cbi-input-password {
909 width: calc(100% - 1.5rem);
910 }
911
912 .cbi-section-table-row .td {
913 text-align: center !important;
914 }
915
916 div > table > tbody > tr:nth-of-type(2n),
917 div > .table > .tr:nth-of-type(2n) {
918 background-color: #f9f9f9;
919 }
920
921 /* fix multiple table */
922 table table,
923 .table .table,
924 .cbi-value-field table,
925 .cbi-value-field .table,
926 td > table > tbody > tr > td,
927 .td > .table > .tbody > .tr > .td,
928 .cbi-value-field > table > tbody > tr > td,
929 .cbi-value-field > .table > .tbody > .tr > .td {
930 border: 0;
931 }
932
933 /* button style */
934 .btn,
935 .cbi-button,
936 .item::after {
937 font-size: .8rem;
938 display: inline-block;
939 width: auto !important;
940 padding: 0 .8rem;
941 cursor: pointer;
942 -webkit-user-select: none;
943 -moz-user-select: none;
944 -ms-user-select: none;
945 user-select: none;
946 transition: all .2s ease-in-out;
947 text-align: center;
948 vertical-align: middle;
949 white-space: nowrap;
950 text-decoration: none;
951 text-transform: uppercase;
952 color: rgba(0, 0, 0, .87);
953 border: 0;
954 border-radius: .2rem;
955 background-color: #f0f0f0;
956 background-image: none;
957 -webkit-appearance: none;
958 -ms-touch-action: manipulation;
959 touch-action: manipulation;
960 }
961
962 .cbi-button-up,
963 .cbi-button-down {
964 font-size: 1.2rem;
965 display: inline-block;
966 min-width: 0;
967 padding: .2rem .3rem;
968 color: transparent !important;
969 background: url(./icons/arrow.svg) no-repeat center;
970 background-size: 12px 20px;
971 }
972
973 .cbi-button-up {
974 transform: scaleY(-1);
975 }
976
977 .cbi-button:not(select) {
978 -webkit-appearance: none !important;
979 }
980
981 .cbi-button + .cbi-button {
982 margin-left: .6rem;
983 }
984
985 .btn:hover,
986 .btn:focus,
987 .btn:active,
988 .cbi-button:hover,
989 .cbi-button:focus,
990 .cbi-button:active,
991 .item:hover::after,
992 .item:focus::after,
993 .item:active::after,
994 .cbi-page-actions .cbi-button-apply + .cbi-button-save:hover,
995 .cbi-page-actions .cbi-button-apply + .cbi-button-save:focus,
996 .cbi-page-actions .cbi-button-apply + .cbi-button-save:active {
997 text-decoration: none;
998 outline: 0;
999 }
1000
1001 .btn:hover,
1002 .btn:focus,
1003 .cbi-button:hover,
1004 .cbi-button:focus,
1005 .item:hover::after,
1006 .item:focus::after {
1007 box-shadow: 0 0 2px rgba(0, 0, 0, .12), 0 2px 2px rgba(0, 0, 0, .2);
1008 }
1009
1010 .btn:active,
1011 .cbi-button:active,
1012 .item:active::after {
1013 box-shadow: 0 10px 20px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23);
1014 }
1015
1016 .cbi-button-up:hover,
1017 .cbi-button-up:focus {
1018 box-shadow: 0 0 2px rgba(0, 0, 0, .12), 0 -2px 2px rgba(0, 0, 0, .2);
1019 }
1020
1021 .cbi-button-up:active {
1022 box-shadow: 0 -10px 20px rgba(0, 0, 0, .19), 0 -6px 6px rgba(0, 0, 0, .23);
1023 }
1024
1025 .btn:disabled,
1026 .cbi-button:disabled {
1027 cursor: not-allowed;
1028 pointer-events: none;
1029 opacity: .5;
1030 box-shadow: none;
1031 }
1032
1033 /* gray */
1034 .alert-message [class="btn"],
1035 .modal div[class="btn"],
1036 .cbi-button-find,
1037 .cbi-button-link,
1038 .cbi-button-up,
1039 .cbi-button-down,
1040 .cbi-button-neutral,
1041 .cbi-button[name="zero"],
1042 .cbi-button[name="restart"],
1043 .cbi-button[onclick="hide_empty(this)"] {
1044 font-weight: bold;
1045 border: thin solid #bfbfbf;
1046 background-color: #d4d4d4;
1047 }
1048
1049 /* dark blue */
1050 .btn.primary,
1051 .cbi-page-actions .cbi-button-save,
1052 .cbi-page-actions .cbi-button-apply + .cbi-button-save,
1053 .cbi-button-add,
1054 .cbi-button-save,
1055 .cbi-button-positive,
1056 .cbi-button-link,
1057 .cbi-button[value="Enable"],
1058 .cbi-button[value="Scan"],
1059 .cbi-button[value^="Back"],
1060 .cbi-button-neutral[onclick="handleConfig(event)"] {
1061 font-weight: normal;
1062 color: #fff;
1063 border: thin solid #2e6da4;
1064 background-color: #337ab7;
1065 }
1066
1067 /* light blue */
1068 .cbi-page-actions .cbi-button-apply,
1069 .cbi-section-actions .cbi-button-edit,
1070 .cbi-button-edit,
1071 .cbi-button-apply,
1072 .cbi-button-reload,
1073 .cbi-button-action,
1074 .cbi-button[value="Submit"],
1075 .cbi-button[value="Upload"],
1076 .cbi-button[value$="Apply"],
1077 .cbi-button[onclick="addKey(event)"] {
1078 font-weight: normal;
1079 color: #fff;
1080 border: thin solid #46b8da;
1081 background-color: #5bc0de;
1082 }
1083
1084 /* red */
1085 .btn.danger,
1086 .cbi-section-remove > .cbi-button,
1087 .cbi-button-remove,
1088 .cbi-button-reset,
1089 .cbi-button-negative,
1090 .cbi-button[value="Stop"],
1091 .cbi-button[value="Kill"],
1092 .cbi-button[onclick="reboot(this)"],
1093 .cbi-button-neutral[value="Restart"] {
1094 font-weight: normal;
1095 color: #fff;
1096 border: thin solid #d43f3a;
1097 background-color: #d9534f;
1098 }
1099
1100 /* yellow */
1101 .btn[value="Dismiss"],
1102 .cbi-button[value="Terminate"],
1103 .cbi-button[value="Reset"],
1104 .cbi-button[value="Disabled"],
1105 .cbi-button[onclick^="iface_reconnect"],
1106 .cbi-button[onclick="handleReset(event)"],
1107 .cbi-button-neutral[value="Disable"] {
1108 font-weight: normal;
1109 color: #fff;
1110 border: thin solid #eea236;
1111 background-color: #f0ad4e;
1112 }
1113
1114 /* green */
1115 .cbi-button-success,
1116 .cbi-button-download,
1117 .cbi-button[name="backup"],
1118 .cbi-button[value="Download"],
1119 .cbi-button[value="Save mtdblock"] {
1120 font-weight: normal;
1121 color: #fff;
1122 border: thin solid #4cae4c;
1123 background-color: #5cb85c;
1124 }
1125
1126 .cbi-page-actions .cbi-button-link:first-child {
1127 float: left;
1128 }
1129
1130 .a-to-btn {
1131 text-decoration: none;
1132 }
1133
1134 .cbi-value-field .cbi-button-add {
1135 font-weight: bold;
1136 margin: 9px 0 4px 3px;
1137 padding: 1px 6px;
1138 }
1139
1140 .tabs {
1141 margin: 0 -2rem;
1142 padding-left: .5rem;
1143 background-color: #fff;
1144 }
1145
1146 .tabs > li,
1147 .cbi-tabmenu > li {
1148 display: inline-block;
1149 padding: .55rem 0;
1150 cursor: pointer;
1151 }
1152
1153 .tabs > li {
1154 padding-bottom: .4rem;
1155 border-bottom: .2rem solid transparent;
1156 }
1157
1158 .tabs > li[class~="active"],
1159 .tabs > li:hover {
1160 border-bottom-color: #09c;
1161 border-bottom-color: var(--main-color);
1162 }
1163
1164 .tabs > li:hover {
1165 cursor: pointer;
1166 border-bottom-color: #c9c9c9;
1167 }
1168
1169 .tabs > li > a,
1170 .cbi-tabmenu > li > a {
1171 padding: .6rem .9rem;
1172 text-decoration: none;
1173 color: #404040;
1174 }
1175
1176 .tabs > li[class~="active"] > a {
1177 color: #09c;
1178 color: var(--main-color);
1179 }
1180
1181 .cbi-tabmenu {
1182 border: thin solid #d4d4d4;
1183 border-bottom: 0;
1184 }
1185
1186 .cbi-tabmenu > li:hover {
1187 background-color: #f1f1f1;
1188 }
1189
1190 .cbi-tabmenu > li[class~="cbi-tab"] {
1191 background-color: #fff;
1192 }
1193
1194 .cbi-tabmenu {
1195 background-color: #d4d4d4;
1196 }
1197
1198 .cbi-section .cbi-section-remove:nth-of-type(2n),
1199 .container > .cbi-section .cbi-section-node:nth-of-type(2n) {
1200 background-color: #f9f9f9;
1201 }
1202
1203 [data-tab-title] {
1204 overflow: hidden;
1205 height: 0;
1206 opacity: 0;
1207 margin: 0;
1208 padding: 0rem 1rem !important;
1209 }
1210
1211 [data-tab-active="true"] {
1212 overflow: visible;
1213 height: auto;
1214 opacity: 1;
1215 transition: opacity .25s ease-in;
1216 margin: inherit !important;
1217 }
1218
1219 .cbi-section[id] .cbi-section-remove:nth-of-type(4n+3),
1220 .cbi-section[id] .cbi-section-node:nth-of-type(4n+4) {
1221 background-color: #f9f9f9;
1222 }
1223
1224 .cbi-section-node-tabbed {
1225 margin-top: 0;
1226 padding: 0;
1227 border: thin solid #d4d4d4;
1228 border-top: 0;
1229 }
1230
1231 .cbi-tabcontainer > .cbi-value:nth-of-type(2n) {
1232 background-color: #f9f9f9;
1233 }
1234
1235 .cbi-value-field,
1236 .cbi-value-description {
1237 line-height: 1.25;
1238 display: table-cell;
1239 }
1240
1241 .cbi-value-description {
1242 font-size: small;
1243 padding-top: .4rem;
1244 opacity: .5;
1245 }
1246
1247 .cbi-value-title {
1248 display: table-cell;
1249 float: left;
1250 width: 23rem;
1251 padding-top: .35rem;
1252 padding-right: 2rem;
1253 text-align: right;
1254 word-wrap: break-word;
1255 }
1256
1257 .cbi-value {
1258 display: inline-block;
1259 width: 100%;
1260 padding: .35rem 1rem .2rem 1rem;
1261 }
1262
1263 .cbi-value ul {
1264 line-height: 1.25;
1265 }
1266
1267 .cbi-value-field .cbi-dropdown,
1268 .cbi-value-field .cbi-input-select,
1269 .cbi-value input[type="text"],
1270 .cbi-value input[type="password"] {
1271 min-width: 25rem;
1272 }
1273
1274 #cbi-firewall-zone .cbi-input-select,
1275 #cbi-network-switch_vlan .cbi-input-select {
1276 min-width: 11rem;
1277 }
1278
1279 #cbi-network-switch_vlan .cbi-input-text {
1280 max-width: 3rem;
1281 }
1282
1283 .cbi-input-invalid {
1284 color: #f00;
1285 border-bottom-color: #f00;
1286 }
1287
1288 .cbi-section-error {
1289 font-weight: bold;
1290 line-height: 1.42857143;
1291 margin: 18px;
1292 padding: 6px;
1293 border: thin solid #f00;
1294 border-radius: 3px;
1295 background-color: #fce6e6;
1296 }
1297
1298 .cbi-section-error ul {
1299 margin: 0 0 0 20px;
1300 }
1301
1302 .cbi-section-error ul li {
1303 font-weight: bold;
1304 color: #f00;
1305 }
1306
1307 .td[data-title]::before {
1308 font-weight: bold;
1309 display: none;
1310 padding: .25rem 0;
1311 content: attr(data-title) ":\20";
1312 text-align: left;
1313 white-space: nowrap;
1314 }
1315
1316 .tr.placeholder .td[data-title]::before {
1317 display: none;
1318 }
1319
1320 .tr[data-title]::before,
1321 .tr.cbi-section-table-titles.named::before {
1322 font-weight: bold;
1323 display: table-cell;
1324 align-self: center;
1325 flex: 1 1 5%;
1326 padding: .25rem;
1327 content: attr(data-title) "\20";
1328 text-align: center;
1329 vertical-align: middle;
1330 white-space: normal;
1331 word-wrap: break-word;
1332 }
1333
1334 .cbi-rowstyle-1 {
1335 background-color: #f9f9f9;
1336 }
1337
1338 .cbi-rowstyle-2 {
1339 background-color: #eee;
1340 }
1341
1342 .cbi-rowstyle-2 .cbi-button-up,
1343 .cbi-rowstyle-2 .cbi-button-down,
1344 body:not(.Interfaces) .cbi-rowstyle-2:first-child {
1345 background-color: #fff !important;
1346 }
1347
1348 .cbi-section-table .cbi-section-table-titles .cbi-section-table-cell {
1349 width: auto !important;
1350 }
1351
1352 .td.cbi-section-actions {
1353 text-align: right !important;
1354 vertical-align: middle;
1355 }
1356
1357 .td.cbi-section-actions > * {
1358 display: inline-flex;
1359 }
1360
1361 .td.cbi-section-actions > * > *,
1362 .td.cbi-section-actions > * > form > * {
1363 margin: 0 5px;
1364 }
1365
1366 .td.cbi-section-actions > * > form {
1367 display: inline-flex;
1368 margin: 0;
1369 }
1370
1371 /* lists */
1372 .cbi-dynlist {
1373 line-height: 1.3;
1374 flex-direction: column;
1375 min-height: 30px;
1376 cursor: text;
1377 }
1378
1379 .cbi-dynlist > .item {
1380 position: relative;
1381 max-width: 25rem;
1382 margin-right: 2em;
1383 padding: .5em .25em .25em 0;
1384 pointer-events: none;
1385 color: #666;
1386 border-bottom: 2px solid rgba(0, 0, 0, .26);
1387 outline: 0;
1388 }
1389
1390 .cbi-dynlist[name="sshkeys"] > .item {
1391 max-width: none;
1392 }
1393
1394 .cbi-dynlist > .item::after {
1395 font-weight: bold;
1396 position: absolute;
1397 right: -2em;
1398 bottom: 0;
1399 display: inline-flex;
1400 min-height: 17px;
1401 padding: 0 6px;
1402 content: "\00D7";
1403 pointer-events: auto;
1404 color: #fff;
1405 border: thin solid #d43f3a;
1406 background-color: #d9534f;
1407 }
1408
1409 .cbi-dynlist > .item > span {
1410 white-space: normal;
1411 word-break: break-word;
1412 }
1413
1414 .cbi-dynlist > .add-item {
1415 display: inline-flex;
1416 align-items: center;
1417 width: 100%;
1418 min-width: 16rem;
1419 }
1420
1421 .cbi-dynlist > .add-item:not([ondrop]) > input {
1422 overflow: hidden;
1423 width: 100%;
1424 min-width: 15rem;
1425 white-space: nowrap;
1426 text-overflow: ellipsis;
1427 }
1428
1429 .cbi-dynlist > .add-item[ondrop] > input {
1430 min-width: 13rem;
1431 }
1432
1433 .cbi-dynlist,
1434 .cbi-dropdown {
1435 position: relative;
1436 display: inline-flex;
1437 padding: 0;
1438 }
1439
1440 .cbi-dropdown[placeholder*="select"] {
1441 max-width: 25rem;
1442 height: auto;
1443 margin-top: -3px;
1444 }
1445
1446 .cbi-dropdown > ul {
1447 display: flex;
1448 overflow-x: hidden;
1449 overflow-y: auto;
1450 width: 100%;
1451 margin: 0 !important;
1452 padding: 0;
1453 list-style: none;
1454 outline: 0;
1455 }
1456
1457 .cbi-dropdown > ul.preview {
1458 display: none;
1459 }
1460
1461 .cbi-dropdown > .open {
1462 flex-basis: 15px;
1463 }
1464
1465 .cbi-dropdown > .open,
1466 .cbi-dropdown > .more {
1467 font-size: 1rem;
1468 font-weight: 900;
1469 line-height: 2;
1470 display: flex;
1471 flex-direction: column;
1472 flex-grow: 0;
1473 flex-shrink: 0;
1474 justify-content: center;
1475 padding: 0 .25em;
1476 cursor: default;
1477 text-align: center;
1478 outline: 0;
1479 }
1480
1481 .cbi-dropdown.btn {
1482 min-height: 1.8rem;
1483 padding-top: 0px;
1484 padding-bottom: 0px;
1485 padding-right: 0px;
1486 }
1487
1488 .cbi-dropdown.btn > .open {
1489 font-size: 0.8rem;
1490 padding: 0px;
1491 margin: 0 5px;
1492 }
1493
1494 .cbi-dropdown.btn > div {
1495 margin: 0px;
1496 }
1497
1498 .cbi-dropdown > .more,
1499 .cbi-dropdown > ul > li[placeholder] {
1500 font-weight: bold;
1501 display: none;
1502 color: #777;
1503 text-shadow: 1px 1px 0 #fff;
1504 }
1505
1506 .cbi-dropdown > ul > li {
1507 display: none;
1508 overflow: hidden;
1509 align-items: center;
1510 align-self: center;
1511 flex-grow: 1;
1512 flex-shrink: 1;
1513 min-height: 20px;
1514 padding: .25em;
1515 white-space: nowrap;
1516 text-overflow: ellipsis;
1517 }
1518
1519 .cbi-dropdown > ul > li .hide-open {
1520 display: initial;
1521 }
1522
1523 .cbi-dropdown > ul > li .hide-close {
1524 display: none;
1525 }
1526
1527 .cbi-dropdown > ul > li[display]:not([display="0"]) {
1528 border-left: thin solid #ccc;
1529 }
1530
1531 .cbi-dropdown[empty] > ul {
1532 max-width: 1px;
1533 }
1534
1535 .cbi-dropdown > ul > li > form {
1536 display: none;
1537 margin: 0;
1538 padding: 0;
1539 pointer-events: none;
1540 }
1541
1542 .cbi-dropdown > ul > li img {
1543 margin-right: .25em;
1544 vertical-align: middle;
1545 }
1546
1547 .cbi-dropdown > ul > li > form > input[type="checkbox"] {
1548 height: auto;
1549 margin: 0;
1550 }
1551
1552 .cbi-dropdown > ul > li input[type="text"] {
1553 height: 20px;
1554 }
1555
1556 .cbi-dropdown[open] > ul.dropdown {
1557 position: absolute;
1558 z-index: 1100;
1559 display: block;
1560 width: auto;
1561 min-width: 100%;
1562 max-width: none;
1563 max-height: 200px !important;
1564 border: thin solid #918e8c;
1565 background: #f6f6f6;
1566 box-shadow: 0 0 4px #918e8c;
1567 color: var(--main-menu-color);
1568 }
1569
1570 .cbi-dropdown > ul > li[display],
1571 .cbi-dropdown[open] > ul.preview,
1572 .cbi-dropdown[open] > ul.dropdown > li,
1573 .cbi-dropdown[multiple] > ul > li > label,
1574 .cbi-dropdown[multiple][open] > ul.dropdown > li,
1575 .cbi-dropdown[multiple][more] > .more,
1576 .cbi-dropdown[multiple][empty] > .more {
1577 display: flex;
1578 align-items: center;
1579 flex-grow: 1;
1580 }
1581
1582 .cbi-dropdown[empty] > ul > li,
1583 .cbi-dropdown[optional][open] > ul.dropdown > li[placeholder],
1584 .cbi-dropdown[multiple][open] > ul.dropdown > li > form {
1585 display: block;
1586 }
1587
1588 .cbi-dropdown[open] > ul.dropdown > li .hide-open {
1589 display: none;
1590 }
1591
1592 .cbi-dropdown[open] > ul.dropdown > li .hide-close {
1593 display: initial;
1594 }
1595
1596 .cbi-dropdown[open] > ul.dropdown > li {
1597 border-bottom: thin solid #ccc;
1598 }
1599
1600 .cbi-dropdown[open] > ul.dropdown > li[selected] {
1601 background: #b0d0f0;
1602 }
1603
1604 .cbi-dropdown[open] > ul.dropdown > li.focus {
1605 background: linear-gradient(90deg, #a3c2e8 0%, #84aad9 100%);
1606 }
1607
1608 .cbi-dropdown[open] > ul.dropdown > li:last-child {
1609 margin-bottom: 0;
1610 border-bottom: 0;
1611 }
1612
1613 .cbi-dropdown[open] > ul.dropdown > li[unselectable] {
1614 opacity: .7;
1615 }
1616
1617 .cbi-dropdown[open] > ul.dropdown > li > input.create-item-input:first-child:last-child {
1618 width: 100%;
1619 }
1620
1621 .cbi-dropdown[disabled] {
1622 pointer-events: none;
1623 opacity: .6;
1624 }
1625
1626 .cbi-dropdown .zonebadge {
1627 width: 100%;
1628 }
1629
1630 .cbi-dropdown[open] .zonebadge {
1631 width: auto;
1632 }
1633
1634 /* progressbar */
1635 .cbi-progressbar {
1636 position: relative;
1637 min-width: 170px;
1638 height: 20px;
1639 margin: 6px 0;
1640 border: thin solid #999;
1641 background: #eee;
1642 }
1643
1644 .cbi-progressbar > div {
1645 width: 0;
1646 height: 100%;
1647 transition: width .25s ease-in;
1648 background: #5bc0de;
1649 background: var(--bar-bg);
1650 }
1651
1652 .cbi-progressbar::after {
1653 font-family: monospace;
1654 font-weight: bold;
1655 font-size-adjust: .38;
1656 line-height: normal;
1657 position: absolute;
1658 top: 2px;
1659 right: 0;
1660 bottom: 2px;
1661 left: 0;
1662 overflow: hidden;
1663 content: attr(title);
1664 text-align: center;
1665 white-space: pre;
1666 text-overflow: ellipsis;
1667 text-shadow: 0 0 2px #eee;
1668 }
1669
1670 #modal_overlay {
1671 position: fixed;
1672 z-index: 900;
1673 top: 4rem;
1674 right: 10000px;
1675 bottom: 0;
1676 left: -10000px;
1677 overflow-y: scroll;
1678 transition: opacity .125s ease-in;
1679 opacity: 0;
1680 background: rgba(0, 0, 0, .7);
1681 -webkit-overflow-scrolling: touch;
1682 }
1683
1684 .modal {
1685 display: flex;
1686 align-items: center;
1687 flex-wrap: wrap;
1688 width: 90%;
1689 min-width: 270px;
1690 max-width: 600px;
1691 min-height: 32px;
1692 margin: 5em auto;
1693 padding: 1em;
1694 border-radius: 3px !important;
1695 background: #fff;
1696 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12);
1697 }
1698
1699 .modal > * {
1700 line-height: normal;
1701 flex-basis: 100%;
1702 margin-bottom: .5em;
1703 max-width: 100%;
1704 }
1705
1706 .modal > pre,
1707 .modal > textarea {
1708 font-size: 1rem;
1709 font-size-adjust: .35;
1710 overflow: auto;
1711 margin-bottom: .5em;
1712 padding: 8.5px;
1713 cursor: auto;
1714 white-space: pre-wrap;
1715 color: #eee;
1716 outline: 0;
1717 background-color: #101010;
1718 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12);
1719 }
1720
1721 .modal > h4 {
1722 margin: .5em 0;
1723 }
1724
1725 .modal ul {
1726 margin-left: 2.2em;
1727 word-break: break-word;
1728 }
1729
1730 .modal li {
1731 list-style-type: square;
1732 color: #808080;
1733 }
1734
1735 .modal p {
1736 padding-left: .25rem;
1737 word-break: break-word;
1738 }
1739
1740 .modal label.btn {
1741 display: flex;
1742 align-items: center;
1743 white-space: normal;
1744 text-align: left;
1745 text-transform: none;
1746 padding-bottom: 0.2rem;
1747 padding-top: 0.2rem;
1748 }
1749
1750 .modal label.warning {
1751 background-color: #f0ad4e !important;
1752 }
1753
1754 .modal.cbi-modal {
1755 max-width: 90%;
1756 max-height: none;
1757 }
1758
1759 body.modal-overlay-active {
1760 overflow: hidden;
1761 height: 100vh;
1762 }
1763
1764 body.modal-overlay-active #modal_overlay {
1765 right: 0;
1766 left: 0;
1767 opacity: 1;
1768 }
1769
1770 .spinning {
1771 position: relative;
1772 padding-left: 32px !important;
1773 }
1774
1775 .spinning::before {
1776 position: absolute;
1777 top: 0;
1778 bottom: 0;
1779 left: .2em;
1780 width: 32px;
1781 content: "";
1782 background: url(../resources/icons/loading.gif) no-repeat center;
1783 background-size: 16px;
1784 }
1785
1786 /* luci */
1787 .hidden {
1788 display: none;
1789 }
1790
1791 .left,
1792 .left::before {
1793 text-align: left !important;
1794 }
1795
1796 .right,
1797 .right::before {
1798 text-align: right !important;
1799 }
1800
1801 .center,
1802 .center::before {
1803 text-align: center !important;
1804 }
1805
1806 .top {
1807 align-self: flex-start !important;
1808 vertical-align: top !important;
1809 }
1810
1811 .bottom {
1812 align-self: flex-end !important;
1813 vertical-align: bottom !important;
1814 }
1815
1816 .inline {
1817 display: inline;
1818 }
1819
1820 .cbi-page-actions {
1821 padding-top: 1rem;
1822 text-align: right;
1823 }
1824
1825 .cbi-page-actions > form[method="post"] {
1826 display: inline-block;
1827 }
1828
1829 .th[data-type="button"],
1830 .td[data-type="button"],
1831 .th[data-type="fvalue"],
1832 .td[data-type="fvalue"] {
1833 flex: 1 1 2em;
1834 text-align: center;
1835 }
1836
1837 .ifacebadge {
1838 display: inline-flex;
1839 gap: .2rem;
1840 padding: .5rem .8rem;
1841 border-bottom: thin solid #ccc;
1842 background: #eee;
1843 box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
1844 }
1845
1846 td > .ifacebadge,
1847 .td > .ifacebadge {
1848 font-size: .8rem;
1849 background-color: #f0f0f0;
1850 }
1851
1852 .ifacebadge > em,
1853 .ifacebadge > img {
1854 display: inline-block;
1855 align-self: flex-start;
1856 }
1857
1858 .network-status-table {
1859 display: flex;
1860 flex-wrap: wrap;
1861 }
1862
1863 .network-status-table .ifacebox {
1864 flex-grow: 1;
1865 margin: .5em;
1866 }
1867
1868 .network-status-table .ifacebox-body {
1869 display: flex;
1870 flex-direction: column;
1871 height: 100%;
1872 }
1873
1874 .network-status-table .ifacebox-body > span {
1875 flex: 10 10 auto;
1876 height: 100%;
1877 }
1878
1879 .network-status-table .ifacebox-body > div {
1880 display: flex;
1881 flex-wrap: wrap;
1882 }
1883
1884 .network-status-table .ifacebox-body .ifacebadge {
1885 align-items: center;
1886 flex: 1 1 auto;
1887 min-width: 220px;
1888 margin: .5em .25em 0 .25em;
1889 padding: .5em;
1890 background-color: #fff;
1891 }
1892
1893 /* textarea */
1894 .cbi-input-textarea {
1895 font-family: monospace;
1896 width: 100%;
1897 min-height: 14rem;
1898 padding: .8rem;
1899 color: #000;
1900 }
1901
1902 #syslog {
1903 font-size: small;
1904 overflow-y: hidden;
1905 width: 100%;
1906 min-height: 15rem;
1907 padding: 1rem;
1908 resize: none;
1909 color: #eee;
1910 border: 0;
1911 border-radius: 0;
1912 background-color: #101010;
1913 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12);
1914 }
1915
1916 #syslog:focus {
1917 outline: 0;
1918 }
1919
1920 /* config changes */
1921 .uci-change-list {
1922 font-family: monospace;
1923 }
1924
1925 .uci-change-list ins,
1926 .uci-change-legend-label ins {
1927 display: block;
1928 padding: 2px;
1929 text-decoration: none;
1930 border: thin solid #0f0;
1931 background-color: #cfc;
1932 }
1933
1934 .uci-change-list del,
1935 .uci-change-legend-label del {
1936 font-style: normal;
1937 display: block;
1938 padding: 2px;
1939 text-decoration: none;
1940 border: thin solid #f00;
1941 background-color: #fcc;
1942 }
1943
1944 .uci-change-list var,
1945 .uci-change-legend-label var {
1946 font-style: normal;
1947 display: block;
1948 padding: 2px;
1949 text-decoration: none;
1950 border: thin solid #ccc;
1951 background-color: #eee;
1952 }
1953
1954 .uci-change-list var ins,
1955 .uci-change-list var del {
1956 font-style: normal;
1957 padding: 0;
1958 white-space: pre;
1959 border: 0;
1960 }
1961
1962 .uci-change-legend {
1963 padding: 5px;
1964 }
1965
1966 .uci-change-legend-label {
1967 float: left;
1968 width: 150px;
1969 }
1970
1971 .uci-change-legend-label > ins,
1972 .uci-change-legend-label > del,
1973 .uci-change-legend-label > var {
1974 display: block;
1975 float: left;
1976 width: 10px;
1977 height: 10px;
1978 margin-right: 4px;
1979 }
1980
1981 .uci-change-legend-label var ins,
1982 .uci-change-legend-label var del {
1983 line-height: .4;
1984 border: 0;
1985 }
1986
1987 .uci-change-list var,
1988 .uci-change-list del,
1989 .uci-change-list ins {
1990 padding: .5rem;
1991 }
1992
1993 /* other fix */
1994 #iwsvg,
1995 #iwsvg2,
1996 #bwsvg {
1997 border: thin solid #d4d4d4 !important;
1998 }
1999
2000 #iwsvg,
2001 [data-page="admin-status-realtime-bandwidth"] #bwsvg {
2002 border-top: 0 !important;
2003 }
2004
2005 .ifacebox {
2006 line-height: 1.25;
2007 display: inline-flex;
2008 flex-direction: column;
2009 min-width: 100px;
2010 border-bottom: thin solid #ccc;
2011 background-color: #f9f9f9;
2012 box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4), 0 1px 2px rgba(0, 0, 0, .2);
2013 }
2014
2015 .ifacebox-head {
2016 padding: .25em;
2017 background: #eee;
2018 }
2019
2020 .ifacebox-head.active {
2021 background: #5bc0de;
2022 background: var(--bar-bg);
2023 }
2024
2025 .ifacebox-body {
2026 padding: .25em;
2027 }
2028
2029 .cbi-image-button {
2030 margin-left: .5rem;
2031 }
2032
2033 .zonebadge {
2034 display: inline-block;
2035 padding: .2rem .5rem;
2036 }
2037
2038 .zonebadge .ifacebadge {
2039 margin: .1rem .2rem;
2040 padding: .2rem .3rem;
2041 border: thin solid #6c6c6c;
2042 }
2043
2044 .zonebadge > input[type="text"] {
2045 min-width: 10rem;
2046 margin-top: .3rem;
2047 padding: .16rem 1rem;
2048 }
2049
2050 .zonebadge > em,
2051 .zonebadge > strong {
2052 display: inline-block;
2053 margin: 0 .2rem;
2054 }
2055
2056 .cbi-value-field .cbi-input-checkbox,
2057 .cbi-value-field .cbi-input-radio {
2058 margin-top: .1rem;
2059 }
2060
2061 .cbi-value-field > ul > li {
2062 display: flex;
2063 }
2064
2065 .cbi-value-field > ul > li > label {
2066 margin-top: .5rem;
2067 }
2068
2069 .cbi-value-field > ul > li .ifacebadge {
2070 margin-top: -.5rem;
2071 margin-left: .4rem;
2072 background-color: #eee;
2073 }
2074
2075 .cbi-section-table-row > .cbi-value-field .cbi-dropdown {
2076 min-width: 7rem;
2077 }
2078
2079 .cbi-section-create {
2080 display: inline-flex;
2081 align-items: center;
2082 margin: .5rem -3px;
2083 }
2084
2085 .cbi-section-create > * {
2086 margin: .5rem;
2087 }
2088
2089 .cbi-section-remove {
2090 padding: .5rem;
2091 }
2092
2093 div.cbi-value var,
2094 td.cbi-value-field var,
2095 .td.cbi-value-field var {
2096 font-style: italic;
2097 color: #0069d6;
2098 }
2099
2100 .cbi-optionals {
2101 padding: 1rem 1rem 0 1rem;
2102 border-top: thin solid #ccc;
2103 }
2104
2105 .cbi-dropdown-container {
2106 position: relative;
2107 }
2108
2109 .cbi-tooltip-container,
2110 span[data-tooltip],
2111 span[data-tooltip] .label {
2112 cursor: help !important;
2113 }
2114
2115 .cbi-tooltip {
2116 position: absolute;
2117 z-index: 1000;
2118 left: -1000px;
2119 padding: 2px 5px;
2120 transition: opacity .25s ease-out;
2121 white-space: pre;
2122 pointer-events: none;
2123 opacity: 0;
2124 border-radius: 3px;
2125 background: #fff;
2126 box-shadow: 0 0 2px #444;
2127 }
2128
2129 .cbi-tooltip-container:hover .cbi-tooltip {
2130 left: auto;
2131 transition: opacity .25s ease-in;
2132 opacity: 1;
2133 }
2134
2135 .zonebadge .cbi-tooltip {
2136 margin: -1.5rem 0 0 -.5rem;
2137 padding: .25rem;
2138 background: inherit;
2139 }
2140
2141 .zonebadge-empty {
2142 color: #404040;
2143 background: repeating-linear-gradient(45deg, rgba(204, 204, 204, .5), rgba(204, 204, 204, .5) 5px, rgba(255, 255, 255, .5) 5px, rgba(255, 255, 255, .5) 10px);
2144 }
2145
2146 .zone-forwards {
2147 display: flex;
2148 min-width: 10rem;
2149 }
2150
2151 .zone-forwards > * {
2152 flex: 1 1 45%;
2153 }
2154
2155 .zone-forwards > span {
2156 flex-basis: 10%;
2157 padding: 0 .25rem;
2158 text-align: center;
2159 }
2160
2161 .zone-forwards .zone-src,
2162 .zone-forwards .zone-dest {
2163 display: flex;
2164 flex-direction: column;
2165 }
2166
2167 .label,
2168 [data-indicator] {
2169 font-size: .8rem;
2170 font-weight: bold;
2171 padding: .3rem .8rem;
2172 white-space: nowrap;
2173 text-decoration: none;
2174 text-transform: uppercase;
2175 color: #fff !important;
2176 border-radius: 3px;
2177 background-color: #bfbfbf;
2178 text-shadow: none;
2179 }
2180
2181 label > input[type="checkbox"],
2182 label > input[type="radio"] {
2183 margin-right: 0.8rem;
2184 }
2185
2186 label[data-index][data-depends] {
2187 padding-right: 2em;
2188 }
2189
2190 .showSide {
2191 display: none;
2192 }
2193
2194 .darkMask {
2195 position: fixed;
2196 z-index: 99;
2197 width: 100%;
2198 height: 100%;
2199 content: "";
2200 background-color: rgba(0, 0, 0, .56);
2201 transition: opacity 400ms, visibility 400ms;
2202 visibility: hidden;
2203 opacity: 0;
2204 }
2205
2206 /* diagnostics */
2207 #diag-rc-output > pre,
2208 #command-rc-output > pre,
2209 [data-page="admin-services-wol"] .notice code {
2210 font-size: 1.2rem;
2211 font-size-adjust: .35;
2212 line-height: normal;
2213 display: block;
2214 overflow-y: hidden;
2215 width: 100%;
2216 padding: 8.5px;
2217 white-space: pre;
2218 color: #eee;
2219 background-color: #101010;
2220 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12);
2221 }
2222
2223 [data-page="admin-network-diagnostics"] .table {
2224 box-shadow: none;
2225 }
2226
2227 input[name="ping"],
2228 input[name="traceroute"],
2229 input[name="nslookup"] {
2230 width: 80%;
2231 }
2232
2233 /* fix Main Login */
2234 .node-main-login > .main > .main-left {
2235 display: none;
2236 }
2237
2238 .node-main-login > .main > .main-right {
2239 width: 100%;
2240 }
2241
2242 .node-main-login > .main fieldset {
2243 display: inline;
2244 overflow: hidden;
2245 margin-bottom: 1rem;
2246 padding: .5rem;
2247 border: 0;
2248 background: none;
2249 box-shadow: none;
2250 }
2251
2252 .node-main-login > .main .cbi-value-title {
2253 width: 9.5rem;
2254 }
2255
2256 .node-main-login > .main #maincontent {
2257 text-align: center;
2258 }
2259
2260 .node-main-login > .main .container {
2261 display: inline-block;
2262 margin-top: 2rem !important;
2263 padding: 1rem 3.5rem 2rem;
2264 text-align: left;
2265 background-color: #fff;
2266 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12);
2267 }
2268
2269 .node-main-login > .main form > div:last-child {
2270 float: right;
2271 }
2272
2273 .node-main-login > .main .cbi-value {
2274 display: block;
2275 }
2276
2277 .node-main-login > .main .cbi-value > * {
2278 display: inline-block !important;
2279 }
2280
2281 .node-main-login > .main .cbi-input-text {
2282 width: 100% !important;
2283 min-width: 15rem;
2284 }
2285
2286 .node-main-login .cbi-section {
2287 box-shadow: none;
2288 }
2289
2290 @media screen and (min-height: 585px) {
2291 .node-main-login footer {
2292 position: absolute;
2293 bottom: 0;
2294 width: 100%;
2295 }
2296 }
2297
2298 /* fix status */
2299 .node-status-overview > .main fieldset:nth-child(4) .td:nth-child(2),
2300 .node-status-processes > .main .table .tr .td:nth-child(3) {
2301 white-space: normal;
2302 }
2303
2304 /* fix system reboot */
2305 [data-page="admin-system-reboot"] p {
2306 padding-left: 2rem;
2307 }
2308
2309 [data-page="admin-system-reboot"] p > span {
2310 position: relative;
2311 top: .1rem;
2312 left: 1rem;
2313 }
2314
2315 /* samba */
2316 #cbi-samba [data-tab="template"] .cbi-value-field {
2317 display: block;
2318 }
2319
2320 #cbi-samba [data-tab="template"] .cbi-value-title {
2321 width: auto;
2322 padding-bottom: .6rem;
2323 }
2324
2325 /* software */
2326 .controls > * > .btn:not([aria-label$="page"]) {
2327 flex-grow: initial !important;
2328 margin-top: .1rem;
2329 }
2330
2331 .controls > #pager > .btn[aria-label$="page"] {
2332 font-size: 1.4rem;
2333 font-weight: bold;
2334 }
2335
2336 .controls > * > label {
2337 margin-bottom: .2rem;
2338 }
2339
2340 .control-group {
2341 display: flex;
2342 flex-wrap: wrap;
2343 gap: 2px;
2344 }
2345
2346 [data-page="admin-system-opkg"] div.btn {
2347 line-height: 3;
2348 display: inline;
2349 padding: .3rem .6rem;
2350 }
2351
2352 [data-page^="admin-system-admin"]:not(.node-main-login) .cbi-map:not(#cbi-dropbear),
2353 [data-page="admin-system-opkg"] #maincontent > .container {
2354 margin-top: 2rem;
2355 padding-top: .1rem;
2356 }
2357
2358 [data-page="admin-system-opkg"] #maincontent > .container {
2359 margin: 2rem;
2360 margin-bottom: 1rem;
2361 }
2362
2363 .td.version,
2364 .td.size {
2365 white-space: normal !important;
2366 word-break: break-word;
2367 }
2368
2369 .cbi-tabmenu + .cbi-section {
2370 margin-top: 0;
2371 }
2372
2373 /* wireless overview */
2374 #cbi-wireless > #wifi_assoclist_table > .tr {
2375 box-shadow: inset 1px -1px 0 #ddd, inset -1px -1px 0 #ddd;
2376 }
2377
2378 #cbi-wireless > #wifi_assoclist_table > .tr.placeholder > .td {
2379 right: 33px;
2380 bottom: 33px;
2381 left: 33px;
2382 border-top: thin solid #ddd !important;
2383 }
2384
2385 #cbi-wireless > #wifi_assoclist_table > .tr.table-titles {
2386 box-shadow: inset 1px 0 0 #ddd, inset -1px 0 0 #ddd;
2387 }
2388
2389 #cbi-wireless > #wifi_assoclist_table > .tr.table-titles > .th {
2390 border-bottom: thin solid #ddd;
2391 box-shadow: 0 -1px 0 0 #ddd;
2392 }
2393
2394 #wifi_assoclist_table > .tr > .td[data-title="RX Rate / TX Rate"] {
2395 width: 23rem;
2396 }
2397
2398 /* firewall */
2399 #iptables {
2400 margin: 0;
2401 }
2402
2403 .Firewall form {
2404 margin: 2rem 2rem 0 0;
2405 padding: 0;
2406 box-shadow: none;
2407 }
2408
2409 #cbi-firewall-redirect table *,
2410 #cbi-network-switch_vlan table *,
2411 #cbi-firewall-zone table * {
2412 font-size: small;
2413 }
2414
2415 #cbi-firewall-redirect table input[type="text"],
2416 #cbi-network-switch_vlan table input[type="text"],
2417 #cbi-firewall-zone table input[type="text"] {
2418 width: 5rem;
2419 }
2420
2421 #cbi-firewall-redirect table select,
2422 #cbi-network-switch_vlan table select,
2423 #cbi-firewall-zone table select {
2424 min-width: 3.5rem;
2425 }
2426
2427 #cbi-network-switch_vlan .th,
2428 #cbi-network-switch_vlan .td {
2429 flex-basis: 12%;
2430 }
2431
2432 #cbi-firewall-zone .table,
2433 #cbi-network-switch_vlan .table {
2434 display: block;
2435 }
2436
2437 #cbi-firewall-zone .td,
2438 #cbi-network-switch_vlan .td {
2439 width: 100%;
2440 }
2441
2442 /* applyreboot fix */
2443 #applyreboot-container {
2444 margin: 2rem;
2445 }
2446
2447 #applyreboot-section {
2448 line-height: 300%;
2449 margin: 2rem;
2450 }
2451
2452 /* openvpn bug fix */
2453 .OpenVPN a {
2454 line-height: initial !important;
2455 }
2456
2457 /* custom commands */
2458 .commandbox {
2459 width: 24% !important;
2460 margin: 10px 0 0 10px !important;
2461 padding: .5rem 1rem;
2462 border-bottom: thin solid #ccc;
2463 background: #eee;
2464 box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
2465 }
2466
2467 .commandbox h3 {
2468 line-height: normal !important;
2469 overflow: hidden;
2470 margin: 6px 0 !important;
2471 white-space: nowrap;
2472 text-overflow: ellipsis;
2473 }
2474
2475 .commandbox div {
2476 left: auto !important;
2477 }
2478
2479 .commandbox code {
2480 position: absolute;
2481 overflow: hidden;
2482 max-width: 60%;
2483 margin-left: 4px;
2484 padding: 2px 3px;
2485 white-space: nowrap;
2486 text-overflow: ellipsis;
2487 }
2488
2489 .commandbox code:hover {
2490 overflow-y: auto;
2491 max-height: 50px;
2492 white-space: normal;
2493 }
2494
2495 .commandbox p:first-of-type {
2496 margin-top: -6px;
2497 }
2498
2499 .commandbox p:nth-of-type(2) {
2500 margin-top: 2px;
2501 }
2502
2503 [data-page^="admin-system-commands"] .panel-title,
2504 [data-page^="command-cfg"] .mobile-hide,
2505 [data-page^="command-cfg"] .showSide {
2506 display: none;
2507 }
2508
2509 #command-rc-output .alert-message {
2510 line-height: 1.42857143;
2511 position: absolute;
2512 top: 40px;
2513 right: 32px;
2514 max-width: 40%;
2515 margin: 0;
2516 animation: anim-fade-in 1.5s forwards;
2517 word-break: break-word;
2518 opacity: 0;
2519 }
2520
2521 @keyframes anim-fade-in {
2522 100% {
2523 opacity: 1;
2524 }
2525 }
2526
2527 /* IE hacks */
2528 @media all and (-ms-high-contrast: none) {
2529 .main > .main-left > .nav > .slide > .menu::before {
2530 top: 30.25%;
2531 }
2532
2533 .main > .main-left > .nav > li:last-child::before {
2534 top: 20%;
2535 }
2536
2537 .showSide::before {
2538 top: -12px;
2539 }
2540 }
2541
2542 @media screen and (max-width: 1600px) {
2543 header > .fill > .container > #logo {
2544 margin: 0 2.5rem 0 .5rem;
2545 }
2546
2547 .main-left {
2548 width: calc(0% + 13rem);
2549 }
2550
2551 .main-right {
2552 width: calc(100% - 13rem);
2553 }
2554
2555 .btn:not(button),
2556 .cbi-button {
2557 font-size: .8rem;
2558 padding: .3rem .6rem;
2559 }
2560
2561 .label,
2562 [data-indicator] {
2563 padding: .2rem .6rem;
2564 }
2565
2566 fieldset,
2567 .cbi-section {
2568 padding: 1rem;
2569 }
2570
2571 .cbi-value-title {
2572 width: 15rem;
2573 padding-right: .6rem;
2574 }
2575
2576 .cbi-value-field .cbi-dropdown,
2577 .cbi-value-field .cbi-input-select,
2578 .cbi-value input[type="text"],
2579 .cbi-value input[type="password"] {
2580 min-width: 22rem;
2581 }
2582
2583 #cbi-firewall-zone .cbi-input-select {
2584 min-width: 9rem;
2585 }
2586
2587 .cbi-input-textarea {
2588 font-size: small;
2589 }
2590
2591 .node-admin-status > .main fieldset li > a {
2592 padding: .3rem .6rem;
2593 }
2594 }
2595
2596 @media screen and (max-width: 1366px) {
2597 header {
2598 height: 3.5rem;
2599 }
2600
2601 header > .fill > .container {
2602 margin-top: .25rem;
2603 cursor: default;
2604 }
2605
2606 .main {
2607 top: 3.5rem;
2608 height: calc(100% - 3.5rem);
2609 }
2610
2611 .main-left {
2612 top: 3.5rem;
2613 width: calc(0% + 13rem);
2614 height: calc(100% - 3.5rem);
2615 }
2616
2617 .main-right {
2618 width: calc(100% - 13rem);
2619 }
2620
2621 .tabs > li > a,
2622 .cbi-tabmenu > li > a {
2623 padding: .2rem .5rem;
2624 }
2625
2626 .cbi-section > h3:first-child,
2627 .panel-title {
2628 font-size: 1.1rem;
2629 padding-bottom: 1rem;
2630 }
2631
2632 table {
2633 font-size: .7rem !important;
2634 width: 100% !important;
2635 }
2636
2637 .table .cbi-input-text {
2638 width: 100%;
2639 }
2640
2641 .cbi-value-field .cbi-dropdown,
2642 .cbi-value-field .cbi-input-select,
2643 .cbi-value input[type="text"],
2644 .cbi-value input[type="password"] {
2645 min-width: 19rem;
2646 }
2647
2648 #cbi-firewall-zone .cbi-input-select {
2649 min-width: 4rem;
2650 }
2651
2652 .main > .main-left > .nav > li,
2653 .main > .main-left > .nav > li a,
2654 .main > .main-left > .nav > .slide > .menu,
2655 .main > .main-left > .nav > li > [data-title] {
2656 font-size: .9rem;
2657 }
2658
2659 .main > .main-left > .nav > .slide > .slide-menu > li > a {
2660 font-size: .7rem;
2661 }
2662
2663 #modal_overlay {
2664 top: 3.5rem;
2665 }
2666
2667 [data-page="admin-network-firewall-forwards"] .table:not(.cbi-section-table) {
2668 display: block;
2669 }
2670
2671 [data-page="admin-network-firewall-forwards"] .table:not(.cbi-section-table),
2672 [data-page="admin-network-firewall-rules"] .table:not(.cbi-section-table),
2673 [data-page="admin-network-hosts"] .table,
2674 [data-page="admin-network-routes"] .table {
2675 overflow-y: visible;
2676 }
2677
2678 .commandbox {
2679 width: 32% !important;
2680 }
2681 }
2682
2683 @media screen and (max-width: 1152px) {
2684 header > .fill > .container > #logo {
2685 display: none;
2686 }
2687
2688 header > .fill > .container > .brand {
2689 position: relative;
2690 }
2691
2692 html,
2693 .main {
2694 overflow-y: visible;
2695 }
2696
2697 .main > .loading > span {
2698 top: 25%;
2699 }
2700
2701 .main-left {
2702 position: fixed;
2703 z-index: 100;
2704 visibility: hidden;
2705 }
2706
2707 .main-right {
2708 width: 100%;
2709 }
2710
2711 .showSide {
2712 position: relative;
2713 top: .18rem;
2714 display: inline-flex;
2715 align-items: center;
2716 width: 1.6rem;
2717 height: 1.6rem;
2718 margin-right: .7rem;
2719 cursor: pointer;
2720 }
2721
2722 .showSide::before {
2723 position: absolute;
2724 left: 1px;
2725 width: 24px;
2726 height: 24px;
2727 content: "";
2728 background: url(./icons/menu.svg) no-repeat center;
2729 }
2730
2731 body:not(.logged-in) .showSide {
2732 visibility: hidden;
2733 width: 0;
2734 margin: 0;
2735 }
2736
2737 .node-main-login > .main .cbi-value-title {
2738 text-align: left;
2739 }
2740
2741 .cbi-value-title {
2742 width: 12rem;
2743 padding-right: 1rem;
2744 }
2745
2746 .cbi-value-field .cbi-dropdown,
2747 .cbi-value-field .cbi-input-select,
2748 .cbi-value input[type="text"] {
2749 width: 16rem;
2750 min-width: 16rem;
2751 }
2752
2753 .cbi-value input[type="password"],
2754 .cbi-value input[name^="pw"],
2755 .cbi-value input[data-update="change"]:nth-child(2) {
2756 width: 13rem !important;
2757 min-width: 13rem;
2758 }
2759
2760 #diag-rc-output > pre,
2761 #command-rc-output > pre,
2762 [data-page="admin-services-wol"] .notice code {
2763 font-size: 1rem;
2764 }
2765
2766 .table {
2767 display: block;
2768 }
2769
2770 .Interfaces .table {
2771 overflow-x: hidden;
2772 }
2773
2774 #packages.table {
2775 display: grid;
2776 }
2777
2778 .tr {
2779 display: flex;
2780 flex-direction: row;
2781 flex-wrap: wrap;
2782 }
2783
2784 .Overview .table[width="100%"] > .tr {
2785 flex-wrap: nowrap;
2786 }
2787
2788 .tr.placeholder {
2789 border-bottom: thin solid #ddd;
2790 }
2791
2792 .tr.placeholder > .td,
2793 #cbi-firewall .tr > .td,
2794 #cbi-network .tr:nth-child(2) > .td,
2795 .cbi-section #wifi_assoclist_table .tr > .td {
2796 border-top: 0;
2797 }
2798
2799 .th,
2800 .td {
2801 display: inline-block;
2802 align-self: flex-start;
2803 flex: 2 2 25%;
2804 text-overflow: ellipsis;
2805 word-wrap: break-word;
2806 }
2807
2808 .td select,
2809 .td input[type="text"] {
2810 width: 100%;
2811 word-wrap: normal;
2812 }
2813
2814 .td [data-dynlist] > input,
2815 .td input.cbi-input-password {
2816 width: calc(100% - 1.5rem);
2817 }
2818
2819 .td[data-type="button"],
2820 .td[data-type="fvalue"] {
2821 flex: 1 1 12.5%;
2822 text-align: left;
2823 }
2824
2825 .th.cbi-value-field,
2826 .td.cbi-value-field,
2827 .th.cbi-section-table-cell,
2828 .td.cbi-section-table-cell {
2829 flex-basis: auto;
2830 padding-top: 1rem;
2831 }
2832
2833 .cbi-section-table-row {
2834 display: flex;
2835 flex-direction: row;
2836 flex-wrap: wrap;
2837 justify-content: space-between;
2838 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12);
2839 }
2840
2841 .td.cbi-value-field,
2842 .cbi-section-table-cell {
2843 display: inline-block;
2844 flex: 10 10 auto;
2845 flex-basis: 50%;
2846 text-align: center;
2847 }
2848
2849 .td.cbi-section-actions {
2850 vertical-align: bottom;
2851 }
2852
2853 .tr.table-titles,
2854 .tr.cbi-section-table-titles,
2855 .tr.cbi-section-table-descr {
2856 display: none;
2857 }
2858
2859 .tr[data-title]::before,
2860 .tr.cbi-section-table-titles.named::before {
2861 font-size: .9rem;
2862 display: block;
2863 flex: 1 1 100%;
2864 border-bottom: thin solid rgba(0, 0, 0, .26);
2865 background: #90c0e0;
2866 }
2867
2868 .td[data-title],
2869 [data-page^="admin-status-realtime"] .td[id] {
2870 text-align: left;
2871 }
2872
2873 .td[data-title]::before {
2874 display: block;
2875 }
2876
2877 .cbi-button + .cbi-button {
2878 margin-left: 0;
2879 }
2880
2881 .td.cbi-section-actions > * > *,
2882 .td.cbi-section-actions > * > form > * {
2883 margin: 2.1px 3px;
2884 }
2885
2886 .Firewall form {
2887 position: static !important;
2888 margin: 0 0 2rem 0;
2889 padding: 2rem;
2890 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12);
2891 }
2892
2893 .Firewall form input {
2894 width: 100% !important;
2895 margin: 0;
2896 margin-top: 1rem;
2897 }
2898
2899 .Firewall .center,
2900 .Firewall .center::before {
2901 text-align: left !important;
2902 }
2903
2904 .commandbox {
2905 width: 100% !important;
2906 margin-left: 0 !important;
2907 }
2908 }
2909
2910 @media screen and (max-width: 600px) {
2911 body {
2912 font-size: .8rem;
2913 }
2914
2915 .cbi-progressbar::after {
2916 font-size: .95em;
2917 line-height: 1.5;
2918 }
2919
2920 fieldset,
2921 .cbi-section {
2922 margin: 1rem 0 0 0;
2923 }
2924
2925 .tabs {
2926 margin: 0 -1rem;
2927 }
2928
2929 #maincontent > .container {
2930 margin: 0 .5rem 1.5rem .5rem;
2931 }
2932
2933 .main > .main-left > .nav > .slide > .menu,
2934 .main > .main-left > .nav > li > [data-title] {
2935 font-size: 1.2rem;
2936 }
2937
2938 .main > .main-left > .nav > .slide > .slide-menu > li > a {
2939 font-size: 1rem;
2940 }
2941
2942 .cbi-value-title {
2943 display: block;
2944 min-width: 0 !important;
2945 margin: .5rem 0;
2946 text-align: left;
2947 }
2948
2949 .cbi-value-title,
2950 .cbi-value-description,
2951 .cbi-value-field,
2952 .cbi-value-field .cbi-dropdown,
2953 .cbi-value-field .cbi-input-select,
2954 .cbi-value input[type="text"] {
2955 width: 100%;
2956 }
2957
2958 .cbi-value > .cbi-value-field {
2959 display: inline-block;
2960 }
2961
2962 .tabs > li > a,
2963 .cbi-tabmenu > li > a {
2964 font-size: .9rem;
2965 padding: .2rem .3rem;
2966 }
2967
2968 .cbi-page-actions > div > input {
2969 display: none;
2970 }
2971
2972 .cbi-page-actions > .cbi-button {
2973 margin-top: .2rem;
2974 }
2975
2976 .node-main-login > .main .container {
2977 margin: 2rem 1.2rem 1.5rem 1.2rem !important;
2978 padding: .3rem 1.7rem 2rem 1.6rem;
2979 }
2980
2981 .node-main-login > .main .cbi-value {
2982 padding: 0;
2983 }
2984
2985 .node-main-login > .main form > div:last-child {
2986 margin-top: 2rem;
2987 }
2988
2989 .node-main-login > .main .cbi-value-title {
2990 font-size: 1.2rem;
2991 width: 100% !important;
2992 }
2993
2994 .node-main-login > .main fieldset {
2995 margin: 0;
2996 padding: .5rem;
2997 }
2998
2999 .commandbox p:first-of-type {
3000 margin-top: -8px;
3001 }
3002
3003 #syslog,
3004 #diag-rc-output > pre,
3005 #command-rc-output > pre,
3006 [data-page="admin-services-wol"] .notice code {
3007 font-size: .8rem !important;
3008 }
3009
3010 h2 {
3011 font-size: 2rem;
3012 }
3013
3014 .tabs > li > a {
3015 font-size: .9rem;
3016 }
3017
3018 select,
3019 input {
3020 font-size: .9rem;
3021 }
3022
3023 code {
3024 font-size: .8rem;
3025 }
3026
3027 .mobile-hide {
3028 display: none;
3029 }
3030
3031 .cbi-section > h3:first-child,
3032 .panel-title {
3033 font-size: 1.4rem;
3034 padding-bottom: 1rem;
3035 }
3036
3037 .node-system-packages > .main .cbi-value.cbi-value-last > div {
3038 width: 100% !important;
3039 }
3040
3041 .node-system-packages > .main .cbi-value .cbi-value-field input {
3042 width: 100%;
3043 }
3044
3045 .th,
3046 .td {
3047 flex-basis: 50%;
3048 }
3049
3050 .td.cbi-value-field {
3051 flex-basis: 100%;
3052 }
3053
3054 .td.cbi-value-field[data-type="button"],
3055 .td.cbi-value-field[data-type="fvalue"] {
3056 flex-basis: 25%;
3057 text-align: left;
3058 }
3059
3060 .tr[data-title]::before,
3061 .tr.cbi-section-table-titles.named::before {
3062 font-size: 1rem;
3063 }
3064
3065 td > .ifacebadge,
3066 .td > .ifacebadge {
3067 font-size: .62rem;
3068 }
3069
3070 #cbi-wireless > #wifi_assoclist_table .td {
3071 overflow: hidden;
3072 }
3073
3074 #cbi-wireless > .cbi-section-node .td,
3075 .Interfaces .td.cbi-section-actions {
3076 text-align: center !important;
3077 }
3078
3079 [data-page="admin-status-processes"] .td[data-title="Hang Up"]::before,
3080 [data-page="admin-status-processes"] .td[data-title="Terminate"]::before,
3081 [data-page="admin-status-processes"] .td[data-title="Kill"]::before {
3082 display: none;
3083 }
3084
3085 .hide-sm,
3086 .hide-xs:not([data-title="MAC-Address"]) {
3087 display: none;
3088 }
3089
3090 .cbi-modal {
3091 padding: .5rem;
3092 }
3093
3094 .cbi-modal .cbi-value {
3095 padding: 0 0 .25rem 0;
3096 }
3097
3098 .cbi-modal [data-tab-title] {
3099 padding: 0 .25rem !important;
3100 }
3101
3102 [data-tab-title] {
3103 padding: 0 .5rem !important;
3104 }
3105 }
3106
3107 @media screen and (min-width: 600px) {
3108 ::-webkit-scrollbar {
3109 width: 10px;
3110 height: 10px;
3111 }
3112
3113 ::-webkit-scrollbar,
3114 ::-webkit-scrollbar-corner {
3115 background: transparent;
3116 }
3117
3118 ::-webkit-scrollbar-thumb {
3119 background: #9e9e9e;
3120 }
3121
3122 ::-webkit-scrollbar-thumb:hover {
3123 background: #757575;
3124 }
3125
3126 ::-webkit-scrollbar-thumb:active {
3127 background: #424242;
3128 }
3129 }