tazpanel view styles/default/base.css @ rev 519

tazpanel.js, footer.html: fix AJAX loader display; misc tiny edits
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Aug 04 02:32:11 2015 +0300 (2015-08-04)
parents 3117717c007d
children 5323427d34b9
line source
1 /**
2 * CSS style for TazPanel - (C) 2011-2015 SliTaz GNU/Linux
3 */
6 /* To always have a scroll bar */
7 /*html { min-height: 102%; } */
9 body { color: CaptionText; font: caption; margin: 72px 0 0 0; }
13 /**
14 * Header and main title
15 */
17 body > header {
18 position: fixed; top: 0; left: 0;
19 width: 100%; height: 40px;
20 background-color: #222;
21 background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJAQMAAADaX5RTAAAABlBMVEUXFxciIygUb+JNAAAAEUlEQVQIHWNkYGDMFQYhDAYAJbADCjwbCYUAAAAASUVORK5CYII=');
22 }
24 body > header h1 {
25 margin: 0;
26 color: #CCC;
27 font-size: 18px; line-height: 21px;
28 font-weight: 300;
29 white-space: nowrap; overflow: hidden;
30 vertical-align: middle;
31 }
33 body > header div {
34 position: absolute; left: 40px; top: 21px;
35 color: #FFF; background: transparent;
36 font-size: 14px; line-height: 19px;
37 font-weight: 300;
38 white-space: nowrap; overflow: hidden;
39 vertical-align: middle;
40 }
43 /**
44 * Toolbar with menu
45 */
47 nav {
48 position: fixed; top: 40px; left: 0;
49 width: 100%;
50 display: table;
51 border: 1px solid; border-right: none; border-left: none;
52 }
56 /* menu panel */
57 #toolbarMenu { margin: 0; padding: 0; height: 100%; font: menu; }
59 /* shadows */
60 #toolbar { z-index: 10; box-shadow: 0 0 8px #000; }
61 menu.opened, menu.opened li:hover menu { z-index: 9; box-shadow: 2px 2px 8px hsla(0, 0%, 0%, 0.3); }
63 /* menu items */
64 #toolbarMenu li {
65 list-style: none;
66 float: left;
67 display: block;
68 padding: 0;
69 color: inherit; background: inherit;
70 outline: none;
71 }
72 #toolbarMenu > li > span {
73 display: inline-block;
74 padding: 0.2rem;
75 cursor: pointer;
76 }
78 #toolbarMenu menu li a {
79 padding: 0.2rem;
80 }
82 /* Selected menu item */
83 #toolbarMenu li:focus span,
84 #toolbarMenu li:hover span,
85 #toolbarMenu menu li:focus,
86 .user #toolbarMenu menu li:hover > a:not([data-root]),
87 .root #toolbarMenu menu li:hover {
88 background-color: hsla(30, 100%, 50%, 0.5);
89 }
94 #toolbarMenu menu {
95 position: absolute;
96 margin: 0; padding: 0;
97 white-space: nowrap;
98 border: 1px solid;
99 display: none;
100 }
102 /* Submenus */
103 #toolbarMenu menu menu {
104 left: 100%; top: 0;
105 min-width: 100%;
106 }
108 /* Show menu list */
109 #toolbarMenu menu.opened {
110 display: block; z-index: 10;
111 }
113 /* By default hide submenus */
114 #toolbarMenu menu.opened menu {
115 display: none;
116 }
117 /* Show submenu on mouse over */
118 .opened li:hover menu { display: block !important; }
120 /* Menu items one below the other */
121 #toolbarMenu menu li {
122 position: relative;
123 float: none;
124 }
125 /* Show arrow for submenu */
126 #toolbarMenu a:after { content: "‣"; float: right; }
127 #toolbarMenu a:only-child:after { content: " "; }
129 #toolbarMenu a { display: block; color: inherit; text-decoration: none; }
131 /* Clicking this layer close menu */
132 #noMenu {
133 position: absolute; top: 63px; bottom: 0; left: 0; right: 0;
134 background-color: transparent;
135 display: none;
136 z-index: 9;
137 }
140 /**
141 * Panes, sections
142 */
144 section {
145 display: block;
146 border: 1pt solid; border-radius: 0.3rem;
147 padding: 0; margin: 0.5rem 0 0 0;
148 }
150 section header {
151 padding: 0.2rem 0.3rem; margin: 0;
152 display: table; width: 100%;
153 border-radius: 0.3rem 0.3rem 0 0;
154 font-weight: bold; font-size: 1.1rem;/* line-height: 0;*/
155 text-shadow: 0 1px 1px hsla(0, 0%, 0%, 0.2);
156 overflow: auto; /* provide break after floated objects */
157 vertical-align: baseline;
158 }
159 section header form, section footer form {
160 display: table-cell; vertical-align: baseline; line-height: 0; width: 1px; white-space: nowrap;
161 }
162 section header button, section footer button { margin: 0; }
164 section header a { float: right; }
166 section footer {
167 padding: 0 0.3rem 0.2rem; margin: 0;
168 display: block;
169 overflow: auto; /* provide break after floated objects */
170 vertical-align: baseline;
171 }
173 section > pre,
174 section div { padding: 0.3rem 0.3rem 0.2rem 0.3rem; margin: 0; }
175 section td:nth-child(1) { padding-left: 0.3rem; }
176 section table { margin-bottom: 0.3rem; }
177 .nogap { word-spacing: 0; } /* remove gap between buttons in line */
179 .scroll { max-height: 12rem; overflow: auto; }
180 section .scroll { padding: 0; margin: 0; border: 1pt solid; }
181 section pre.scroll { margin: 0.1rem; padding: 0.1rem; }
190 #actions {
191 display: block;
192 margin: 0; padding: 0.2rem 0.3rem;
193 overflow: auto; /* provide break after floated objects */
194 }
195 .float-left, .float-right { display: table-cell; padding: 0; margin: 0; }
196 .float-left { float: left; }
197 .float-right { float: right; }
201 fieldset { border: 1pt solid; border-radius: 0.3rem; margin-bottom: 0.2rem; }
202 fieldset[disabled] { background-color: hsla(0, 0%, 50%, 0.1);}
208 /* Icons on the right of the toolbar */
209 #icons {
210 display: table-cell; vertical-align: middle; /* center vertical */
211 padding: 0.1rem 0.3rem;
212 white-space: nowrap; width: 1rem; /* minimal width */
213 }
217 /* Loading notification bar */
218 #loading {
219 position: fixed; top: 76px; right: 140px; width: 248px;
220 padding: 4px 4px 2px;
221 background-color: #f8f8f8; color: #666;
222 border: 1px solid #ddd;
223 cursor: progress;
224 }
228 /* Page content container */
229 #content { margin: 0; padding: 1ex; }
232 /* Page first header */
233 h2 { font-size: 1.5rem; height: 1.5rem; padding: 0; margin: 0; }
236 /* Additional headers (obsolete) */
237 h3 { font-size: 1.3rem; margin: 0; }
238 h4 { font-size: 1.1rem; margin: 0; }
241 /* Plain paragraph */
242 p { margin: 0.5ex 0; }
245 #actions p { margin: 6px 0; }
251 button img { padding: 0 3px 0 0; margin: 0; }
252 button, input, select {
253 /*color: ButtonText;*/
254 vertical-align: middle; }
255 button:before, input:before, select:before {
256 padding: 3px; }
258 ul { list-style-type: square; }
259 li { padding: 4px 0; }
262 /* Blocks */
264 #block { float: left; }
266 #wrapper, .wrapper { margin: 20px 0; }
268 .box {
269 display: table;
270 padding: 1em;
271 width: 50%; margin: 0.5em auto;
272 }
273 .box span { display: inline-block; margin-right: 0.5rem; float: left; }
275 .box ul { list-style-type: none; padding: 0; }
277 .debug {
278 position: fixed;
279 bottom: 0px;
280 right: 10px;
281 left: 10px;
282 margin: 5px;
283 padding: 4px 10px;
284 background-color: #111;
285 color: #fff;
286 border: 0;
287 /*font-size: 12px;*/
288 opacity: 0.9;
289 }
294 /**********
295 * Tables *
296 **********/
298 /* Base style */
299 table { margin: 0; padding: 0; border: 0 none; border-collapse: collapse; }
301 /* Bold header */
302 thead { font-weight: bold; }
304 /* Wide table */
305 .wide { width: 100%; }
307 /* Center content excluding first column */
308 .center tr td { text-align: center; }
309 .center tr td:nth-child(1) { text-align: left; padding-left: 0.3rem; }
311 /* Table Zebra */
312 .zebra thead td { line-height: 1.5em; text-align: center; vertical-align: middle; border: 1pt solid; }
316 .borders.zebra td + td { border-left: 1px solid; }
320 .outbox { box-shadow: 0 0 2px 4px #ddd; }
321 .fixed { table-layout: fixed; }
324 .borders tr { border-bottom: 1pt solid; }
326 .hborders thead tr { border-top: 1.5pt solid; border-bottom: 1.5pt solid; }
328 td.small { min-width: 60px; }
329 td.pct { min-width: 200px; background: #eee; }
330 div.pct { background: #ccc; }
331 td.pct, div.pct { border-radius: 2px; }
332 td img {vertical-align: middle; }
334 table.daemons td:nth-child(4), table.daemons td:nth-child(5) { text-align: center; }
340 /**
341 * Misc
342 */
344 /* Links */
346 a { text-decoration: none; color: #268bd2; cursor: pointer; }
347 a:not([data-img]):hover { text-decoration: underline; }
350 form { display: inline-block; padding: 0; margin: 0; }
352 pre { margin: 0; padding: 0; color: CaptionText; }
354 .pre-main { margin: 16px 0; }
355 .pre-wrap { white-space: pre-wrap; }
359 /* Round corner */
361 #loading, .debug, .box, .outbox, section {
362 -moz-border-radius: 4px;
363 -webkit-border-radius: 4px;
364 border-radius: 4px;
365 }
367 /* Help page */
369 #help { text-align: justify; }
370 #help a { text-decoration: underline; }
371 #help a:hover { text-decoration: none; }
375 /*
376 * Page footer
377 */
379 body > footer {
380 border-top: 1px solid;
381 text-align: center;
382 height: 19px; margin: 0; padding: 0;
383 line-height: 16px; vertical-align: middle;
384 z-index: 10;
385 overflow: hidden;
386 }
387 #defaultStatus, #statusBar { font-size: smaller; vertical-align: middle; }
389 #content { z-index: 5; }
391 #ajaxStatus {
392 position: absolute; right: 0; top: -4px;
393 display: inline-block;
394 font-size: 16px!important; line-height: 16px!important; vertical-align: middle;
395 padding: 0; margin: 0;
396 height: 16px;
397 }
399 /***************
400 * HTML5 Meter *
401 ***************/
403 .meter {
404 height: 1.2rem;
405 min-width: 150px;
406 color: #222;
407 /*cursor: default;*/
408 }
409 .meter meter {
410 height: inherit;
411 width: 100%;
412 display: block;
413 border: 1px solid #ddd;
414 border-radius: 4px;
415 }
416 .meter span {
417 display: block;
418 white-space: nowrap;
419 position: absolute;
420 margin: -1.1rem auto 0 0.3rem;
421 }
425 /**************
426 * Animations *
427 **************/
429 a.button {
430 -webkit-transition: all 0.3s ease-in-out;
431 -moz-transition: all 0.3s ease-in-out;
432 -o-transition: all 0.3s ease-in-out;
433 -ms-transition: all 0.3s ease-in-out;
434 transition: all 0.3s ease-in-out;
435 }
437 /*section {
438 margin: 20pt -0.7em;
439 padding: 0.8em 0.7em 1.2em;
440 background-color: #fdfdfd;
441 border: 1px solid #ddd;
442 border-radius: 1em;
443 box-shadow: 0 0 3pt 2pt #eee;
444 }
445 section h4 {
446 margin: 0 0 0.5em 0;
447 }
448 section h3 {
449 margin: 0 0 0.5em 0; }
450 */
452 #tabs {
453 font-weight: bold;
454 /*font-size: 14px;*/
455 list-style-type: none;
456 padding-bottom: 25px;
457 border-bottom: 1px solid #aaa;
458 }
460 #tabs li {
461 float: left;
462 height: 16px;
463 background-color: #eee;
464 margin: 0 40px 0 -40px;
465 border: 1px solid #aaa;
466 text-align: center;
467 min-width: 100px;
468 -webkit-border-radius: 4px 4px 0 0;
469 -moz-border-radius: 4px 4px 0 0;
470 border-radius: 4px 4px 0 0;
471 -webkit-appearance: tab;
472 appearance: tab;
473 }
475 #tabs li.active {
476 border-bottom: 1px solid #fff;
477 background-color: #fff;
478 }
480 #tabs a {
481 padding: 8px;
482 }
486 /****************
487 * Search block *
488 ****************/
489 .search {
490 display: block; white-space: nowrap;
491 position: fixed; right: 7px; top: 7px;
492 margin: 0; padding: 0; border: none;
493 }
494 .search input {
495 display: inline-block;
496 width: 200px; height: 24px;
497 }
498 .search button {
499 -webkit-appearance: button;
500 height: 100%; margin: 0;
501 }
505 /**********************
506 * Buttons with icons *
507 **********************/
508 @font-face {
509 font-family: TazPanelWeb;
510 src: url('/styles/default/tazpanel.ttf');
511 }
513 [data-icon]:before, [data-img] {
514 vertical-align: baseline;
515 padding: 0;
516 margin: 0 /*0 0 -0.5em*/;
517 font-size: 1.2em;
518 font-family: TazPanel, TazPanelWeb;
520 font-style: normal;
521 font-weight: normal;
522 font-variant: normal;
523 text-transform: none;
524 line-height: 1.2em;
525 display: inline-block;
526 text-decoration: none;
527 width: 1.2em; text-align: center;
529 -webkit-font-feature-settings: "liga", "dlig";
530 -moz-font-feature-settings: "liga=1, dlig=1";
531 -o-font-feature-settings: "liga", "dlig";
532 font-feature-settings: "liga", "dlig";
534 -webkit-text-rendering: optimizeLegibility;
535 -moz-text-rendering: optimizeLegibility;
536 -o-text-rendering: optimizeLegibility;
537 text-rendering: optimizeLegibility;
539 -webkit-font-smoothing: antialiased;
540 -moz-font-smoothing: antialiased;
541 -o-font-smoothing: antialiased;
542 font-smoothing: antialiased;
543 }
544 button[data-icon]::before { font-size: 16px; line-height: 16px; width: 16px; }
546 [data-icon]::before { content: attr(data-icon); }
547 [data-img]::before { content: attr(data-img); }
549 [data-icon], [data-img] { display: inline-block; }
552 /* Solarized:
553 red #dc322f
554 orange #cb4b16
555 yellow #b58900
556 green #859900
557 cyan #2aa198
558 blue #268bd2
559 magenta #d33682
560 */
563 [data-icon="tazpanel"]::before {
564 display: inline-block;
565 content: '\f151';
566 border: 1pt solid; border-radius: 0.2rem;
567 font-size: 32px; line-height: 32px;
569 height: 32px; width: 32px;
570 margin: 0.2rem;
571 padding: 0;
572 vertical-align: top;
573 }
575 [data-icon^=msg]::before { height: 32px; width: 32px; font-size: 32px; line-height: 32px; }
578 /*******************
579 * Terminal colors *
580 *******************/
582 /* Using color palettes from Sakura terminal source */
584 .term {
585 padding: 0.3rem;
586 height: 24rem; max-height: 24rem;
587 white-space: pre-wrap;
588 overflow: auto;
589 z-index: 4;
590 background: transparent;
591 }
593 /* SliTaz Spider on background */
594 /*.term_ { display: block; position: relative; z-index: 2; }
595 .term_::after {
596 display: block; border: 1pt solid;
597 font-family: TazPanel;
598 font-size: 16rem;
599 position: absolute; right: 0; bottom: 0;
600 content: '\f13f';
601 opacity: 1;
602 color: orange;
603 z-index: 1;
604 }*/
606 .term.log { white-space: pre; }
607 /*.term input[type="text"] {
608 width: 100%!important; padding: 0; margin: 0; vertical-align: middle;
609 -webkit-appearance: none!important; -moz-appearance: none; appearance: none;
610 display: inline;
611 background-color: transparent; color: inherit; border: none; outline: none;
612 font: inherit; line-height: 1rem;
613 }*/
614 .term .cmdline {
615 /*position: relative; float: left; display: inline-block; white-space: pre-wrap;
616 width: 100%; overflow: hidden; left: 0;
617 vertical-align: middle;*/
618 padding: 0;
619 }
620 #typeField {
621 outline-style: none !important;
622 -webkit-user-modify: read-write;
623 word-wrap: break-word;
624 -webkit-nbsp-mode: space;
625 -webkit-line-break: after-white-space;
626 }
627 #num_hist {
628 display: inline-block;
629 position: absolute; right: 0.5rem; float: right;
630 height: 0;
631 color: #FFF; background: #FFF;
632 }
634 /* Tango palette (default) */
635 .color30{color:#2E3436} .color1.color30{color:#555753} .color40{background:#2E3436}
636 .color31{color:#CC0000} .color1.color31{color:#EF2929} .color41{background:#CC0000}
637 .color32{color:#4E9A06} .color1.color32{color:#8AE234} .color42{background:#4E9A06}
638 .color33{color:#C4A000} .color1.color33{color:#FCE94F} .color43{background:#C4A000}
639 .color34{color:#3465A4} .color1.color34{color:#729FCF} .color44{background:#3465A4}
640 .color35{color:#75507B} .color1.color35{color:#AD7FA8} .color45{background:#75507B}
641 .color36{color:#06989A} .color1.color36{color:#34E2E2} .color46{background:#06989A}
642 .color37{color:#D3D7CF} .color1.color37{color:#EEEEEC} .color47{background:#D3D7CF}
643 .term {color:#D3D7CF; background:#2E3436}
645 /* Linux palette */
646 .linux .color30{color:#000} .linux .color1.color30{color:#555} .linux .color40{background:#000}
647 .linux .color31{color:#A00} .linux .color1.color31{color:#F55} .linux .color41{background:#A00}
648 .linux .color32{color:#0A0} .linux .color1.color32{color:#5F5} .linux .color42{background:#0A0}
649 .linux .color33{color:#A50} .linux .color1.color33{color:#FF5} .linux .color43{background:#A50}
650 .linux .color34{color:#00A} .linux .color1.color34{color:#55F} .linux .color44{background:#00A}
651 .linux .color35{color:#A0A} .linux .color1.color35{color:#F5F} .linux .color45{background:#A0A}
652 .linux .color36{color:#0AA} .linux .color1.color36{color:#5FF} .linux .color46{background:#0AA}
653 .linux .color37{color:#AAA} .linux .color1.color37{color:#FFF} .linux .color47{background:#AAA}
654 .linux.term {color:#AAA; background:#000}
656 /* Xterm palette */
657 .xterm .color30{color:#000000} .xterm .color1.color30{color:#4C4C4C} .xterm .color40{background:#000000}
658 .xterm .color31{color:#CD0000} .xterm .color1.color31{color:#FF0000} .xterm .color41{background:#CD0000}
659 .xterm .color32{color:#00CD00} .xterm .color1.color32{color:#00FFFF} .xterm .color42{background:#00CD00}
660 .xterm .color33{color:#CDCD00} .xterm .color1.color33{color:#FFFF00} .xterm .color43{background:#CDCD00}
661 .xterm .color34{color:#1E90FF} .xterm .color1.color34{color:#4682B4} .xterm .color44{background:#1E90FF}
662 .xterm .color35{color:#CD00CD} .xterm .color1.color35{color:#FF00FF} .xterm .color45{background:#CD00CD}
663 .xterm .color36{color:#00CDCD} .xterm .color1.color36{color:#00FFFF} .xterm .color46{background:#00CDCD}
664 .xterm .color37{color:#E5E5E5} .xterm .color1.color37{color:#FFFFFF} .xterm .color47{background:#E5E5E5}
665 .xterm.term {color:#E5E5E5; background:#000000}
667 /* Rxvt palette */
668 .rxvt .color30{color:#000000} .rxvt .color1.color30{color:#404040} .rxvt .color40{background:#000000}
669 .rxvt .color31{color:#CD0000} .rxvt .color1.color31{color:#FF0000} .rxvt .color41{background:#CD0000}
670 .rxvt .color32{color:#00CD00} .rxvt .color1.color32{color:#00FFFF} .rxvt .color42{background:#00CD00}
671 .rxvt .color33{color:#CDCD00} .rxvt .color1.color33{color:#FFFF00} .rxvt .color43{background:#CDCD00}
672 .rxvt .color34{color:#0000CD} .rxvt .color1.color34{color:#0000FF} .rxvt .color44{background:#0000CD}
673 .rxvt .color35{color:#CD00CD} .rxvt .color1.color35{color:#FF00FF} .rxvt .color45{background:#CD00CD}
674 .rxvt .color36{color:#00CDCD} .rxvt .color1.color36{color:#00FFFF} .rxvt .color46{background:#00CDCD}
675 .rxvt .color37{color:#FAEBD7} .rxvt .color1.color37{color:#FFFFFF} .rxvt .color47{background:#FAEBD7}
676 .rxvt.term {color:#FAEBD7; background:#000000}
678 /* Echo palette (http://mso-chronicles.blogspot.com/2013/02/xfce-terminal-and-xchat-colour-scheme.html) */
679 .echo .color30{color:#000000} .echo .color1.color30{color:#5E5E5E} .echo .color40{background:#000000}
680 .echo .color31{color:#B40000} .echo .color1.color31{color:#FF5200} .echo .color41{background:#B40000}
681 .echo .color32{color:#00AA00} .echo .color1.color32{color:#93DA00} .echo .color42{background:#00AA00}
682 .echo .color33{color:#CB7C00} .echo .color1.color33{color:#FFE139} .echo .color43{background:#CB7C00}
683 .echo .color34{color:#003F68} .echo .color1.color34{color:#0073A2} .echo .color44{background:#003F68}
684 .echo .color35{color:#BF00EF} .echo .color1.color35{color:#DB81FF} .echo .color45{background:#BF00EF}
685 .echo .color36{color:#00A6D0} .echo .color1.color36{color:#81E3FF} .echo .color46{background:#00A6D0}
686 .echo .color37{color:#C6C6C6} .echo .color1.color37{color:#FFFFFF} .echo .color47{background:#C6C6C6}
687 .echo.term {color:#C6C6C6; background:#000000}
689 .color1 { font-weight: bold; }
691 /* History table for terminal */
692 .history { width: 100%; }
693 .history td:nth-child(1), .history td:nth-child(2), .history td:nth-child(3) {
694 white-space: nowrap;
695 width: 1px;
696 }
700 /**********
701 * Inputs *
702 **********/
704 /*:default { outline: 1px dotted hsla(240, 100%, 50%, 0.5); outline-offset: -4px; }*/
705 :required { outline: 1px solid hsla( 30, 100%, 50%, 0.7); outline-offset: -3px; }
706 :invalid { outline: 2px solid hsla( 0, 100%, 50%, 0.7); outline-offset: -3px; }
709 /* HACK for Tazweb (as clean Webkit browser): remove 1px white border around textfield */
710 input[type="text"], input[type="password"], input[type="number"], textarea { -webkit-appearance: searchfield; }
712 textarea { display: block; color: CaptionText; font-family: monospace; box-sizing: border-box; }
718 /***********************
719 * System memory gauge *
720 ***********************/
722 .sysmem {
723 margin: 0.2rem; padding: 0;
724 border: 1pt solid;
725 border-radius: 0.2rem;
726 box-shadow: inset 0 0 0 1pt hsla(0, 0%, 100%, 0.05);
727 width: 100%; margin: 0; padding: 0;
728 }
730 .sysmem_used, .sysmem_buff, .sysmem_free {
731 display: inline-block;
732 padding: 0.2rem 0; margin: 0;
733 height: 120%;
734 text-align: center; vertical-align: middle;
735 text-shadow: 0 1px 1px hsla(0, 0%, 0%, 0.5);
736 text-align: center;
737 }
739 .sysmem_used {
740 background-color: #f28f68;
741 background-image: -webkit-linear-gradient(top, hsla(0, 0%, 100%, 0.25), hsla(0, 0%, 0%, 0.2));
742 border-radius: 0.2rem 0 0 0.2rem;
743 }
744 .sysmem_buff {
745 background-color: #f28f68;
746 background-image:
747 -webkit-linear-gradient(top, hsla(0, 0%, 100%, 0.25), hsla(0, 0%, 0%, 0.2)),
748 -webkit-linear-gradient(135deg,
749 transparent, transparent 25%,
750 #719fd1 25%, #719fd1 50%,
751 transparent 50%, transparent 75%,
752 #719fd1 75%);
753 background-size: 100% 100%;
754 }
755 .sysmem_free {
756 background-color: #719fd1;
757 background-image: -webkit-linear-gradient(top, hsla(0, 0%, 100%, 0.25), hsla(0, 0%, 0%, 0.2));
758 border-radius: 0 0.2rem 0.2rem 0;
759 }
763 /* Disable some links to root actions */
764 button:not([disabled]) { cursor: pointer; }
765 .user [data-root] { pointer-events: none; cursor: default !important; }
768 html,body { height: 100%; width: 100%; margin: 0; padding: 0; }
769 body > header { position: absolute; top: 0; }
770 body > footer { position: absolute; bottom: 0; left: 0; right: 0; }
771 #content, #content-sidebar {
772 position: absolute; top: 63px; bottom: 20px; left: 0; right: 0;
773 overflow-y: auto; overflow-x: hidden;
774 }
776 .bigNoScrollable { position: absolute; top: 0; bottom: 0; left: 0; right: 0; overflow: hidden; }
777 section.bigNoScrollable { margin: 0.5rem; }
779 .bigScrollable { position: absolute; top: 0; bottom: 0; left: 0; right: 0; overflow: auto; }
780 #fileContent.bigScrollable { margin: 0.2rem; top: 2.5rem; }
782 section section { margin: 0.2rem; }