Dateiverwaltung für die WebBox
ulrich
2017-02-25 a3d410776dcaf84ab2a0cb22eebb6e75a3251033
commit | author | age
723bf7 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
c7c502 19
a4d3b5 20 /* Stile Code-Editor */
U 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 }
c7c502 39
U 40
41 /* Stile Listenansicht */
42
43 html {
44   margin: 0;
45   padding: 0;
46   height: 100%; /* Anmerkung 2 */
47 }
48 body {
49   margin: 0;
50   padding: 0;
51   height: 100%; /* Anmerkung 2 */
52   min-height: 0; /* Anmerkung 1 */
53   display: flex;
54   flex-flow: column;
55 }
56 .inhalt {
57   display: flex;
58   flex-flow: row;
59   height: 100%; /* Anmerkung 2 */
60   min-height: 0; /* Anmerkung 1 */
61 }
62 .nord {
63
64 }
65 .sued {
66   background-color: lightgray;
67 }
68 .west {
69   flex-grow: 0;
70   flex-shrink: 0;
653519 71   /*
U 72     voruebergehend ausgeblendet, zum einblenden 
73     diesen Wert wieder auf 10em setzen
74   */
bef5c6 75   flex-basis: 0em;
c7c502 76 }
U 77 .ost {
78   flex-grow: 0;
79   flex-shrink: 0;
bef5c6 80   /*flex-basis: 10em;*/
c7c502 81   background-color: antiquewhite;
bef5c6 82   transition: all 0.3s ease-in;
c7c502 83 }
U 84 .zentrum {
85   width: 100%;
86   height: 100%;
87   display: flex;
88   flex-flow: column;
a4d3b5 89   /* background-color: antiquewhite; */
c7c502 90 }
U 91 .zentrum-bc {
92 }
93 .zentrum-liste {
94   width: 100%;
95   height: 100%;
96   overflow: auto;
97   -webkit-overflow-scrolling: touch;
98 }
99 .datei-figure {
100   width: 6em;
10d3d3 101   cursor: pointer;
c7c502 102 }
5dfab6 103
U 104 .datei-gewaehlt {
a3d410 105   background-color: lightblue;
U 106 }
107
108 .ordner {
109   color: navajowhite;
110 }
111
112 .datei {
113   color: lightgray;
10d3d3 114 }
U 115
116 #ansicht {
117   cursor: pointer;
5dfab6 118 }