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