commit | author | age
|
cfa858
|
1 |
html, body { |
U |
2 |
margin: 0; |
|
3 |
padding: 0; |
|
4 |
height: 100%; /* Anmerkung 2 */ |
|
5 |
font-size: larger; |
|
6 |
font-family: 'Roboto Condensed'; |
|
7 |
} |
|
8 |
body { |
|
9 |
min-height: 0; /* Anmerkung 1 */ |
|
10 |
display: flex; |
|
11 |
flex-flow: column; |
|
12 |
} |
|
13 |
.inhalt { |
|
14 |
display: flex; |
|
15 |
flex-flow: row; |
|
16 |
height: 100%; /* Anmerkung 2 */ |
|
17 |
min-height: 0; /* Anmerkung 1 */ |
|
18 |
background-color: #ededed; |
|
19 |
overflow: hidden; |
|
20 |
} |
|
21 |
.nord { |
|
22 |
background-color: black; |
|
23 |
display: flex; |
|
24 |
flex-flow: row; |
|
25 |
height: 2em; |
|
26 |
align-items: center; |
bebd47
|
27 |
justify-content: space-between; |
cfa858
|
28 |
} |
U |
29 |
.sued { |
|
30 |
height: 1.5em; |
|
31 |
overflow: hidden; |
|
32 |
transition: all 0.3s ease-in; |
|
33 |
background-color: lightgray; |
|
34 |
} |
|
35 |
.west { |
|
36 |
flex-grow: 0; |
|
37 |
flex-shrink: 0; |
|
38 |
flex-basis: 4em; |
faab2d
|
39 |
background-color: #ececec; /* white; */ |
cfa858
|
40 |
transition: all 0.3s ease-in; |
U |
41 |
overflow: hidden; |
|
42 |
white-space: nowrap; |
|
43 |
} |
|
44 |
.ost { |
|
45 |
flex-grow: 0; |
|
46 |
flex-shrink: 0; |
|
47 |
flex-basis: 6em; |
|
48 |
transition: all 0.3s ease-in; |
|
49 |
background-color: antiquewhite; |
|
50 |
overflow: hidden; |
|
51 |
} |
|
52 |
.zentrum-behaelter { |
|
53 |
display: flex; |
|
54 |
flex-flow: column; |
|
55 |
/* background-color: #eaeaea; */ |
|
56 |
width: 100%; |
|
57 |
} |
|
58 |
|
|
59 |
.zentrum { |
|
60 |
width: 100%; |
|
61 |
height: 100%; |
|
62 |
overflow-x: hidden; |
|
63 |
overflow-y: auto; |
|
64 |
-webkit-overflow-scrolling: touch; |
faab2d
|
65 |
background-color: white; |
cfa858
|
66 |
} |
U |
67 |
|
|
68 |
.zentraler-inhalt { |
|
69 |
padding: 0.5em; |
|
70 |
} |
|
71 |
|
|
72 |
/* |
|
73 |
Anmerkungen: |
|
74 |
1.) min.height: 0 fuer body und inhalt ist gegen einen Bug, vgl. |
|
75 |
http://stackoverflow.com/questions/33859811/understanding-flexbox-and-overflowauto |
|
76 |
2.) height 100% fuer html, body und inhalt sorgt dafuer, dass sich alles |
|
77 |
immer ueber das gesamte Browserfenster ausdehnt. |
|
78 |
*/ |
|
79 |
|
|
80 |
.app-titel { |
|
81 |
margin-left: 0.6em; |
|
82 |
color: white; |
|
83 |
} |
|
84 |
|
|
85 |
.pointer-cursor { |
|
86 |
cursor: pointer; |
|
87 |
} |
|
88 |
|
|
89 |
.dialog { |
|
90 |
position: relative; |
|
91 |
/* height: 0.1em; */ |
|
92 |
transition: all 0.3s ease-in; |
|
93 |
} |
|
94 |
|
8239d1
|
95 |
.dialog-unten { |
bebd47
|
96 |
/* position: relative; */ |
8239d1
|
97 |
/* height: 0.1em; */ |
bebd47
|
98 |
/* transition: all 0.3s ease-in; */ |
8239d1
|
99 |
} |
U |
100 |
|
cfa858
|
101 |
.dlg-behaelter { |
U |
102 |
line-height: 1.6; |
|
103 |
padding: 0.4em; |
|
104 |
} |
|
105 |
|
|
106 |
.dlg-info { |
faab2d
|
107 |
background-color: #dcf2fb; /* blau */ |
cfa858
|
108 |
padding: 0.4em; |
U |
109 |
} |
|
110 |
|
|
111 |
/* |
|
112 |
Close Button |
|
113 |
|
|
114 |
<div> |
|
115 |
<span class="close-btn">✖</span> |
|
116 |
</div> |
|
117 |
*/ |
|
118 |
|
|
119 |
.close-btn { |
|
120 |
position: absolute; |
|
121 |
top: 0px; |
|
122 |
right: 0.4em; |
|
123 |
margin: 0; |
|
124 |
padding: 0; |
|
125 |
font-size: 1.3em; |
|
126 |
color: #b8b8b8; |
|
127 |
} |
b379f5
|
128 |
|
U |
129 |
/* ab hier Mediazentrale */ |
|
130 |
|
|
131 |
.entity-formular { |
|
132 |
display: flex; |
|
133 |
flex-flow: column; |
|
134 |
} |
|
135 |
|
faab2d
|
136 |
.entity-liste-kopf { |
U |
137 |
display: flex; |
|
138 |
flex-flow: row; |
|
139 |
justify-content: space-between; |
|
140 |
vertical-align: middle; |
|
141 |
} |
|
142 |
|
|
143 |
.entity-liste-kopf .button { |
|
144 |
/* margin-left: 1rem; */ |
|
145 |
/* margin-top: -0.2rem; */ |
|
146 |
} |
|
147 |
|
b379f5
|
148 |
.entity-element { |
U |
149 |
margin: 0.4rem; |
faab2d
|
150 |
} |
U |
151 |
|
|
152 |
.entity-element:hover { |
7c22a2
|
153 |
background-color: #ececec; |
b379f5
|
154 |
} |
U |
155 |
|
a43e1a
|
156 |
.entity-liste { |
U |
157 |
list-style-type: none; |
|
158 |
} |
|
159 |
|
|
160 |
.entity-eintrag { |
|
161 |
margin-top: 0.8rem; |
|
162 |
margin-left: 0; |
|
163 |
margin-right: 0; |
|
164 |
margin-bottom: 0; |
faab2d
|
165 |
cursor: pointer; |
U |
166 |
} |
|
167 |
|
|
168 |
.entity-eintrag:hover { |
|
169 |
background-color: background; |
a43e1a
|
170 |
} |
U |
171 |
|
7c22a2
|
172 |
.entity-typ-folder:before { |
U |
173 |
font-family: "pikto"; |
|
174 |
content: '\f114'; |
|
175 |
padding-right: 0.3rem; |
|
176 |
} |
|
177 |
|
|
178 |
.entity-typ-audio:before { |
|
179 |
font-family: "pikto"; |
|
180 |
content: '\e817'; /* icon-music */ |
|
181 |
padding-right: 0.3rem; |
|
182 |
} |
|
183 |
|
|
184 |
.entity-typ-video:before { |
|
185 |
font-family: "pikto"; |
|
186 |
content: '\e816'; /* icon-video */ |
|
187 |
padding-right: 0.3rem; |
|
188 |
} |
|
189 |
|
|
190 |
.entity-typ-file:before { |
|
191 |
font-family: "pikto"; |
|
192 |
content: '\e805'; /* icon-doc */ |
|
193 |
padding-right: 0.3rem; |
|
194 |
} |
|
195 |
|
5b7356
|
196 |
.form-button-footer { |
U |
197 |
display: flex; |
|
198 |
flex-flow: row; |
7c22a2
|
199 |
} |
U |
200 |
|
|
201 |
.selected { |
|
202 |
background-color: #ececec; |
5b7356
|
203 |
} |
U |
204 |
|
|
205 |
.dlg-btn { |
|
206 |
margin-left: 0.4rem; |
|
207 |
} |
|
208 |
|
bebd47
|
209 |
.ctrl { |
U |
210 |
display: flex; |
|
211 |
flex-flow: column; |
|
212 |
} |
|
213 |
|
|
214 |
.ctrl-btns { |
|
215 |
display: flex; |
|
216 |
flex-flow: row; |
|
217 |
justify-content: center; |
|
218 |
} |
|
219 |
|
|
220 |
.ctrl-item { |
|
221 |
margin-left: 0.2rem; |
|
222 |
margin-top: 0.2rem; |
|
223 |
} |
|
224 |
|
|
225 |
.ctrl-btn { |
|
226 |
width: 4rem; |
b90d67
|
227 |
font-size: medium; |
U |
228 |
display: inline-block; |
|
229 |
height: 2rem; |
|
230 |
/* padding: 0 30px; */ |
7c22a2
|
231 |
color: black; |
b90d67
|
232 |
text-align: center; |
U |
233 |
font-weight: 600; |
|
234 |
line-height: 2rem; |
|
235 |
letter-spacing: .1rem; |
|
236 |
text-transform: none; |
|
237 |
text-decoration: none; |
|
238 |
white-space: nowrap; |
|
239 |
background-color: transparent; |
|
240 |
border-radius: 4px; |
|
241 |
border: 1px solid #bbb; |
|
242 |
cursor: pointer; |
|
243 |
box-sizing: border-box; |
bebd47
|
244 |
} |
U |
245 |
|
|
246 |
.ctrl-select { |
|
247 |
width: 4rem; |
|
248 |
} |
|
249 |
|
|
250 |
.ctrl-orte { |
|
251 |
display: flex; |
|
252 |
flex-flow: row; |
|
253 |
justify-content: center; |
|
254 |
} |
|
255 |
|
|
256 |
.top-btn-area { |
|
257 |
/*margin-left: auto;*/ |
|
258 |
margin: -0.5em 1em 0 2em; |
|
259 |
} |
|
260 |
|
|
261 |
.top-btn { |
|
262 |
margin: 0; |
|
263 |
padding: 0 0.2em 0 0.2em; |
|
264 |
height: 1.3em; |
|
265 |
line-height: 1em; |
|
266 |
text-align: center; |
|
267 |
font-size: large; |
|
268 |
background-color: white; |
|
269 |
/* width: 1em; */ |
|
270 |
} |
|
271 |
|
faab2d
|
272 |
|
b379f5
|
273 |
@media (min-width: 800px) { |
faab2d
|
274 |
.zentraler-inhalt { |
b379f5
|
275 |
margin: 0 10% 0 10%; |
U |
276 |
} |
|
277 |
} |
|
278 |
|
b90d67
|
279 |
/* Font für Piktogramme mit Fontello aus FontAwesome erzeugt */ |
U |
280 |
|
|
281 |
@font-face { |
|
282 |
font-family: 'pikto'; |
|
283 |
src: url('font/pikto.ttf?49751252') format('truetype'); |
|
284 |
font-weight: normal; |
|
285 |
font-style: normal; |
|
286 |
} |
|
287 |
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */ |
|
288 |
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */ |
|
289 |
/* |
|
290 |
@media screen and (-webkit-min-device-pixel-ratio:0) { |
|
291 |
@font-face { |
|
292 |
font-family: 'pikto'; |
|
293 |
src: url('../font/pikto.svg?49751252#pikto') format('svg'); |
|
294 |
} |
|
295 |
} |
|
296 |
*/ |
|
297 |
|
|
298 |
[class^="icon-"]:before, [class*=" icon-"]:before { |
|
299 |
font-family: "pikto"; |
|
300 |
font-style: normal; |
|
301 |
font-weight: normal; |
|
302 |
speak: never; |
|
303 |
|
|
304 |
display: inline-block; |
|
305 |
text-decoration: inherit; |
|
306 |
width: 1em; |
|
307 |
margin-right: .2em; |
|
308 |
text-align: center; |
|
309 |
/* opacity: .8; */ |
|
310 |
|
|
311 |
/* For safety - reset parent styles, that can break glyph codes*/ |
|
312 |
font-variant: normal; |
|
313 |
text-transform: none; |
|
314 |
|
|
315 |
/* fix buttons height, for twitter bootstrap */ |
|
316 |
line-height: 1em; |
|
317 |
|
|
318 |
/* Animation center compensation - margins should be symmetric */ |
|
319 |
/* remove if not needed */ |
|
320 |
margin-left: .2em; |
|
321 |
|
|
322 |
/* you can be more comfortable with increased icons size */ |
|
323 |
/* font-size: 120%; */ |
|
324 |
|
|
325 |
/* Font smoothing. That was taken from TWBS */ |
|
326 |
-webkit-font-smoothing: antialiased; |
|
327 |
-moz-osx-font-smoothing: grayscale; |
|
328 |
|
|
329 |
/* Uncomment for 3D effect */ |
|
330 |
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ |
|
331 |
} |
|
332 |
|
|
333 |
.icon-cancel:before { content: '\e800'; } /* '' */ |
|
334 |
.icon-th-large:before { content: '\e801'; } /* '' */ |
|
335 |
.icon-th-list:before { content: '\e802'; } /* '' */ |
|
336 |
.icon-folder:before { content: '\e803'; } /* '' */ |
|
337 |
.icon-folder-open:before { content: '\e804'; } /* '' */ |
|
338 |
.icon-doc:before { content: '\e805'; } /* '' */ |
|
339 |
.icon-pencil:before { content: '\e806'; } /* '' */ |
|
340 |
.icon-trash-empty:before { content: '\e807'; } /* '' */ |
|
341 |
.icon-down-dir:before { content: '\e808'; } /* '' */ |
|
342 |
.icon-up-dir:before { content: '\e809'; } /* '' */ |
|
343 |
.icon-left-dir:before { content: '\e80a'; } /* '' */ |
|
344 |
.icon-right-dir:before { content: '\e80b'; } /* '' */ |
|
345 |
.icon-down-open:before { content: '\e80c'; } /* '' */ |
|
346 |
.icon-left-open:before { content: '\e80d'; } /* '' */ |
|
347 |
.icon-right-open:before { content: '\e80e'; } /* '' */ |
|
348 |
.icon-up-open:before { content: '\e80f'; } /* '' */ |
|
349 |
.icon-floppy:before { content: '\e810'; } /* '' */ |
|
350 |
.icon-eye:before { content: '\e811'; } /* '' */ |
|
351 |
.icon-logout:before { content: '\e812'; } /* '' */ |
|
352 |
.icon-play:before { content: '\e813'; } /* '' */ |
|
353 |
.icon-stop:before { content: '\e814'; } /* '' */ |
|
354 |
.icon-pause:before { content: '\e815'; } /* '' */ |
|
355 |
.icon-video:before { content: '\e816'; } /* '' */ |
|
356 |
.icon-music:before { content: '\e817'; } /* '' */ |
|
357 |
.icon-forward:before { content: '\e818'; } /* '' */ |
|
358 |
.icon-list:before { content: '\e819'; } /* '' */ |
|
359 |
.icon-docs:before { content: '\f0c5'; } /* '' */ |
|
360 |
.icon-menu:before { content: '\f0c9'; } /* '' */ |
|
361 |
.icon-doc-text:before { content: '\f0f6'; } /* '' */ |
|
362 |
.icon-angle-left:before { content: '\f104'; } /* '' */ |
|
363 |
.icon-angle-right:before { content: '\f105'; } /* '' */ |
|
364 |
.icon-angle-up:before { content: '\f106'; } /* '' */ |
|
365 |
.icon-angle-down:before { content: '\f107'; } /* '' */ |
|
366 |
.icon-tablet:before { content: '\f10a'; } /* '' */ |
|
367 |
.icon-folder-empty:before { content: '\f114'; } /* '' */ |
|
368 |
.icon-folder-open-empty:before { content: '\f115'; } /* '' */ |
|
369 |
.icon-ellipsis:before { content: '\f141'; } /* '' */ |
|
370 |
.icon-ellipsis-vert:before { content: '\f142'; } /* '' */ |
|
371 |
.icon-doc-inv:before { content: '\f15b'; } /* '' */ |
|
372 |
.icon-doc-text-inv:before { content: '\f15c'; } /* '' */ |
|
373 |
.icon-database:before { content: '\f1c0'; } /* '' */ |
|
374 |
.icon-sliders:before { content: '\f1de'; } /* '' */ |
|
375 |
.icon-trash:before { content: '\f1f8'; } /* '' */ |
|
376 |
|
bebd47
|
377 |
/* Dropdown Menu */ |
U |
378 |
|
|
379 |
/* Style The Dropdown Button */ |
|
380 |
.dropbtn { |
|
381 |
background-color: white; |
|
382 |
width: 3em; |
|
383 |
padding: 0; |
|
384 |
font-size: medium; |
|
385 |
cursor: pointer; |
|
386 |
} |
|
387 |
|
|
388 |
/* The container <div> - needed to position the dropdown content */ |
|
389 |
.dropdown { |
|
390 |
position: relative; |
|
391 |
display: inline-block; |
|
392 |
} |
|
393 |
|
|
394 |
/* Dropdown Content (Hidden by Default) */ |
|
395 |
.dropdown-content { |
|
396 |
display: none; |
|
397 |
position: absolute; |
|
398 |
background-color: #f9f9f9; |
|
399 |
width: 12em; |
|
400 |
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); |
|
401 |
z-index: 1; |
|
402 |
right: 0; |
|
403 |
font-size: medium; |
|
404 |
} |
|
405 |
|
|
406 |
/* Links inside the dropdown */ |
|
407 |
.dropdown-content a { |
|
408 |
color: black; |
|
409 |
padding: 0.5em 0.8em; |
|
410 |
text-decoration: none; |
|
411 |
display: block; |
|
412 |
cursor: pointer; |
|
413 |
} |
|
414 |
|
|
415 |
/* Change color of dropdown links on hover */ |
|
416 |
.dropdown-content a:hover {background-color: #f1f1f1} |
|
417 |
|
|
418 |
/* Show the dropdown menu on hover */ |
|
419 |
.dropdown:hover .dropdown-content { |
|
420 |
display: block; |
|
421 |
} |
|
422 |
|
|
423 |
/* Change the background color of the dropdown button when the dropdown content is shown */ |
|
424 |
.dropdown:hover .dropbtn { |
|
425 |
background-color: #33C3F0; /* #3e8e41; */ |
|
426 |
color: white; |
|
427 |
border: none; |
|
428 |
} |
b379f5
|
429 |
|
U |
430 |
/* von Skeleton */ |
|
431 |
|
|
432 |
/* Buttons |
|
433 |
–––––––––––––––––––––––––––––––––––––––––––––––––– */ |
|
434 |
.button, |
|
435 |
button, |
|
436 |
input[type="submit"], |
|
437 |
input[type="reset"], |
|
438 |
input[type="button"] { |
|
439 |
display: inline-block; |
|
440 |
height: 38px; |
bebd47
|
441 |
/* padding: 0 30px; */ |
b379f5
|
442 |
color: #555; |
U |
443 |
text-align: center; |
|
444 |
font-size: 11px; |
|
445 |
font-weight: 600; |
|
446 |
line-height: 38px; |
|
447 |
letter-spacing: .1rem; |
|
448 |
text-transform: uppercase; |
|
449 |
text-decoration: none; |
|
450 |
white-space: nowrap; |
|
451 |
background-color: transparent; |
|
452 |
border-radius: 4px; |
|
453 |
border: 1px solid #bbb; |
|
454 |
cursor: pointer; |
|
455 |
box-sizing: border-box; } |
|
456 |
.button:hover, |
|
457 |
button:hover, |
|
458 |
input[type="submit"]:hover, |
|
459 |
input[type="reset"]:hover, |
|
460 |
input[type="button"]:hover, |
|
461 |
.button:focus, |
|
462 |
button:focus, |
|
463 |
input[type="submit"]:focus, |
|
464 |
input[type="reset"]:focus, |
|
465 |
input[type="button"]:focus { |
|
466 |
color: #333; |
|
467 |
border-color: #888; |
|
468 |
outline: 0; } |
|
469 |
.button.button-primary, |
|
470 |
button.button-primary, |
|
471 |
input[type="submit"].button-primary, |
|
472 |
input[type="reset"].button-primary, |
|
473 |
input[type="button"].button-primary { |
|
474 |
color: #FFF; |
|
475 |
background-color: #33C3F0; |
|
476 |
border-color: #33C3F0; } |
|
477 |
.button.button-primary:hover, |
|
478 |
button.button-primary:hover, |
|
479 |
input[type="submit"].button-primary:hover, |
|
480 |
input[type="reset"].button-primary:hover, |
|
481 |
input[type="button"].button-primary:hover, |
|
482 |
.button.button-primary:focus, |
|
483 |
button.button-primary:focus, |
|
484 |
input[type="submit"].button-primary:focus, |
|
485 |
input[type="reset"].button-primary:focus, |
|
486 |
input[type="button"].button-primary:focus { |
|
487 |
color: #FFF; |
|
488 |
background-color: #1EAEDB; |
|
489 |
border-color: #1EAEDB; } |
|
490 |
|
|
491 |
|
|
492 |
/* Forms |
|
493 |
–––––––––––––––––––––––––––––––––––––––––––––––––– */ |
|
494 |
input[type="email"], |
|
495 |
input[type="number"], |
|
496 |
input[type="search"], |
|
497 |
input[type="text"], |
|
498 |
input[type="tel"], |
|
499 |
input[type="url"], |
|
500 |
input[type="password"], |
|
501 |
textarea, |
|
502 |
select { |
|
503 |
height: 38px; |
bebd47
|
504 |
padding: 3px 2px; /* The 6px vertically centers text on FF, ignored by Webkit */ |
b379f5
|
505 |
background-color: #fff; |
U |
506 |
border: 1px solid #D1D1D1; |
|
507 |
border-radius: 4px; |
|
508 |
box-shadow: none; |
|
509 |
box-sizing: border-box; } |
|
510 |
/* Removes awkward default styles on some inputs for iOS */ |
|
511 |
input[type="email"], |
|
512 |
input[type="number"], |
|
513 |
input[type="search"], |
|
514 |
input[type="text"], |
|
515 |
input[type="tel"], |
|
516 |
input[type="url"], |
|
517 |
input[type="password"], |
|
518 |
textarea { |
|
519 |
-webkit-appearance: none; |
|
520 |
-moz-appearance: none; |
|
521 |
appearance: none; } |
|
522 |
textarea { |
|
523 |
min-height: 65px; |
|
524 |
padding-top: 6px; |
|
525 |
padding-bottom: 6px; } |
|
526 |
input[type="email"]:focus, |
|
527 |
input[type="number"]:focus, |
|
528 |
input[type="search"]:focus, |
|
529 |
input[type="text"]:focus, |
|
530 |
input[type="tel"]:focus, |
|
531 |
input[type="url"]:focus, |
|
532 |
input[type="password"]:focus, |
|
533 |
textarea:focus, |
|
534 |
select:focus { |
|
535 |
border: 1px solid #33C3F0; |
|
536 |
outline: 0; } |
|
537 |
label, |
|
538 |
legend { |
|
539 |
display: block; |
|
540 |
margin-bottom: .5rem; |
|
541 |
font-weight: 600; } |
|
542 |
fieldset { |
|
543 |
padding: 0; |
|
544 |
border-width: 0; } |
|
545 |
input[type="checkbox"], |
|
546 |
input[type="radio"] { |
|
547 |
display: inline; } |
|
548 |
label > .label-body { |
|
549 |
display: inline-block; |
|
550 |
margin-left: .5rem; |
|
551 |
font-weight: normal; } |