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

Add prism.js syntax highlighter; now files can be edited "in place" without page reloading; allow ANY characters in the Wi-Fi password (bug 126); change web-app layout: main window isn't scrollable, with scrollable contents.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Apr 24 16:00:14 2015 +0300 (2015-04-24)
parents 2c1f491aca05
children 098e260f32cd
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%;
20 background-color: #222;
21 }
23 body > header h1 {
24 margin: 0;
25 color: #fff;
26 font-size: 18px; line-height: 40px; /* center vertical */
27 font-style: italic;
28 white-space: nowrap; overflow: hidden;
29 vertical-align: middle;
30 }
34 /**
35 * Toolbar with menu
36 */
38 nav {
39 position: fixed; top: 40px; left: 0;
40 width: 100%;
41 display: table;
42 border: 1px solid; border-right: none; border-left: none;
43 }
47 /* menu panel */
48 #toolbarMenu { margin: 0; padding: 0; height: 100%; font: menu; }
50 /* menu items */
51 #toolbarMenu li {
52 list-style: none;
53 float: left;
54 display: block;
55 padding: 0;
56 color: inherit; background: inherit;
57 outline: none;
58 }
59 #toolbarMenu > li > span {
60 display: inline-block;
61 padding: 0.2rem;
62 cursor: pointer;
63 }
65 #toolbarMenu menu li a {
66 padding: 0.2rem;
67 }
69 /* Selected menu item */
70 #toolbarMenu li:focus span,
71 #toolbarMenu li:hover span,
72 #toolbarMenu menu li:focus,
73 .user #toolbarMenu menu li:hover > a:not([data-root]),
74 .root #toolbarMenu menu li:hover {
75 background-color: hsla(30, 100%, 50%, 0.5);
76 }
81 #toolbarMenu menu {
82 position: absolute;
83 margin: 0; padding: 0;
84 white-space: nowrap;
85 border: 1px solid;
86 display: none;
87 }
89 /* Submenus */
90 #toolbarMenu menu menu {
91 left: 100%; top: 0;
92 min-width: 100%;
93 }
95 /* Show menu list */
96 #toolbarMenu menu.opened {
97 display: block; z-index: 10;
98 }
100 /* By default hide submenus */
101 #toolbarMenu menu.opened menu {
102 display: none;
103 }
104 /* Show submenu on mouse over */
105 .opened li:hover menu { display: block !important; }
107 /* Menu items one below the other */
108 #toolbarMenu menu li {
109 position: relative;
110 float: none;
111 }
112 /* Show arrow for submenu */
113 #toolbarMenu a:after { content: "‣"; float: right; }
114 #toolbarMenu a:only-child:after { content: " "; }
116 #toolbarMenu a { display: block; color: inherit; text-decoration: none; }
118 /* Clicking this layer close menu */
119 #noMenu {
120 position: fixed;
121 background-color: transparent;
122 display: none;
123 height: 100%; width: 100%;
124 }
127 /**
128 * Panes, sections
129 */
131 section {
132 display: block;
133 border: 1pt solid; border-radius: 0.3rem;
134 padding: 0; margin: 0.5rem 0 0 0;
135 }
137 section header {
138 padding: 0.2rem 0.3rem; margin: 0;
139 display: table; width: 100%;
140 border-radius: 0.3rem 0.3rem 0 0;
141 font-weight: bold; font-size: 1.1rem;/* line-height: 0;*/
142 text-shadow: 0 1px 1px hsla(0, 0%, 0%, 0.5);
143 overflow: auto; /* provide break after floated objects */
144 vertical-align: baseline;
145 }
146 section header form, section footer form {
147 display: table-cell; vertical-align: baseline; line-height: 0; width: 1px; white-space: nowrap;
148 }
149 section header button, section footer button { margin: 0; }
151 section footer {
152 padding: 0 0.3rem 0.2rem; margin: 0;
153 display: block;
154 overflow: auto; /* provide break after floated objects */
155 vertical-align: baseline;
156 }
158 section > pre,
159 section div { padding: 0.3rem 0.3rem 0.2rem 0.3rem; margin: 0; }
160 section td:nth-child(1) { padding-left: 0.3rem; }
161 section table { margin-bottom: 0.3rem; }
162 .nogap { word-spacing: 0; } /* remove gap between buttons in line */
164 .scroll { max-height: 12rem; overflow: auto; }
165 section .scroll { padding: 0; margin: 0; border: 1pt solid; }
166 section pre.scroll { margin: 0.1rem; padding: 0.1rem; }
175 #actions {
176 display: block;
177 margin: 0; padding: 0.2rem 0.3rem;
178 overflow: auto; /* provide break after floated objects */
179 }
180 .float-left, .float-right { display: table-cell; padding: 0; margin: 0; }
181 .float-left { float: left; }
182 .float-right { float: right; }
186 fieldset { border: 1pt solid; border-radius: 0.3rem; margin-bottom: 0.2rem; }
187 fieldset[disabled] { background-color: hsla(0, 0%, 50%, 0.1);}
193 /* Icons on the right of the toolbar */
194 #icons {
195 display: table-cell; vertical-align: middle; /* center vertical */
196 padding: 0.1rem 0.3rem;
197 white-space: nowrap; width: 1rem; /* minimal width */
198 }
202 /* Loading notification bar */
203 #loading {
204 position: fixed; top: 76px; right: 140px; width: 248px;
205 padding: 4px 4px 2px;
206 background-color: #f8f8f8; color: #666;
207 border: 1px solid #ddd;
208 cursor: progress;
209 }
213 /* Page content container */
214 #content { margin: 0; padding: 1ex; }
217 /* Page first header */
218 h2 { font-size: 1.5rem; height: 1.5rem; padding: 0; margin: 0; }
221 /* Additional headers (obsolete) */
222 h3 { font-size: 1.3rem; margin: 0; }
223 h4 { font-size: 1.1rem; margin: 0; }
226 /* Plain paragraph */
227 p { margin: 0.5ex 0; }
230 #actions p { margin: 6px 0; }
236 button img { padding: 0 3px 0 0; margin: 0; }
237 button, input, select {
238 /*color: ButtonText;*/
239 vertical-align: middle; }
240 button:before, input:before, select:before {
241 padding: 3px; }
243 ul { list-style-type: square; }
244 li { padding: 4px 0; }
247 /* Blocks */
249 #block { float: left; }
251 #wrapper, .wrapper { margin: 20px 0; }
253 .box {
254 display: table;
255 padding: 1em;
256 width: 50%; margin: 0.5em auto;
257 }
258 .box img { float: left; }
260 .box ul { list-style-type: none; padding: 0; }
262 .debug {
263 position: fixed;
264 bottom: 0px;
265 right: 10px;
266 left: 10px;
267 margin: 5px;
268 padding: 4px 10px;
269 background-color: #111;
270 color: #fff;
271 border: 0;
272 /*font-size: 12px;*/
273 opacity: 0.9;
274 }
279 /**********
280 * Tables *
281 **********/
283 /* Base style */
284 table { margin: 0; padding: 0; border: 0 none; border-collapse: collapse; }
286 /* Bold header */
287 thead { font-weight: bold; }
289 /* Wide table */
290 .wide { width: 100%; }
292 /* Center content excluding first column */
293 .center tr td { text-align: center; }
294 .center tr td:nth-child(1) { text-align: left; padding-left: 0.3rem; }
296 /* Table Zebra */
297 .zebra thead td { line-height: 1.5em; text-align: center; vertical-align: middle; border: 1pt solid; }
301 .borders.zebra td + td { border-left: 1px solid; }
305 .outbox { box-shadow: 0 0 2px 4px #ddd; }
306 .fixed { table-layout: fixed; }
309 .borders tr { border-bottom: 1pt solid; }
311 .hborders thead tr { border-top: 1.5pt solid; border-bottom: 1.5pt solid; }
313 td.small { min-width: 60px; }
314 td.pct { min-width: 200px; background: #eee; }
315 div.pct { background: #ccc; }
316 td.pct, div.pct { border-radius: 2px; }
317 td img {vertical-align: middle; }
319 table.daemons td:nth-child(4), table.daemons td:nth-child(5) { text-align: center; }
325 /**
326 * Misc
327 */
329 /* Links */
331 a { text-decoration: none; color: #268bd2; cursor: pointer; }
332 a:not([data-img]):hover { text-decoration: underline; }
335 form { display: inline-block; padding: 0; margin: 0; }
337 pre { margin: 0; padding: 0; color: CaptionText; }
339 .pre-main { margin: 16px 0; }
340 .pre-wrap { white-space: pre-wrap; }
344 /* Round corner */
346 #loading, .debug, .box, .outbox, section {
347 -moz-border-radius: 4px;
348 -webkit-border-radius: 4px;
349 border-radius: 4px;
350 }
352 /* Help page */
354 #help { text-align: justify; }
355 #help a { text-decoration: underline; }
356 #help a:hover { text-decoration: none; }
360 /*
361 * Page footer
362 */
364 body > footer {
365 border-top: 1px solid;
366 text-align: center;
367 height: 1rem;
368 font-size: smaller;
369 }
372 /***************
373 * HTML5 Meter *
374 ***************/
376 .meter {
377 height: 1.2rem;
378 min-width: 150px;
379 color: #222;
380 /*cursor: default;*/
381 }
382 .meter meter {
383 height: inherit;
384 width: 100%;
385 display: block;
386 border: 1px solid #ddd;
387 border-radius: 4px;
388 }
389 .meter span {
390 display: block;
391 white-space: nowrap;
392 position: absolute;
393 margin: -1.1rem auto 0 0.3rem;
394 }
398 /**************
399 * Animations *
400 **************/
402 a.button {
403 -webkit-transition: all 0.3s ease-in-out;
404 -moz-transition: all 0.3s ease-in-out;
405 -o-transition: all 0.3s ease-in-out;
406 -ms-transition: all 0.3s ease-in-out;
407 transition: all 0.3s ease-in-out;
408 }
410 /*section {
411 margin: 20pt -0.7em;
412 padding: 0.8em 0.7em 1.2em;
413 background-color: #fdfdfd;
414 border: 1px solid #ddd;
415 border-radius: 1em;
416 box-shadow: 0 0 3pt 2pt #eee;
417 }
418 section h4 {
419 margin: 0 0 0.5em 0;
420 }
421 section h3 {
422 margin: 0 0 0.5em 0; }
423 */
425 #tabs {
426 font-weight: bold;
427 /*font-size: 14px;*/
428 list-style-type: none;
429 padding-bottom: 25px;
430 border-bottom: 1px solid #aaa;
431 }
433 #tabs li {
434 float: left;
435 height: 16px;
436 background-color: #eee;
437 margin: 0 40px 0 -40px;
438 border: 1px solid #aaa;
439 text-align: center;
440 min-width: 100px;
441 -webkit-border-radius: 4px 4px 0 0;
442 -moz-border-radius: 4px 4px 0 0;
443 border-radius: 4px 4px 0 0;
444 -webkit-appearance: tab;
445 appearance: tab;
446 }
448 #tabs li.active {
449 border-bottom: 1px solid #fff;
450 background-color: #fff;
451 }
453 #tabs a {
454 padding: 8px;
455 }
459 /****************
460 * Search block *
461 ****************/
462 .search {
463 display: block; white-space: nowrap;
464 position: fixed; right: 7px; top: 7px;
465 margin: 0; padding: 0; border: none;
466 }
467 .search input {
468 display: inline-block;
469 width: 200px; height: 24px;
470 }
471 .search button {
472 -webkit-appearance: button;
473 height: 100%; margin: 0;
474 }
478 /**********************
479 * Buttons with icons *
480 **********************/
481 @font-face {
482 font-family: TazPanelWeb;
483 src: url('/styles/default/tazpanel.ttf');
484 }
486 [data-icon]:before, [data-img] {
487 vertical-align: baseline;
488 padding: 0;
489 margin: 0 /*0 0 -0.5em*/;
490 font-size: 1.2em;
491 font-family: TazPanel, TazPanelWeb;
493 font-style: normal;
494 font-weight: normal;
495 font-variant: normal;
496 text-transform: none;
497 line-height: 1.2em;
498 display: inline-block;
499 text-decoration: none;
500 width: 1.2em; text-align: center;
502 -webkit-font-feature-settings: "liga", "dlig";
503 -moz-font-feature-settings: "liga=1, dlig=1";
504 -o-font-feature-settings: "liga", "dlig";
505 font-feature-settings: "liga", "dlig";
507 -webkit-text-rendering: optimizeLegibility;
508 -moz-text-rendering: optimizeLegibility;
509 -o-text-rendering: optimizeLegibility;
510 text-rendering: optimizeLegibility;
512 -webkit-font-smoothing: antialiased;
513 -moz-font-smoothing: antialiased;
514 -o-font-smoothing: antialiased;
515 font-smoothing: antialiased;
516 }
517 button[data-icon]::before { font-size: 16px; line-height: 16px; width: 16px; }
519 [data-icon]::before { content: attr(data-icon); }
520 [data-img]::before { content: attr(data-img); }
522 [data-icon], [data-img] { display: inline-block; }
525 /* Solarized:
526 red #dc322f
527 orange #cb4b16
528 yellow #b58900
529 green #859900
530 cyan #2aa198
531 blue #268bd2
532 magenta #d33682
533 */
536 [data-icon="tazpanel"]::before {
537 display: inline-block;
538 content: '\f13d';
539 color: #EBEBEB;
540 border: 1pt solid hsl(5, 85%, 35%); border-radius: 0.2rem;
541 font-size: 32px; line-height: 32px;
543 height: 32px; width: 32px;
544 margin: 0.2rem;
545 padding: 0;
546 vertical-align: top;
547 background-image: -webkit-linear-gradient(top, hsl(10, 100%, 40%), hsl(0, 70%, 30%));
548 }
549 .light [data-icon="tazpanel"]::before {
550 text-shadow: 0 1pt 2pt hsla(0, 0%, 0%, 0.9), 0 0 2pt hsla(0, 0%, 0%, 0.6);
551 }
555 /*******************
556 * Terminal colors *
557 *******************/
559 /* Using color palettes from Sakura terminal source */
561 .term {
562 padding: 0.3rem;
563 height: 24rem; max-height: 24rem;
564 white-space: pre-wrap;
565 overflow: auto;
566 z-index: 4;
567 background: transparent;
568 }
570 /* SliTaz Spider on background */
571 /*.term_ { display: block; position: relative; z-index: 2; }
572 .term_::after {
573 display: block; border: 1pt solid;
574 font-family: TazPanel;
575 font-size: 16rem;
576 position: absolute; right: 0; bottom: 0;
577 content: '\f13f';
578 opacity: 1;
579 color: orange;
580 z-index: 1;
581 }*/
583 .term.log { white-space: pre; }
584 /*.term input[type="text"] {
585 width: 100%!important; padding: 0; margin: 0; vertical-align: middle;
586 -webkit-appearance: none!important; -moz-appearance: none; appearance: none;
587 display: inline;
588 background-color: transparent; color: inherit; border: none; outline: none;
589 font: inherit; line-height: 1rem;
590 }*/
591 .term .cmdline {
592 /*position: relative; float: left; display: inline-block; white-space: pre-wrap;
593 width: 100%; overflow: hidden; left: 0;
594 vertical-align: middle;*/
595 padding: 0;
596 }
597 #typeField {
598 outline-style: none !important;
599 -webkit-user-modify: read-write;
600 word-wrap: break-word;
601 -webkit-nbsp-mode: space;
602 -webkit-line-break: after-white-space;
603 }
604 #num_hist {
605 display: inline-block;
606 position: absolute; right: 0.5rem; float: right;
607 height: 0;
608 color: #FFF; background: #FFF;
609 }
611 /* Tango palette (default) */
612 .color30{color:#2E3436} .color1.color30{color:#555753} .color40{background:#2E3436}
613 .color31{color:#CC0000} .color1.color31{color:#EF2929} .color41{background:#CC0000}
614 .color32{color:#4E9A06} .color1.color32{color:#8AE234} .color42{background:#4E9A06}
615 .color33{color:#C4A000} .color1.color33{color:#FCE94F} .color43{background:#C4A000}
616 .color34{color:#3465A4} .color1.color34{color:#729FCF} .color44{background:#3465A4}
617 .color35{color:#75507B} .color1.color35{color:#AD7FA8} .color45{background:#75507B}
618 .color36{color:#06989A} .color1.color36{color:#34E2E2} .color46{background:#06989A}
619 .color37{color:#D3D7CF} .color1.color37{color:#EEEEEC} .color47{background:#D3D7CF}
620 .term {color:#D3D7CF; background:#2E3436}
622 /* Linux palette */
623 .linux .color30{color:#000} .linux .color1.color30{color:#555} .linux .color40{background:#000}
624 .linux .color31{color:#A00} .linux .color1.color31{color:#F55} .linux .color41{background:#A00}
625 .linux .color32{color:#0A0} .linux .color1.color32{color:#5F5} .linux .color42{background:#0A0}
626 .linux .color33{color:#A50} .linux .color1.color33{color:#FF5} .linux .color43{background:#A50}
627 .linux .color34{color:#00A} .linux .color1.color34{color:#55F} .linux .color44{background:#00A}
628 .linux .color35{color:#A0A} .linux .color1.color35{color:#F5F} .linux .color45{background:#A0A}
629 .linux .color36{color:#0AA} .linux .color1.color36{color:#5FF} .linux .color46{background:#0AA}
630 .linux .color37{color:#AAA} .linux .color1.color37{color:#FFF} .linux .color47{background:#AAA}
631 .linux.term {color:#AAA; background:#000}
633 /* Xterm palette */
634 .xterm .color30{color:#000000} .xterm .color1.color30{color:#4C4C4C} .xterm .color40{background:#000000}
635 .xterm .color31{color:#CD0000} .xterm .color1.color31{color:#FF0000} .xterm .color41{background:#CD0000}
636 .xterm .color32{color:#00CD00} .xterm .color1.color32{color:#00FFFF} .xterm .color42{background:#00CD00}
637 .xterm .color33{color:#CDCD00} .xterm .color1.color33{color:#FFFF00} .xterm .color43{background:#CDCD00}
638 .xterm .color34{color:#1E90FF} .xterm .color1.color34{color:#4682B4} .xterm .color44{background:#1E90FF}
639 .xterm .color35{color:#CD00CD} .xterm .color1.color35{color:#FF00FF} .xterm .color45{background:#CD00CD}
640 .xterm .color36{color:#00CDCD} .xterm .color1.color36{color:#00FFFF} .xterm .color46{background:#00CDCD}
641 .xterm .color37{color:#E5E5E5} .xterm .color1.color37{color:#FFFFFF} .xterm .color47{background:#E5E5E5}
642 .xterm.term {color:#E5E5E5; background:#000000}
644 /* Rxvt palette */
645 .rxvt .color30{color:#000000} .rxvt .color1.color30{color:#404040} .rxvt .color40{background:#000000}
646 .rxvt .color31{color:#CD0000} .rxvt .color1.color31{color:#FF0000} .rxvt .color41{background:#CD0000}
647 .rxvt .color32{color:#00CD00} .rxvt .color1.color32{color:#00FFFF} .rxvt .color42{background:#00CD00}
648 .rxvt .color33{color:#CDCD00} .rxvt .color1.color33{color:#FFFF00} .rxvt .color43{background:#CDCD00}
649 .rxvt .color34{color:#0000CD} .rxvt .color1.color34{color:#0000FF} .rxvt .color44{background:#0000CD}
650 .rxvt .color35{color:#CD00CD} .rxvt .color1.color35{color:#FF00FF} .rxvt .color45{background:#CD00CD}
651 .rxvt .color36{color:#00CDCD} .rxvt .color1.color36{color:#00FFFF} .rxvt .color46{background:#00CDCD}
652 .rxvt .color37{color:#FAEBD7} .rxvt .color1.color37{color:#FFFFFF} .rxvt .color47{background:#FAEBD7}
653 .rxvt.term {color:#FAEBD7; background:#000000}
655 /* Echo palette (http://mso-chronicles.blogspot.com/2013/02/xfce-terminal-and-xchat-colour-scheme.html) */
656 .echo .color30{color:#000000} .echo .color1.color30{color:#5E5E5E} .echo .color40{background:#000000}
657 .echo .color31{color:#B40000} .echo .color1.color31{color:#FF5200} .echo .color41{background:#B40000}
658 .echo .color32{color:#00AA00} .echo .color1.color32{color:#93DA00} .echo .color42{background:#00AA00}
659 .echo .color33{color:#CB7C00} .echo .color1.color33{color:#FFE139} .echo .color43{background:#CB7C00}
660 .echo .color34{color:#003F68} .echo .color1.color34{color:#0073A2} .echo .color44{background:#003F68}
661 .echo .color35{color:#BF00EF} .echo .color1.color35{color:#DB81FF} .echo .color45{background:#BF00EF}
662 .echo .color36{color:#00A6D0} .echo .color1.color36{color:#81E3FF} .echo .color46{background:#00A6D0}
663 .echo .color37{color:#C6C6C6} .echo .color1.color37{color:#FFFFFF} .echo .color47{background:#C6C6C6}
664 .echo.term {color:#C6C6C6; background:#000000}
666 .color1 { font-weight: bold; }
668 /* History table for terminal */
669 .history { width: 100%; }
670 .history td:nth-child(1), .history td:nth-child(2), .history td:nth-child(3) {
671 white-space: nowrap;
672 width: 1px;
673 }
677 /**********
678 * Inputs *
679 **********/
681 /*:default { outline: 1px dotted hsla(240, 100%, 50%, 0.5); outline-offset: -4px; }*/
682 :required { outline: 1px solid hsla( 30, 100%, 50%, 0.7); outline-offset: -3px; }
683 :invalid { outline: 2px solid hsla( 0, 100%, 50%, 0.7); outline-offset: -3px; }
686 /* HACK for Tazweb (as clean Webkit browser): remove 1px white border around textfield */
687 input[type="text"], input[type="password"], input[type="number"], textarea { -webkit-appearance: searchfield; }
689 textarea { display: block; color: CaptionText; font-family: monospace; box-sizing: border-box; }
695 /***********************
696 * System memory gauge *
697 ***********************/
699 .sysmem {
700 margin: 0.2rem; padding: 0;
701 border: 1pt solid;
702 border-radius: 0.2rem;
703 box-shadow: inset 0 0 0 1pt hsla(0, 0%, 100%, 0.05);
704 width: 100%; margin: 0; padding: 0;
705 }
707 .sysmem_used, .sysmem_buff, .sysmem_free {
708 display: inline-block;
709 padding: 0.2rem 0; margin: 0;
710 height: 120%;
711 text-align: center; vertical-align: middle;
712 text-shadow: 0 1px 1px hsla(0, 0%, 0%, 0.5);
713 text-align: center;
714 }
716 .sysmem_used {
717 background-color: #f28f68;
718 background-image: -webkit-linear-gradient(top, hsla(0, 0%, 100%, 0.25), hsla(0, 0%, 0%, 0.2));
719 border-radius: 0.2rem 0 0 0.2rem;
720 }
721 .sysmem_buff {
722 background-color: #f28f68;
723 background-image:
724 -webkit-linear-gradient(top, hsla(0, 0%, 100%, 0.25), hsla(0, 0%, 0%, 0.2)),
725 -webkit-linear-gradient(135deg,
726 transparent, transparent 25%,
727 #719fd1 25%, #719fd1 50%,
728 transparent 50%, transparent 75%,
729 #719fd1 75%);
730 background-size: 100% 100%;
731 }
732 .sysmem_free {
733 background-color: #719fd1;
734 background-image: -webkit-linear-gradient(top, hsla(0, 0%, 100%, 0.25), hsla(0, 0%, 0%, 0.2));
735 border-radius: 0 0.2rem 0.2rem 0;
736 }
740 /* Disable some links to root actions */
741 button:not([disabled]) { cursor: pointer; }
742 .user [data-root] { pointer-events: none; cursor: default !important; }
745 html,body { height: 100%; width: 100%; margin: 0; padding: 0; }
746 body > header { position: absolute; top: 0; }
747 body > footer { position: absolute; bottom: 0; left: 0; right: 0; }
748 #content, #content-sidebar {
749 position: absolute; top: 63px; bottom: 1rem; left: 0; right: 0;
750 overflow-y: auto; overflow-x: hidden;
751 }
753 .bigNoScrollable { position: absolute; top: 0; bottom: 0; left: 0; right: 0; overflow: hidden; }
754 section.bigNoScrollable { margin: 0.5rem; }
756 .bigScrollable { position: absolute; top: 0; bottom: 0; left: 0; right: 0; overflow: auto; }
757 #fileContent.bigScrollable { margin: 0.2rem; top: 2.5rem; }