Dateiverwaltung für die WebBox
ulrich
2017-02-23 bef5c6d6beadf50e8c938653fa7881b94bcd1344
commit | author | age
c7c502 1
a4d3b5 2 /* Stile Code-Editor */
U 3
4 .code-editor-container {
5   height: 100%;
6 }
7
8 .codeeditor {
9   height: 100%;
10 }
11
12 .codeeditor-space {
13   width: 100%;
14   height: 100%;
15   border: 1px solid lightgrey;
16 }
17
18 .CodeMirror {
19   height: 100%;
20 }
c7c502 21
U 22
23 /* Stile Listenansicht */
24
25 html {
26   margin: 0;
27   padding: 0;
28   height: 100%; /* Anmerkung 2 */
29 }
30 body {
31   margin: 0;
32   padding: 0;
33   height: 100%; /* Anmerkung 2 */
34   min-height: 0; /* Anmerkung 1 */
35   display: flex;
36   flex-flow: column;
37 }
38 .inhalt {
39   display: flex;
40   flex-flow: row;
41   height: 100%; /* Anmerkung 2 */
42   min-height: 0; /* Anmerkung 1 */
43 }
44 .nord {
45
46 }
47 .sued {
48   background-color: lightgray;
49 }
50 .west {
51   flex-grow: 0;
52   flex-shrink: 0;
653519 53   /*
U 54     voruebergehend ausgeblendet, zum einblenden 
55     diesen Wert wieder auf 10em setzen
56   */
bef5c6 57   flex-basis: 0em;
c7c502 58 }
U 59 .ost {
60   flex-grow: 0;
61   flex-shrink: 0;
bef5c6 62   /*flex-basis: 10em;*/
c7c502 63   background-color: antiquewhite;
bef5c6 64   transition: all 0.3s ease-in;
c7c502 65 }
U 66 .zentrum {
67   width: 100%;
68   height: 100%;
69   display: flex;
70   flex-flow: column;
a4d3b5 71   /* background-color: antiquewhite; */
c7c502 72 }
U 73 .zentrum-bc {
74 }
75 .zentrum-liste {
76   width: 100%;
77   height: 100%;
78   overflow: auto;
79   -webkit-overflow-scrolling: touch;
80 }
81 .datei-figure {
82   width: 6em;
10d3d3 83   cursor: pointer;
c7c502 84 }
5dfab6 85
U 86 .datei-gewaehlt {
3ad4db 87   color: darkslateblue;
10d3d3 88 }
U 89
90 #ansicht {
91   cursor: pointer;
5dfab6 92 }