Dateiverwaltung für die WebBox
ulrich@undisclosed
2020-04-18 f9ce7f5a92371eac9c242a02b62e42049a26025f
commit | author | age
05e9c4 1 /* 
U 2     Created on : 24.01.2020, 09:08:45
3     Author     : ulrich
4 */
5
6
7
8
9
10
11 /* aus App-Vorlage */
12
13 html, body {
14   margin: 0;
15   padding: 0;
16   height: 100%; /* Anmerkung 2 */
17   font-size: larger;
18   font-family: 'Roboto Condensed';
19 }
20 body {
21   min-height: 0; /* Anmerkung 1 */
22   display: flex;
23   flex-flow: column;
24 }
25 .inhalt {
26   display: flex;
27   flex-flow: row;
28   height: 100%; /* Anmerkung 2 */
29   min-height: 0; /* Anmerkung 1 */
30   background-color: #ededed;
31   overflow: hidden;
32 }
33 .nord {
34   background-color: black;
35   display: flex;
36   flex-flow: row;
37   height: 2em;
38   align-items: center;
39 }
40 .sued {
41   height: 1.5em;
42   overflow: hidden;
43   transition: all 0.3s ease-in;
44   background-color: lightgray;
45 }
46 .west {
47   flex-grow: 0;
48   flex-shrink: 0;
49   flex-basis: 4em;
50   background-color: white;
51   transition: all 0.3s ease-in;
52   overflow: hidden;
53   white-space: nowrap;
54 }
55 .ost {
56   flex-grow: 0;
57   flex-shrink: 0;
58   flex-basis: 6em;
59   transition: all 0.3s ease-in;
60   background-color: antiquewhite;
61   overflow: hidden;
62 }
63 .zentrum-behaelter {
64   display: flex;
65   flex-flow: column;
66   /* background-color: #eaeaea; */
67   width: 100%;
68 }
69
70 .zentrum {
71   width: 100%;
72   height: 100%;
73   overflow-x: hidden;
74   overflow-y: auto;
75   -webkit-overflow-scrolling: touch;
76 }
77
78 .zentraler-inhalt {
79   padding: 0.5em;
80 }
81
82 /*
83   Anmerkungen:
84   1.) min.height: 0 fuer body und inhalt ist gegen einen Bug, vgl.
85       http://stackoverflow.com/questions/33859811/understanding-flexbox-and-overflowauto
86   2.) height 100% fuer html, body und inhalt sorgt dafuer, dass sich alles
87       immer ueber das gesamte Browserfenster ausdehnt.
88 */
89
90 .app-titel {
91   margin-left: 0.6em;
92   color: white;
93 }
94
95 .pointer-cursor {
96   cursor: pointer;
97 }
98
99 .dialog {
100   position: relative;
101   /* height: 0.1em; */
102   transition: all 0.3s ease-in;
103 }
104
105 .dlg-behaelter {
106   line-height: 1.6;
107   padding: 0.4em;
108 }
109
110 .dlg-info {
111   background-color: #dcf2fb; /* blau */ 
112   padding: 0.4em;
113 }
114
115 /*
116   Close Button
117
118   <div>
119     <span class="close-btn">&#10006;</span>
120   </div>
121 */
122
123 .close-btn {
124   position: absolute;
125   top: 0px;
126   right: 0.4em;
127   margin: 0;
128   padding: 0;
129   font-size: 1.3em;
130   color: #b8b8b8;
131 }
132
133 /* für app-menu */
134
135
136 .app-menu {
137   margin: 0;
138   padding: 0;
139 }
140
141 .app-menu-kopf {
142   text-align: center;
143 }
144
145 ul.app-menu {
146     list-style: none;
147 }
148
149 .app-menu-item-back {
150   margin-bottom: 0.3em;
151   cursor: pointer;
152 }
153
154 .app-menu-item {
155   text-align: right;
156   cursor: pointer;
157 }
158
159 .app-menu-item-submark {
160   color: transparent;
161   cursor: pointer;
162 }
163
164 /*
165   Das div-Element, das das Menue aufnimmt erhaelt
166   die Klasse app-menu-content
167 */
168 .app-menu-content {
169   overflow: hidden;
170 }
171
172 /* für Hamburger Icon */
173
174 .hamburger {
175   display: inline-block;
176   cursor: pointer;
177   transition-property: opacity, filter;
178   transition-duration: 0.15s;
179   transition-timing-function: linear;
180   font: inherit;
181   color: inherit;
182   text-transform: none;
183   background-color: transparent;
184   border: 0;
185   margin: 0;
186   overflow: visible;
187 }
188
189 .hamburger:hover {
190   opacity: 0.7;
191 }
192
193 .hamburger-box {
194   width: 40px;
195   height: 24px;
196   display: inline-block;
197   position: relative;
198 }
199
200 .hamburger-inner {
201   display: block;
202   top: 50%;
203   margin: 0;
204 }
205
206 .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
207   width: 30px;
208   height: 4px;
209   background-color: white; /* #000; */
210   border-radius: 4px;
211   position: absolute;
212   transition-property: transform;
213   transition-duration: 0.15s;
214   transition-timing-function: ease;
215 }
216
217 .hamburger-inner::before, .hamburger-inner::after {
218   content: "";
219   display: block;
220 }
221
222 .hamburger-inner::before {
223   top: -10px;
224 }
225
226 .hamburger-inner::after {
227   bottom: -10px;
228 }
229
230 /*
231  * Elastic
232  */
233 .hamburger--elastic .hamburger-inner {
234   top: 2px;
235   transition-duration: 0.275s;
236   transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
237 }
238
239 .hamburger--elastic .hamburger-inner::before {
240   top: 10px;
241   transition: opacity 0.125s 0.275s ease;
242 }
243
244 .hamburger--elastic .hamburger-inner::after {
245   top: 20px;
246   transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
247 }
248
249 .hamburger--elastic.is-active .hamburger-inner {
250   transform: translate3d(0, 10px, 0) rotate(135deg);
251   transition-delay: 0.075s;
252 }
253
254 .hamburger--elastic.is-active .hamburger-inner::before {
255   transition-delay: 0s;
256   opacity: 0;
257 }
258
259 .hamburger--elastic.is-active .hamburger-inner::after {
260   transform: translate3d(0, -20px, 0) rotate(-270deg);
261   transition-delay: 0.075s;
262 }
263
264 /* Font für Piktogramme mit Fontello aus FontAwesome erzeugt */
265
266 @font-face {
267   font-family: 'pikto';
268   src: url('font/pikto.ttf?37040783') format('truetype');
269   font-weight: normal;
270   font-style: normal;
271 }
272  
273  [class^="icon-"]:before, [class*=" icon-"]:before {
274   font-family: "pikto";
275   font-style: normal;
276   font-weight: normal;
277   speak: none;
278  
279   display: inline-block;
280   text-decoration: inherit;
281   width: 1em;
282   margin-right: .2em;
283   text-align: center;
284   /* opacity: .8; */
285  
286   /* For safety - reset parent styles, that can break glyph codes*/
287   font-variant: normal;
288   text-transform: none;
289  
290   /* fix buttons height, for twitter bootstrap */
291   line-height: 1em;
292  
293   /* Animation center compensation - margins should be symmetric */
294   /* remove if not needed */
295   margin-left: .2em;
296  
297   /* you can be more comfortable with increased icons size */
298   /* font-size: 120%; */
299  
300   /* Font smoothing. That was taken from TWBS */
301   -webkit-font-smoothing: antialiased;
302   -moz-osx-font-smoothing: grayscale;
303  
304   /* Uncomment for 3D effect */
305   /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
306 }
307  
308 .icon-folder:before { content: '\e800'; } /* '' */
309 .icon-folder-open:before { content: '\e801'; } /* '' */
310 .icon-th-large:before { content: '\e802'; } /* '' */
311 .icon-th-list:before { content: '\e803'; } /* '' */
312 .icon-doc-text:before { content: '\f0f6'; } /* '' */
313 .icon-folder-empty:before { content: '\f114'; } /* '' */
314 .icon-folder-open-empty:before { content: '\f115'; } /* '' */
315 .icon-doc-inv:before { content: '\f15b'; } /* '' */
316 .icon-doc-text-inv:before { content: '\f15c'; } /* '' */