-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
117 lines (97 loc) · 1.42 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
body {
font-family: sans-serif;
display: flex;
height: 100vh;
width: 100vw;
flex-direction: row;
margin: 0px;
}
.center {
max-width: 100%;
display: flex;
flex: 1;
}
.central {
display: flex;
flex-direction: column;
flex: 1;
max-width: 75%;
}
#mapid {
flex: 1;
}
.editor {
flex: 0 0 50px;
}
.layerbar {
flex: 0 0 25%;
order: -1;
max-height: 100vh;
overflow: auto;
}
.layerbar {
padding: 10px;
}
.layerbar__user, .layerbar__user__add {
margin-top: 10px;
}
.layercard {
display: flex;
}
.layercard:hover {
cursor: pointer;
}
.layercard--disabled {
color: #ccc;
background-color: white;
}
.layercard__swatch {
cursor: pointer;
}
.layercard__text {
flex: 1;
}
.layerbar .list-group li {
cursor: pointer;
}
.editor {
display: flex;
flex-direction: column;
}
.editor table {
/*word-break: break-all;*/
}
.editor table td, .editor table th {
overflow: hidden;
}
.editor__toolbar {
padding: 3px 0px;
display: flex;
justify-content: flex-end;
flex-direction: row;
flex: 0 0 auto;
}
.editor__grid {
flex: 1 0 auto;
}
.editor__toolbar button {
margin: 0px 3px;
}
.new-modal__alert {
display: none;
}
.map-popup-table {
max-width: 100%;
overflow: hidden;
}
.map-popup-table td {
white-space: nowrap;
vertical-align: top;
overflow: hidden;
}
.map-popup-table td:first-child {
font-weight: bold;
}
#new-modal .btn-group label {
pointer-events: none;
}