Dateiverwaltung für die WebBox
ulrich
2018-03-04 bb9f8c68f284497ed6d94fdc7ab23ce8c7a6aac7
commit | author | age
e4fec9 1 /*
U 2     Dateiverwaltung - File management in your browser
3     Copyright (C) 2017 Ulrich Hilger, http://uhilger.de
4
5     This program is free software: you can redistribute it and/or modify
6     it under the terms of the GNU Affero General Public License as
7     published by the Free Software Foundation, either version 3 of the
8     License, or (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU Affero General Public License for more details.
14
15     You should have received a copy of the GNU Affero General Public License
16     along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19
20 /* Stile Code-Editor */
21
22 .code-editor-container {
23   height: 100%;
24 }
25
26 .codeeditor {
27   height: 100%;
28 }
29
30 .codeeditor-space {
31   width: 100%;
32   height: 100%;
33   border: 1px solid lightgrey;
34 }
35
36 .CodeMirror {
37   height: 100%;
38 }
39
40 /* Stile MCE-Editor */
41
42 .mce-editor {
43   width: 100%;
44   height: 100%;  
45 }
46 .text-editor {
47   width: 100%;
48   height: 100%;
49 }
50
51 /* Stile Listenansicht */
52
53 html {
54   margin: 0;
55   padding: 0;
56   height: 100%; /* Anmerkung 2 */
57 }
58 body {
59   margin: 0;
60   padding: 0;
61   height: 100%; /* Anmerkung 2 */
62   min-height: 0; /* Anmerkung 1 */
63   display: flex;
64   flex-flow: column;
65 }
66 .inhalt {
67   display: flex;
68   flex-flow: row;
69   height: 100%; /* Anmerkung 2 */
70   min-height: 0; /* Anmerkung 1 */
71 }
72 .nord {
73
74 }
75 .sued {
76   background-color: #eee;
77 }
78 .system-out {
79   height: 8em;
80   overflow-y: auto;
81 }
82 .west {
83   flex-grow: 0;
84   flex-shrink: 0;
85   /*
86     voruebergehend ausgeblendet, zum einblenden 
87     diesen Wert wieder auf 10em setzen
88   */
89   flex-basis: 0em;
90 }
91 .ost {
92   flex-grow: 0;
93   flex-shrink: 0;
94   /*flex-basis: 10em;*/
95   background-color: antiquewhite;
96   transition: all 0.3s ease-in;
97 }
98 .zentrum {
99   width: 100%;
100   height: 100%;
101   display: flex;
102   flex-flow: column;
103   /* background-color: antiquewhite; */
104 }
105 .zentrum-bc {
106 }
107 .zentrum-liste {
108   width: 100%;
109   height: 100%;
110   overflow: auto;
111   -webkit-overflow-scrolling: touch;
112 }
113 .datei-figure {
bb9f8c 114   width: 8em;
e4fec9 115   cursor: pointer;
U 116 }
117
118 .datei-gewaehlt {
119   background-color: lightblue;
120 }
121
122 .ordner {
123   color: navajowhite;
124 }
125
126 .datei {
127   color: lightgray;
128 }
129
130 #ansicht {
131   cursor: pointer;
132 }