Merge pull request #4421 from etactica/mos-nlocal-only-master
[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 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 > .more,
1418 .cbi-dropdown > ul > li[placeholder] {
1419 font-weight: bold;
1420 display: none;
1421 color: #777;
1422 text-shadow: 1px 1px 0 #fff;
1423 }
1424
1425 .cbi-dropdown > ul > li {
1426 display: none;
1427 overflow: hidden;
1428 align-items: center;
1429 align-self: center;
1430 flex-grow: 1;
1431 flex-shrink: 1;
1432 min-height: 20px;
1433 padding: .25em;
1434 white-space: nowrap;
1435 text-overflow: ellipsis;
1436 }
1437
1438 .cbi-dropdown > ul > li .hide-open {
1439 display: initial;
1440 }
1441
1442 .cbi-dropdown > ul > li .hide-close {
1443 display: none;
1444 }
1445
1446 .cbi-dropdown > ul > li[display]:not([display="0"]) {
1447 border-left: thin solid #ccc;
1448 }
1449
1450 .cbi-dropdown[empty] > ul {
1451 max-width: 1px;
1452 }
1453
1454 .cbi-dropdown > ul > li > form {
1455 display: none;
1456 margin: 0;
1457 padding: 0;
1458 pointer-events: none;
1459 }
1460
1461 .cbi-dropdown > ul > li img {
1462 margin-right: .25em;
1463 vertical-align: middle;
1464 }
1465
1466 .cbi-dropdown > ul > li > form > input[type="checkbox"] {
1467 height: auto;
1468 margin: 0;
1469 }
1470
1471 .cbi-dropdown > ul > li input[type="text"] {
1472 height: 20px;
1473 }
1474
1475 .cbi-dropdown[open] > ul.dropdown {
1476 position: absolute;
1477 z-index: 1100;
1478 display: block;
1479 width: auto;
1480 min-width: 100%;
1481 max-width: none;
1482 max-height: 200px !important;
1483 border: thin solid #918e8c;
1484 background: #f6f6f6;
1485 box-shadow: 0 0 4px #918e8c;
1486 color: var(--main-menu-color);
1487 }
1488
1489 .cbi-dropdown > ul > li[display],
1490 .cbi-dropdown[open] > ul.preview,
1491 .cbi-dropdown[open] > ul.dropdown > li,
1492 .cbi-dropdown[multiple] > ul > li > label,
1493 .cbi-dropdown[multiple][open] > ul.dropdown > li,
1494 .cbi-dropdown[multiple][more] > .more,
1495 .cbi-dropdown[multiple][empty] > .more {
1496 display: flex;
1497 align-items: center;
1498 flex-grow: 1;
1499 }
1500
1501 .cbi-dropdown[empty] > ul > li,
1502 .cbi-dropdown[optional][open] > ul.dropdown > li[placeholder],
1503 .cbi-dropdown[multiple][open] > ul.dropdown > li > form {
1504 display: block;
1505 }
1506
1507 .cbi-dropdown[open] > ul.dropdown > li .hide-open {
1508 display: none;
1509 }
1510
1511 .cbi-dropdown[open] > ul.dropdown > li .hide-close {
1512 display: initial;
1513 }
1514
1515 .cbi-dropdown[open] > ul.dropdown > li {
1516 border-bottom: thin solid #ccc;
1517 }
1518
1519 .cbi-dropdown[open] > ul.dropdown > li[selected] {
1520 background: #b0d0f0;
1521 }
1522
1523 .cbi-dropdown[open] > ul.dropdown > li.focus {
1524 background: linear-gradient(90deg, #a3c2e8 0%, #84aad9 100%);
1525 }
1526
1527 .cbi-dropdown[open] > ul.dropdown > li:last-child {
1528 margin-bottom: 0;
1529 border-bottom: 0;
1530 }
1531
1532 .cbi-dropdown[open] > ul.dropdown > li[unselectable] {
1533 opacity: .7;
1534 }
1535
1536 .cbi-dropdown[open] > ul.dropdown > li > input.create-item-input:first-child:last-child {
1537 width: 100%;
1538 }
1539
1540 .cbi-dropdown[disabled] {
1541 pointer-events: none;
1542 opacity: .6;
1543 }
1544
1545 .cbi-dropdown .zonebadge {
1546 width: 100%;
1547 }
1548
1549 .cbi-dropdown[open] .zonebadge {
1550 width: auto;
1551 }
1552
1553 /* progressbar */
1554 .cbi-progressbar {
1555 position: relative;
1556 min-width: 170px;
1557 height: 20px;
1558 margin: 6px 0;
1559 border: thin solid #999;
1560 background: #eee;
1561 }
1562
1563 .cbi-progressbar > div {
1564 width: 0;
1565 height: 100%;
1566 transition: width .25s ease-in;
1567 background: #5bc0de;
1568 background: var(--bar-bg);
1569 }
1570
1571 .cbi-progressbar::after {
1572 font-family: monospace;
1573 font-size: 1.3em;
1574 font-weight: bold;
1575 font-size-adjust: .38;
1576 line-height: normal;
1577 position: absolute;
1578 top: 2px;
1579 right: 0;
1580 bottom: 2px;
1581 left: 0;
1582 overflow: hidden;
1583 content: attr(title);
1584 text-align: center;
1585 white-space: pre;
1586 text-overflow: ellipsis;
1587 text-shadow: 0 0 2px #eee;
1588 }
1589
1590 #modal_overlay {
1591 position: fixed;
1592 z-index: 900;
1593 top: 4rem;
1594 right: 10000px;
1595 bottom: 0;
1596 left: -10000px;
1597 overflow-y: scroll;
1598 transition: opacity .125s ease-in;
1599 opacity: 0;
1600 background: rgba(0, 0, 0, .7);
1601 -webkit-overflow-scrolling: touch;
1602 }
1603
1604 .modal {
1605 display: flex;
1606 align-items: center;
1607 flex-wrap: wrap;
1608 width: 90%;
1609 min-width: 270px;
1610 max-width: 600px;
1611 min-height: 32px;
1612 margin: 5em auto;
1613 padding: 1em;
1614 border-radius: 3px !important;
1615 background: #fff;
1616 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12);
1617 }
1618
1619 .modal > * {
1620 line-height: normal;
1621 flex-basis: 100%;
1622 margin-bottom: .5em;
1623 max-width: 100%;
1624 }
1625
1626 .modal > pre,
1627 .modal > textarea {
1628 font-size: 1rem;
1629 font-size-adjust: .35;
1630 overflow: auto;
1631 margin-bottom: .5em;
1632 padding: 8.5px;
1633 cursor: auto;
1634 white-space: pre-wrap;
1635 color: #eee;
1636 outline: 0;
1637 background-color: #101010;
1638 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12);
1639 }
1640
1641 .modal > h4 {
1642 margin: .5em 0;
1643 }
1644
1645 .modal ul {
1646 margin-left: 2.2em;
1647 }
1648
1649 .modal li {
1650 list-style-type: square;
1651 color: #808080;
1652 }
1653
1654 .modal p {
1655 padding-left: .25rem;
1656 word-break: break-word;
1657 }
1658
1659 .modal .label {
1660 font-size: .6rem;
1661 font-weight: normal;
1662 padding: .1rem .3rem;
1663 padding-bottom: 0;
1664 cursor: default;
1665 border-radius: 0;
1666 }
1667
1668 .modal .label.warning {
1669 background-color: #f0ad4e !important;
1670 }
1671
1672 .modal .btn {
1673 padding: .3rem .6rem;
1674 }
1675
1676 .modal.cbi-modal {
1677 max-width: 90%;
1678 max-height: none;
1679 }
1680
1681 body.modal-overlay-active {
1682 overflow: hidden;
1683 height: 100vh;
1684 }
1685
1686 body.modal-overlay-active #modal_overlay {
1687 right: 0;
1688 left: 0;
1689 opacity: 1;
1690 }
1691
1692 .spinning {
1693 position: relative;
1694 padding-left: 32px !important;
1695 }
1696
1697 .spinning::before {
1698 position: absolute;
1699 top: 0;
1700 bottom: 0;
1701 left: .2em;
1702 width: 32px;
1703 content: "";
1704 background: url(../resources/icons/loading.gif) no-repeat center;
1705 background-size: 16px;
1706 }
1707
1708 /* luci */
1709 .hidden {
1710 display: none;
1711 }
1712
1713 .left,
1714 .left::before {
1715 text-align: left !important;
1716 }
1717
1718 .right,
1719 .right::before {
1720 text-align: right !important;
1721 }
1722
1723 .center,
1724 .center::before {
1725 text-align: center !important;
1726 }
1727
1728 .top {
1729 align-self: flex-start !important;
1730 vertical-align: top !important;
1731 }
1732
1733 .bottom {
1734 align-self: flex-end !important;
1735 vertical-align: bottom !important;
1736 }
1737
1738 .inline {
1739 display: inline;
1740 }
1741
1742 .cbi-page-actions {
1743 padding-top: 1rem;
1744 text-align: right;
1745 }
1746
1747 .cbi-page-actions > form[method="post"] {
1748 display: inline-block;
1749 }
1750
1751 .th[data-type="button"],
1752 .td[data-type="button"],
1753 .th[data-type="fvalue"],
1754 .td[data-type="fvalue"] {
1755 flex: 1 1 2em;
1756 text-align: center;
1757 }
1758
1759 .ifacebadge {
1760 display: inline-flex;
1761 padding: .5rem .8rem;
1762 border-bottom: thin solid #ccc;
1763 background: #eee;
1764 box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
1765 }
1766
1767 td > .ifacebadge,
1768 .td > .ifacebadge {
1769 font-size: .8rem;
1770 background-color: #f0f0f0;
1771 }
1772
1773 .ifacebadge > em,
1774 .ifacebadge > img {
1775 display: inline-block;
1776 align-self: flex-start;
1777 margin: 0 .2rem;
1778 }
1779
1780 .ifacebadge > img + img {
1781 margin: 0 .2rem 0 0;
1782 }
1783
1784 .network-status-table {
1785 display: flex;
1786 flex-wrap: wrap;
1787 }
1788
1789 .network-status-table .ifacebox {
1790 flex-grow: 1;
1791 margin: .5em;
1792 }
1793
1794 .network-status-table .ifacebox-body {
1795 display: flex;
1796 flex-direction: column;
1797 height: 100%;
1798 }
1799
1800 .network-status-table .ifacebox-body > span {
1801 flex: 10 10 auto;
1802 height: 100%;
1803 }
1804
1805 .network-status-table .ifacebox-body > div {
1806 display: flex;
1807 flex-wrap: wrap;
1808 }
1809
1810 .network-status-table .ifacebox-body .ifacebadge {
1811 align-items: center;
1812 flex: 1 1 auto;
1813 min-width: 220px;
1814 margin: .5em .25em 0 .25em;
1815 padding: .5em;
1816 background-color: #fff;
1817 }
1818
1819 /* textarea */
1820 .cbi-input-textarea {
1821 font-family: monospace;
1822 width: 100%;
1823 min-height: 14rem;
1824 padding: .8rem;
1825 color: #000;
1826 }
1827
1828 #syslog {
1829 font-size: small;
1830 line-height: 1.25;
1831 overflow-y: hidden;
1832 width: 100%;
1833 min-height: 15rem;
1834 padding: 1rem;
1835 resize: none;
1836 color: #eee;
1837 border: 0;
1838 border-radius: 0;
1839 background-color: #101010;
1840 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12);
1841 }
1842
1843 #syslog:focus {
1844 outline: 0;
1845 }
1846
1847 /* config changes */
1848 .uci-change-list {
1849 font-family: monospace;
1850 }
1851
1852 .uci-change-list ins,
1853 .uci-change-legend-label ins {
1854 display: block;
1855 padding: 2px;
1856 text-decoration: none;
1857 border: thin solid #0f0;
1858 background-color: #cfc;
1859 }
1860
1861 .uci-change-list del,
1862 .uci-change-legend-label del {
1863 font-style: normal;
1864 display: block;
1865 padding: 2px;
1866 text-decoration: none;
1867 border: thin solid #f00;
1868 background-color: #fcc;
1869 }
1870
1871 .uci-change-list var,
1872 .uci-change-legend-label var {
1873 font-style: normal;
1874 display: block;
1875 padding: 2px;
1876 text-decoration: none;
1877 border: thin solid #ccc;
1878 background-color: #eee;
1879 }
1880
1881 .uci-change-list var ins,
1882 .uci-change-list var del {
1883 font-style: normal;
1884 padding: 0;
1885 white-space: pre;
1886 border: 0;
1887 }
1888
1889 .uci-change-legend {
1890 padding: 5px;
1891 }
1892
1893 .uci-change-legend-label {
1894 float: left;
1895 width: 150px;
1896 }
1897
1898 .uci-change-legend-label > ins,
1899 .uci-change-legend-label > del,
1900 .uci-change-legend-label > var {
1901 display: block;
1902 float: left;
1903 width: 10px;
1904 height: 10px;
1905 margin-right: 4px;
1906 }
1907
1908 .uci-change-legend-label var ins,
1909 .uci-change-legend-label var del {
1910 line-height: .4;
1911 border: 0;
1912 }
1913
1914 .uci-change-list var,
1915 .uci-change-list del,
1916 .uci-change-list ins {
1917 padding: .5rem;
1918 }
1919
1920 /* other fix */
1921 #iwsvg,
1922 #iwsvg2,
1923 #bwsvg {
1924 border: thin solid #d4d4d4 !important;
1925 }
1926
1927 #iwsvg,
1928 [data-page="admin-status-realtime-bandwidth"] #bwsvg {
1929 border-top: 0 !important;
1930 }
1931
1932 .ifacebox {
1933 line-height: 1.25;
1934 display: inline-flex;
1935 flex-direction: column;
1936 min-width: 100px;
1937 border-bottom: thin solid #ccc;
1938 background-color: #f9f9f9;
1939 box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4), 0 1px 2px rgba(0, 0, 0, .2);
1940 }
1941
1942 .ifacebox-head {
1943 padding: .25em;
1944 background: #eee;
1945 }
1946
1947 .ifacebox-head.active {
1948 background: #5bc0de;
1949 background: var(--bar-bg);
1950 }
1951
1952 .ifacebox-body {
1953 padding: .25em;
1954 }
1955
1956 .cbi-image-button {
1957 margin-left: .5rem;
1958 }
1959
1960 .zonebadge {
1961 display: inline-block;
1962 padding: .2rem .5rem;
1963 }
1964
1965 .zonebadge .ifacebadge {
1966 margin: .1rem .2rem;
1967 padding: .2rem .3rem;
1968 border: thin solid #6c6c6c;
1969 }
1970
1971 .zonebadge > input[type="text"] {
1972 min-width: 10rem;
1973 margin-top: .3rem;
1974 padding: .16rem 1rem;
1975 }
1976
1977 .zonebadge > em,
1978 .zonebadge > strong {
1979 display: inline-block;
1980 margin: 0 .2rem;
1981 }
1982
1983 .cbi-value-field .cbi-input-checkbox,
1984 .cbi-value-field .cbi-input-radio {
1985 margin-top: .1rem;
1986 }
1987
1988 .cbi-value-field > ul > li {
1989 display: flex;
1990 }
1991
1992 .cbi-value-field > ul > li > label {
1993 margin-top: .5rem;
1994 }
1995
1996 .cbi-value-field > ul > li .ifacebadge {
1997 margin-top: -.5rem;
1998 margin-left: .4rem;
1999 background-color: #eee;
2000 }
2001
2002 .cbi-section-table-row > .cbi-value-field .cbi-dropdown {
2003 min-width: 7rem;
2004 }
2005
2006 .cbi-section-create {
2007 display: inline-flex;
2008 align-items: center;
2009 margin: .5rem -3px;
2010 }
2011
2012 .cbi-section-create > * {
2013 margin: .5rem;
2014 }
2015
2016 .cbi-section-remove {
2017 padding: .5rem;
2018 }
2019
2020 div.cbi-value var,
2021 td.cbi-value-field var,
2022 .td.cbi-value-field var {
2023 font-style: italic;
2024 color: #0069d6;
2025 }
2026
2027 .cbi-optionals {
2028 padding: 1rem 1rem 0 1rem;
2029 border-top: thin solid #ccc;
2030 }
2031
2032 .cbi-dropdown-container {
2033 position: relative;
2034 }
2035
2036 .cbi-tooltip-container,
2037 span[data-tooltip],
2038 span[data-tooltip] .label {
2039 cursor: help !important;
2040 }
2041
2042 .cbi-tooltip {
2043 position: absolute;
2044 z-index: 1000;
2045 left: -1000px;
2046 padding: 2px 5px;
2047 transition: opacity .25s ease-out;
2048 white-space: pre;
2049 pointer-events: none;
2050 opacity: 0;
2051 border-radius: 3px;
2052 background: #fff;
2053 box-shadow: 0 0 2px #444;
2054 }
2055
2056 .cbi-tooltip-container:hover .cbi-tooltip {
2057 left: auto;
2058 transition: opacity .25s ease-in;
2059 opacity: 1;
2060 }
2061
2062 .zonebadge .cbi-tooltip {
2063 margin: -1.5rem 0 0 -.5rem;
2064 padding: .25rem;
2065 background: inherit;
2066 }
2067
2068 .zonebadge-empty {
2069 color: #404040;
2070 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);
2071 }
2072
2073 .zone-forwards {
2074 display: flex;
2075 min-width: 10rem;
2076 }
2077
2078 .zone-forwards > * {
2079 flex: 1 1 45%;
2080 }
2081
2082 .zone-forwards > span {
2083 flex-basis: 10%;
2084 padding: 0 .25rem;
2085 text-align: center;
2086 }
2087
2088 .zone-forwards .zone-src,
2089 .zone-forwards .zone-dest {
2090 display: flex;
2091 flex-direction: column;
2092 }
2093
2094 .label,
2095 [data-indicator] {
2096 font-size: .8rem;
2097 font-weight: bold;
2098 padding: .3rem .8rem;
2099 white-space: nowrap;
2100 text-decoration: none;
2101 text-transform: uppercase;
2102 color: #fff !important;
2103 border-radius: 3px;
2104 background-color: #bfbfbf;
2105 text-shadow: none;
2106 }
2107
2108 label > input[type="checkbox"],
2109 label > input[type="radio"] {
2110 position: relative;
2111 top: .4rem;
2112 right: .2rem;
2113 margin: 0;
2114 vertical-align: bottom;
2115 }
2116
2117 label[data-index][data-depends] {
2118 padding-right: 2em;
2119 }
2120
2121 .showSide {
2122 display: none;
2123 }
2124
2125 .darkMask {
2126 position: fixed;
2127 z-index: 99;
2128 display: none;
2129 width: 100%;
2130 height: 100%;
2131 content: "";
2132 background-color: rgba(0, 0, 0, .56);
2133 }
2134
2135 /* diagnostics */
2136 #diag-rc-output > pre,
2137 #command-rc-output > pre,
2138 [data-page="admin-services-wol"] .notice code {
2139 font-size: 1.2rem;
2140 font-size-adjust: .35;
2141 line-height: normal;
2142 display: block;
2143 overflow-y: hidden;
2144 width: 100%;
2145 padding: 8.5px;
2146 white-space: pre;
2147 color: #eee;
2148 background-color: #101010;
2149 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12);
2150 }
2151
2152 [data-page="admin-network-diagnostics"] .table {
2153 box-shadow: none;
2154 }
2155
2156 input[name="ping"],
2157 input[name="traceroute"],
2158 input[name="nslookup"] {
2159 width: 80%;
2160 }
2161
2162 /* fix Main Login */
2163 .node-main-login > .main > .main-left {
2164 display: none;
2165 }
2166
2167 .node-main-login > .main > .main-right {
2168 width: 100%;
2169 }
2170
2171 .node-main-login > .main fieldset {
2172 display: inline;
2173 overflow: hidden;
2174 margin-bottom: 1rem;
2175 padding: .5rem;
2176 border: 0;
2177 background: none;
2178 box-shadow: none;
2179 }
2180
2181 .node-main-login > .main .cbi-value-title {
2182 width: 9.5rem;
2183 }
2184
2185 .node-main-login > .main #maincontent {
2186 text-align: center;
2187 }
2188
2189 .node-main-login > .main .container {
2190 display: inline-block;
2191 margin-top: 2rem !important;
2192 padding: 1rem 3.5rem 2rem;
2193 text-align: left;
2194 background-color: #fff;
2195 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12);
2196 }
2197
2198 .node-main-login > .main form > div:last-child {
2199 float: right;
2200 }
2201
2202 .node-main-login > .main .cbi-value {
2203 display: block;
2204 }
2205
2206 .node-main-login > .main .cbi-value > * {
2207 display: inline-block !important;
2208 }
2209
2210 .node-main-login > .main .cbi-input-text {
2211 width: 100% !important;
2212 min-width: 15rem;
2213 }
2214
2215 .node-main-login .cbi-section {
2216 box-shadow: none;
2217 }
2218
2219 @media screen and (min-height: 585px) {
2220 .node-main-login footer {
2221 position: absolute;
2222 bottom: 0;
2223 width: 100%;
2224 }
2225 }
2226
2227 /* fix status */
2228 .node-status-overview > .main fieldset:nth-child(4) .td:nth-child(2),
2229 .node-status-processes > .main .table .tr .td:nth-child(3) {
2230 white-space: normal;
2231 }
2232
2233 /* fix system reboot */
2234 [data-page="admin-system-reboot"] p {
2235 padding-left: 2rem;
2236 }
2237
2238 [data-page="admin-system-reboot"] p > span {
2239 position: relative;
2240 top: .1rem;
2241 left: 1rem;
2242 }
2243
2244 /* samba */
2245 #cbi-samba [data-tab="template"] .cbi-value-field {
2246 display: block;
2247 }
2248
2249 #cbi-samba [data-tab="template"] .cbi-value-title {
2250 width: auto;
2251 padding-bottom: .6rem;
2252 }
2253
2254 /* software */
2255 .controls > * > .btn:not([aria-label$="page"]) {
2256 flex-grow: initial !important;
2257 margin-top: .1rem;
2258 }
2259
2260 .controls > #pager > .btn[aria-label$="page"] {
2261 font-size: 1.4rem;
2262 font-weight: bold;
2263 }
2264
2265 .controls > * > label {
2266 margin-bottom: .2rem;
2267 }
2268
2269 [data-page="admin-system-opkg"] div.btn {
2270 line-height: 3;
2271 display: inline;
2272 padding: .3rem .6rem;
2273 }
2274
2275 [data-page^="admin-system-admin"]:not(.node-main-login) .cbi-map:not(#cbi-dropbear),
2276 [data-page="admin-system-opkg"] #maincontent > .container {
2277 margin-top: 2rem;
2278 padding-top: .1rem;
2279 }
2280
2281 [data-page="admin-system-opkg"] #maincontent > .container {
2282 margin: 2rem;
2283 margin-bottom: 1rem;
2284 }
2285
2286 .td.version,
2287 .td.size {
2288 white-space: normal !important;
2289 word-break: break-word;
2290 }
2291
2292 .cbi-tabmenu + .cbi-section {
2293 margin-top: 0;
2294 }
2295
2296 /* wireless overview */
2297 #cbi-wireless > #wifi_assoclist_table > .tr {
2298 box-shadow: inset 1px -1px 0 #ddd, inset -1px -1px 0 #ddd;
2299 }
2300
2301 #cbi-wireless > #wifi_assoclist_table > .tr.placeholder > .td {
2302 right: 33px;
2303 bottom: 33px;
2304 left: 33px;
2305 border-top: thin solid #ddd !important;
2306 }
2307
2308 #cbi-wireless > #wifi_assoclist_table > .tr.table-titles {
2309 box-shadow: inset 1px 0 0 #ddd, inset -1px 0 0 #ddd;
2310 }
2311
2312 #cbi-wireless > #wifi_assoclist_table > .tr.table-titles > .th {
2313 border-bottom: thin solid #ddd;
2314 box-shadow: 0 -1px 0 0 #ddd;
2315 }
2316
2317 #wifi_assoclist_table > .tr > .td[data-title="RX Rate / TX Rate"] {
2318 width: 23rem;
2319 }
2320
2321 /* firewall */
2322 #iptables {
2323 margin: 0;
2324 }
2325
2326 .Firewall form {
2327 margin: 2rem 2rem 0 0;
2328 padding: 0;
2329 box-shadow: none;
2330 }
2331
2332 #cbi-firewall-redirect table *,
2333 #cbi-network-switch_vlan table *,
2334 #cbi-firewall-zone table * {
2335 font-size: small;
2336 }
2337
2338 #cbi-firewall-redirect table input[type="text"],
2339 #cbi-network-switch_vlan table input[type="text"],
2340 #cbi-firewall-zone table input[type="text"] {
2341 width: 5rem;
2342 }
2343
2344 #cbi-firewall-redirect table select,
2345 #cbi-network-switch_vlan table select,
2346 #cbi-firewall-zone table select {
2347 min-width: 3.5rem;
2348 }
2349
2350 #cbi-network-switch_vlan .th,
2351 #cbi-network-switch_vlan .td {
2352 flex-basis: 12%;
2353 }
2354
2355 #cbi-firewall-zone .table,
2356 #cbi-network-switch_vlan .table {
2357 display: block;
2358 }
2359
2360 #cbi-firewall-zone .td,
2361 #cbi-network-switch_vlan .td {
2362 width: 100%;
2363 }
2364
2365 /* applyreboot fix */
2366 #applyreboot-container {
2367 margin: 2rem;
2368 }
2369
2370 #applyreboot-section {
2371 line-height: 300%;
2372 margin: 2rem;
2373 }
2374
2375 /* openvpn bug fix */
2376 .OpenVPN a {
2377 line-height: initial !important;
2378 }
2379
2380 /* custom commands */
2381 .commandbox {
2382 width: 24% !important;
2383 margin: 10px 0 0 10px !important;
2384 padding: .5rem 1rem;
2385 border-bottom: thin solid #ccc;
2386 background: #eee;
2387 box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
2388 }
2389
2390 .commandbox h3 {
2391 line-height: normal !important;
2392 overflow: hidden;
2393 margin: 6px 0 !important;
2394 white-space: nowrap;
2395 text-overflow: ellipsis;
2396 }
2397
2398 .commandbox div {
2399 left: auto !important;
2400 }
2401
2402 .commandbox code {
2403 position: absolute;
2404 overflow: hidden;
2405 max-width: 60%;
2406 margin-left: 4px;
2407 padding: 2px 3px;
2408 white-space: nowrap;
2409 text-overflow: ellipsis;
2410 }
2411
2412 .commandbox code:hover {
2413 overflow-y: auto;
2414 max-height: 50px;
2415 white-space: normal;
2416 }
2417
2418 .commandbox p:first-of-type {
2419 margin-top: -6px;
2420 }
2421
2422 .commandbox p:nth-of-type(2) {
2423 margin-top: 2px;
2424 }
2425
2426 [data-page^="admin-system-commands"] .panel-title,
2427 [data-page^="command-cfg"] .mobile-hide,
2428 [data-page^="command-cfg"] .showSide {
2429 display: none;
2430 }
2431
2432 #command-rc-output .alert-message {
2433 line-height: 1.42857143;
2434 position: absolute;
2435 top: 40px;
2436 right: 32px;
2437 max-width: 40%;
2438 margin: 0;
2439 animation: anim-fade-in 1.5s forwards;
2440 word-break: break-word;
2441 opacity: 0;
2442 }
2443
2444 @keyframes anim-fade-in {
2445 100% {
2446 opacity: 1;
2447 }
2448 }
2449
2450 /* IE hacks */
2451 @media all and (-ms-high-contrast: none) {
2452 .main > .main-left > .nav > .slide > .menu::before {
2453 top: 30.25%;
2454 }
2455
2456 .main > .main-left > .nav > li:last-child::before {
2457 top: 20%;
2458 }
2459
2460 .showSide::before {
2461 top: -12px;
2462 }
2463 }
2464
2465 @media screen and (max-width: 1600px) {
2466 header > .fill > .container > #logo {
2467 margin: 0 2.5rem 0 .5rem;
2468 }
2469
2470 .main-left {
2471 width: calc(0% + 13rem);
2472 }
2473
2474 .main-right {
2475 width: calc(100% - 13rem);
2476 }
2477
2478 .btn:not(button),
2479 .cbi-button {
2480 font-size: .8rem;
2481 padding: .3rem .6rem;
2482 }
2483
2484 .label,
2485 [data-indicator] {
2486 padding: .2rem .6rem;
2487 }
2488
2489 fieldset,
2490 .cbi-section {
2491 padding: 1rem;
2492 }
2493
2494 .cbi-value-title {
2495 width: 15rem;
2496 padding-right: .6rem;
2497 }
2498
2499 .cbi-value-field .cbi-dropdown,
2500 .cbi-value-field .cbi-input-select,
2501 .cbi-value input[type="text"],
2502 .cbi-value input[type="password"] {
2503 min-width: 22rem;
2504 }
2505
2506 #cbi-firewall-zone .cbi-input-select {
2507 min-width: 9rem;
2508 }
2509
2510 .cbi-input-textarea {
2511 font-size: small;
2512 }
2513
2514 .node-admin-status > .main fieldset li > a {
2515 padding: .3rem .6rem;
2516 }
2517 }
2518
2519 @media screen and (max-width: 1366px) {
2520 header {
2521 height: 3.5rem;
2522 }
2523
2524 header > .fill > .container {
2525 margin-top: .25rem;
2526 cursor: default;
2527 }
2528
2529 .main {
2530 top: 3.5rem;
2531 height: calc(100% - 3.5rem);
2532 }
2533
2534 .main-left {
2535 top: 3.5rem;
2536 width: calc(0% + 13rem);
2537 height: calc(100% - 3.5rem);
2538 }
2539
2540 .main-right {
2541 width: calc(100% - 13rem);
2542 }
2543
2544 .tabs > li > a,
2545 .cbi-tabmenu > li > a {
2546 padding: .2rem .5rem;
2547 }
2548
2549 .cbi-section > h3:first-child,
2550 .panel-title {
2551 font-size: 1.1rem;
2552 padding-bottom: 1rem;
2553 }
2554
2555 table {
2556 font-size: .7rem !important;
2557 width: 100% !important;
2558 }
2559
2560 .table .cbi-input-text {
2561 width: 100%;
2562 }
2563
2564 .cbi-value-field .cbi-dropdown,
2565 .cbi-value-field .cbi-input-select,
2566 .cbi-value input[type="text"],
2567 .cbi-value input[type="password"] {
2568 min-width: 19rem;
2569 }
2570
2571 #cbi-firewall-zone .cbi-input-select {
2572 min-width: 4rem;
2573 }
2574
2575 .main > .main-left > .nav > li,
2576 .main > .main-left > .nav > li a,
2577 .main > .main-left > .nav > .slide > .menu,
2578 .main > .main-left > .nav > li > [data-title="Logout"] {
2579 font-size: .9rem;
2580 }
2581
2582 .main > .main-left > .nav > .slide > .slide-menu > li > a {
2583 font-size: .7rem;
2584 }
2585
2586 #modal_overlay {
2587 top: 3.5rem;
2588 }
2589
2590 [data-page="admin-network-firewall-forwards"] .table:not(.cbi-section-table) {
2591 display: block;
2592 }
2593
2594 [data-page="admin-network-firewall-forwards"] .table:not(.cbi-section-table),
2595 [data-page="admin-network-firewall-rules"] .table:not(.cbi-section-table),
2596 [data-page="admin-network-hosts"] .table,
2597 [data-page="admin-network-routes"] .table {
2598 overflow-y: visible;
2599 }
2600
2601 .commandbox {
2602 width: 32% !important;
2603 }
2604 }
2605
2606 @media screen and (max-width: 1152px) {
2607 header > .fill > .container > #logo {
2608 display: none;
2609 }
2610
2611 header > .fill > .container > .brand {
2612 position: relative;
2613 }
2614
2615 html,
2616 .main {
2617 overflow-y: visible;
2618 }
2619
2620 .main > .loading > span {
2621 top: 25%;
2622 }
2623
2624 .main-left {
2625 position: fixed;
2626 z-index: 100;
2627 width: 0;
2628 }
2629
2630 .main-right {
2631 width: 100%;
2632 }
2633
2634 .showSide {
2635 position: relative;
2636 top: .18rem;
2637 display: inline-flex;
2638 align-items: center;
2639 width: 1.6rem;
2640 height: 1.6rem;
2641 margin-right: .7rem;
2642 cursor: pointer;
2643 }
2644
2645 .showSide::before {
2646 position: absolute;
2647 left: 1px;
2648 width: 24px;
2649 height: 24px;
2650 content: "";
2651 background: url(./icons/menu.svg) no-repeat center;
2652 }
2653
2654 body:not(.logged-in) .showSide {
2655 visibility: hidden;
2656 width: 0;
2657 margin: 0;
2658 }
2659
2660 .node-main-login > .main .cbi-value-title {
2661 text-align: left;
2662 }
2663
2664 .cbi-value-title {
2665 width: 12rem;
2666 padding-right: 1rem;
2667 }
2668
2669 .cbi-value-field .cbi-dropdown,
2670 .cbi-value-field .cbi-input-select,
2671 .cbi-value input[type="text"] {
2672 width: 16rem;
2673 min-width: 16rem;
2674 }
2675
2676 .cbi-value input[type="password"],
2677 .cbi-value input[name^="pw"],
2678 .cbi-value input[data-update="change"]:nth-child(2) {
2679 width: 13rem !important;
2680 min-width: 13rem;
2681 }
2682
2683 #diag-rc-output > pre,
2684 #command-rc-output > pre,
2685 [data-page="admin-services-wol"] .notice code {
2686 font-size: 1rem;
2687 }
2688
2689 .table {
2690 display: block;
2691 }
2692
2693 .Interfaces .table {
2694 overflow-x: hidden;
2695 }
2696
2697 #packages.table {
2698 display: grid;
2699 }
2700
2701 .tr {
2702 display: flex;
2703 flex-direction: row;
2704 flex-wrap: wrap;
2705 }
2706
2707 .Overview .table[width="100%"] > .tr {
2708 flex-wrap: nowrap;
2709 }
2710
2711 .tr.placeholder {
2712 border-bottom: thin solid #ddd;
2713 }
2714
2715 .tr.placeholder > .td,
2716 #cbi-firewall .tr > .td,
2717 #cbi-network .tr:nth-child(2) > .td,
2718 .cbi-section #wifi_assoclist_table .tr > .td {
2719 border-top: 0;
2720 }
2721
2722 .th,
2723 .td {
2724 display: inline-block;
2725 align-self: flex-start;
2726 flex: 2 2 25%;
2727 text-overflow: ellipsis;
2728 word-wrap: break-word;
2729 }
2730
2731 .td select,
2732 .td input[type="text"] {
2733 width: 100%;
2734 word-wrap: normal;
2735 }
2736
2737 .td [data-dynlist] > input,
2738 .td input.cbi-input-password {
2739 width: calc(100% - 1.5rem);
2740 }
2741
2742 .td[data-type="button"],
2743 .td[data-type="fvalue"] {
2744 flex: 1 1 12.5%;
2745 text-align: left;
2746 }
2747
2748 .th.cbi-value-field,
2749 .td.cbi-value-field,
2750 .th.cbi-section-table-cell,
2751 .td.cbi-section-table-cell {
2752 flex-basis: auto;
2753 padding-top: 1rem;
2754 }
2755
2756 .cbi-section-table-row {
2757 display: flex;
2758 flex-direction: row;
2759 flex-wrap: wrap;
2760 justify-content: space-between;
2761 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12);
2762 }
2763
2764 .td.cbi-value-field,
2765 .cbi-section-table-cell {
2766 display: inline-block;
2767 flex: 10 10 auto;
2768 flex-basis: 50%;
2769 text-align: center;
2770 }
2771
2772 .td.cbi-section-actions {
2773 vertical-align: bottom;
2774 }
2775
2776 .tr.table-titles,
2777 .tr.cbi-section-table-titles,
2778 .tr.cbi-section-table-descr {
2779 display: none;
2780 }
2781
2782 .tr[data-title]::before,
2783 .tr.cbi-section-table-titles.named::before {
2784 font-size: .9rem;
2785 display: block;
2786 flex: 1 1 100%;
2787 border-bottom: thin solid rgba(0, 0, 0, .26);
2788 background: #90c0e0;
2789 }
2790
2791 .td[data-title],
2792 [data-page^="admin-status-realtime"] .td[id] {
2793 text-align: left;
2794 }
2795
2796 .td[data-title]::before {
2797 display: block;
2798 }
2799
2800 .cbi-button + .cbi-button {
2801 margin-left: 0;
2802 }
2803
2804 .td.cbi-section-actions > * > *,
2805 .td.cbi-section-actions > * > form > * {
2806 margin: 2.1px 3px;
2807 }
2808
2809 .Firewall form {
2810 position: static !important;
2811 margin: 0 0 2rem 0;
2812 padding: 2rem;
2813 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12);
2814 }
2815
2816 .Firewall form input {
2817 width: 100% !important;
2818 margin: 0;
2819 margin-top: 1rem;
2820 }
2821
2822 .Firewall .center,
2823 .Firewall .center::before {
2824 text-align: left !important;
2825 }
2826
2827 .commandbox {
2828 width: 100% !important;
2829 margin-left: 0 !important;
2830 }
2831 }
2832
2833 @media screen and (max-width: 600px) {
2834 body {
2835 font-size: .8rem;
2836 }
2837
2838 .cbi-progressbar::after {
2839 font-size: .95em;
2840 line-height: 1.5;
2841 }
2842
2843 fieldset,
2844 .cbi-section {
2845 margin: 1rem 0 0 0;
2846 }
2847
2848 .tabs {
2849 margin: 0 -1rem;
2850 }
2851
2852 #maincontent > .container {
2853 margin: 0 .5rem 1.5rem .5rem;
2854 }
2855
2856 .main > .main-left > .nav > .slide > .menu,
2857 .main > .main-left > .nav > li > [data-title="Logout"] {
2858 font-size: 1.2rem;
2859 }
2860
2861 .main > .main-left > .nav > .slide > .slide-menu > li > a {
2862 font-size: 1rem;
2863 }
2864
2865 .cbi-value-title {
2866 display: block;
2867 min-width: 0 !important;
2868 margin: .5rem 0;
2869 text-align: left;
2870 }
2871
2872 .cbi-value-title,
2873 .cbi-value-description,
2874 .cbi-value-field,
2875 .cbi-value-field .cbi-dropdown,
2876 .cbi-value-field .cbi-input-select,
2877 .cbi-value input[type="text"] {
2878 width: 100%;
2879 }
2880
2881 .cbi-value > .cbi-value-field {
2882 display: inline-block;
2883 }
2884
2885 .tabs > li > a,
2886 .cbi-tabmenu > li > a {
2887 font-size: .9rem;
2888 padding: .2rem .3rem;
2889 }
2890
2891 .cbi-page-actions > div > input {
2892 display: none;
2893 }
2894
2895 .cbi-page-actions > .cbi-button {
2896 margin-top: .2rem;
2897 }
2898
2899 .node-main-login > .main .container {
2900 margin: 2rem 1.2rem 1.5rem 1.2rem !important;
2901 padding: .3rem 1.7rem 2rem 1.6rem;
2902 }
2903
2904 .node-main-login > .main .cbi-value {
2905 padding: 0;
2906 }
2907
2908 .node-main-login > .main form > div:last-child {
2909 margin-top: 2rem;
2910 }
2911
2912 .node-main-login > .main .cbi-value-title {
2913 font-size: 1.2rem;
2914 width: 100% !important;
2915 }
2916
2917 .node-main-login > .main fieldset {
2918 margin: 0;
2919 padding: .5rem;
2920 }
2921
2922 .commandbox p:first-of-type {
2923 margin-top: -8px;
2924 }
2925
2926 #syslog,
2927 #diag-rc-output > pre,
2928 #command-rc-output > pre,
2929 [data-page="admin-services-wol"] .notice code {
2930 font-size: .8rem !important;
2931 }
2932
2933 h2 {
2934 font-size: 2rem;
2935 }
2936
2937 .tabs > li > a {
2938 font-size: .9rem;
2939 }
2940
2941 select,
2942 input {
2943 font-size: .9rem;
2944 }
2945
2946 code {
2947 font-size: .8rem;
2948 }
2949
2950 .mobile-hide {
2951 display: none;
2952 }
2953
2954 .cbi-section > h3:first-child,
2955 .panel-title {
2956 font-size: 1.4rem;
2957 padding-bottom: 1rem;
2958 }
2959
2960 .node-system-packages > .main .cbi-value.cbi-value-last > div {
2961 width: 100% !important;
2962 }
2963
2964 .node-system-packages > .main .cbi-value .cbi-value-field input {
2965 width: 100%;
2966 }
2967
2968 .th,
2969 .td {
2970 flex-basis: 50%;
2971 }
2972
2973 .td.cbi-value-field {
2974 flex-basis: 100%;
2975 }
2976
2977 .td.cbi-value-field[data-type="button"],
2978 .td.cbi-value-field[data-type="fvalue"] {
2979 flex-basis: 25%;
2980 text-align: left;
2981 }
2982
2983 .tr[data-title]::before,
2984 .tr.cbi-section-table-titles.named::before {
2985 font-size: 1rem;
2986 }
2987
2988 td > .ifacebadge,
2989 .td > .ifacebadge {
2990 font-size: .62rem;
2991 }
2992
2993 #cbi-wireless > #wifi_assoclist_table .td {
2994 overflow: hidden;
2995 }
2996
2997 #cbi-wireless > .cbi-section-node .td,
2998 .Interfaces .td.cbi-section-actions {
2999 text-align: center !important;
3000 }
3001
3002 [data-page="admin-status-processes"] .td[data-title="Hang Up"]::before,
3003 [data-page="admin-status-processes"] .td[data-title="Terminate"]::before,
3004 [data-page="admin-status-processes"] .td[data-title="Kill"]::before {
3005 display: none;
3006 }
3007
3008 .hide-sm,
3009 .hide-xs:not([data-title="MAC-Address"]) {
3010 display: none;
3011 }
3012
3013 .cbi-modal {
3014 padding: .5rem;
3015 }
3016
3017 .cbi-modal .cbi-value {
3018 padding: 0 0 .25rem 0;
3019 }
3020
3021 .cbi-modal [data-tab-title] {
3022 padding: 0 .25rem !important;
3023 }
3024
3025 [data-tab-title] {
3026 padding: 0 .5rem !important;
3027 }
3028 }
3029
3030 @media screen and (min-width: 600px) {
3031 ::-webkit-scrollbar {
3032 width: 10px;
3033 height: 10px;
3034 }
3035
3036 ::-webkit-scrollbar,
3037 ::-webkit-scrollbar-corner {
3038 background: transparent;
3039 }
3040
3041 ::-webkit-scrollbar-thumb {
3042 background: #9e9e9e;
3043 }
3044
3045 ::-webkit-scrollbar-thumb:hover {
3046 background: #757575;
3047 }
3048
3049 ::-webkit-scrollbar-thumb:active {
3050 background: #424242;
3051 }
3052 }