commit | author | age
|
c7c502
|
1 |
|
a4d3b5
|
2 |
/* Stile Code-Editor */ |
U |
3 |
|
|
4 |
.code-editor-container { |
|
5 |
height: 100%; |
|
6 |
} |
|
7 |
|
|
8 |
.codeeditor { |
|
9 |
height: 100%; |
|
10 |
} |
|
11 |
|
|
12 |
.codeeditor-space { |
|
13 |
width: 100%; |
|
14 |
height: 100%; |
|
15 |
border: 1px solid lightgrey; |
|
16 |
} |
|
17 |
|
|
18 |
.CodeMirror { |
|
19 |
height: 100%; |
|
20 |
} |
c7c502
|
21 |
|
U |
22 |
|
|
23 |
/* Stile Listenansicht */ |
|
24 |
|
|
25 |
html { |
|
26 |
margin: 0; |
|
27 |
padding: 0; |
|
28 |
height: 100%; /* Anmerkung 2 */ |
|
29 |
} |
|
30 |
body { |
|
31 |
margin: 0; |
|
32 |
padding: 0; |
|
33 |
height: 100%; /* Anmerkung 2 */ |
|
34 |
min-height: 0; /* Anmerkung 1 */ |
|
35 |
display: flex; |
|
36 |
flex-flow: column; |
|
37 |
} |
|
38 |
.inhalt { |
|
39 |
display: flex; |
|
40 |
flex-flow: row; |
|
41 |
height: 100%; /* Anmerkung 2 */ |
|
42 |
min-height: 0; /* Anmerkung 1 */ |
|
43 |
} |
|
44 |
.nord { |
|
45 |
|
|
46 |
} |
|
47 |
.sued { |
|
48 |
background-color: lightgray; |
|
49 |
} |
|
50 |
.west { |
|
51 |
flex-grow: 0; |
|
52 |
flex-shrink: 0; |
|
53 |
flex-basis: 10em; |
|
54 |
} |
|
55 |
.ost { |
|
56 |
flex-grow: 0; |
|
57 |
flex-shrink: 0; |
|
58 |
flex-basis: 10em; |
|
59 |
background-color: antiquewhite; |
|
60 |
} |
|
61 |
.zentrum { |
|
62 |
width: 100%; |
|
63 |
height: 100%; |
|
64 |
display: flex; |
|
65 |
flex-flow: column; |
a4d3b5
|
66 |
/* background-color: antiquewhite; */ |
c7c502
|
67 |
} |
U |
68 |
.zentrum-bc { |
|
69 |
} |
|
70 |
.zentrum-liste { |
|
71 |
width: 100%; |
|
72 |
height: 100%; |
|
73 |
overflow: auto; |
|
74 |
-webkit-overflow-scrolling: touch; |
|
75 |
} |
|
76 |
.datei-figure { |
|
77 |
width: 6em; |
|
78 |
} |