Dateiverwaltung für die WebBox
ulrich
2017-02-22 65351902181b629d00f381d20b207ea6330561fd
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   */
57   flex-basis: 0.1em;
c7c502 58 }
U 59 .ost {
60   flex-grow: 0;
61   flex-shrink: 0;
62   flex-basis: 10em;
63   background-color: antiquewhite;
64 }
65 .zentrum {
66   width: 100%;
67   height: 100%;
68   display: flex;
69   flex-flow: column;
a4d3b5 70   /* background-color: antiquewhite; */
c7c502 71 }
U 72 .zentrum-bc {
73 }
74 .zentrum-liste {
75   width: 100%;
76   height: 100%;
77   overflow: auto;
78   -webkit-overflow-scrolling: touch;
79 }
80 .datei-figure {
81   width: 6em;
10d3d3 82   cursor: pointer;
c7c502 83 }
5dfab6 84
U 85 .datei-gewaehlt {
3ad4db 86   color: darkslateblue;
10d3d3 87 }
U 88
89 #ansicht {
90   cursor: pointer;
5dfab6 91 }