Dateiverwaltung für die WebBox
ulrich
2017-02-27 305573a68785ff329bc0f3c9b28ba738bcb58e46
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
305573 40 /* Stile MCE-Editor */
U 41
42 .mce-editor {
43   width: 100%;
44   height: 100%;  
45 }
46 .text-editor {
47   width: 100%;
48   height: 100%;
49 }
c7c502 50
U 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: lightgray;
77 }
78 .west {
79   flex-grow: 0;
80   flex-shrink: 0;
653519 81   /*
U 82     voruebergehend ausgeblendet, zum einblenden 
83     diesen Wert wieder auf 10em setzen
84   */
bef5c6 85   flex-basis: 0em;
c7c502 86 }
U 87 .ost {
88   flex-grow: 0;
89   flex-shrink: 0;
bef5c6 90   /*flex-basis: 10em;*/
c7c502 91   background-color: antiquewhite;
bef5c6 92   transition: all 0.3s ease-in;
c7c502 93 }
U 94 .zentrum {
95   width: 100%;
96   height: 100%;
97   display: flex;
98   flex-flow: column;
a4d3b5 99   /* background-color: antiquewhite; */
c7c502 100 }
U 101 .zentrum-bc {
102 }
103 .zentrum-liste {
104   width: 100%;
105   height: 100%;
106   overflow: auto;
107   -webkit-overflow-scrolling: touch;
108 }
109 .datei-figure {
110   width: 6em;
10d3d3 111   cursor: pointer;
c7c502 112 }
5dfab6 113
U 114 .datei-gewaehlt {
a3d410 115   background-color: lightblue;
U 116 }
117
118 .ordner {
119   color: navajowhite;
120 }
121
122 .datei {
123   color: lightgray;
10d3d3 124 }
U 125
126 #ansicht {
127   cursor: pointer;
5dfab6 128 }