Dateiverwaltung für die WebBox
ulrich
2017-03-20 a450f233393a9e3297fea633373635d060a3c709
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 {
a450f2 76   background-color: #eee;
U 77 }
78 .system-out {
79   height: 8em;
80   overflow-y: auto;
c7c502 81 }
U 82 .west {
83   flex-grow: 0;
84   flex-shrink: 0;
653519 85   /*
U 86     voruebergehend ausgeblendet, zum einblenden 
87     diesen Wert wieder auf 10em setzen
88   */
bef5c6 89   flex-basis: 0em;
c7c502 90 }
U 91 .ost {
92   flex-grow: 0;
93   flex-shrink: 0;
bef5c6 94   /*flex-basis: 10em;*/
c7c502 95   background-color: antiquewhite;
bef5c6 96   transition: all 0.3s ease-in;
c7c502 97 }
U 98 .zentrum {
99   width: 100%;
100   height: 100%;
101   display: flex;
102   flex-flow: column;
a4d3b5 103   /* background-color: antiquewhite; */
c7c502 104 }
U 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 {
114   width: 6em;
10d3d3 115   cursor: pointer;
c7c502 116 }
5dfab6 117
U 118 .datei-gewaehlt {
a3d410 119   background-color: lightblue;
U 120 }
121
122 .ordner {
123   color: navajowhite;
124 }
125
126 .datei {
127   color: lightgray;
10d3d3 128 }
U 129
130 #ansicht {
131   cursor: pointer;
5dfab6 132 }