-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
201 lines (167 loc) · 3.23 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
html, body {
height: 100%;
}
body {
margin: 0;
font-family: 'Ubuntu', sans-serif !important;
}
#m {
height: 100%;
font-family: 'Ubuntu', sans-serif !important;
}
h1 {
text-align: center;
margin: 0;
}
h2 {
margin: 0;
}
.sticky {
text-align: center;
}
#search {
padding: 5px;
width: 266px;
font-size: 16px;
}
#search::placeholder, input, #selectPrint {
font-family: 'Ubuntu', sans-serif;
}
#list-wrapper {
margin: 0;
padding: 0;
z-index: 99;
position: absolute;
background: #fff;
right: 0;
width: 280px;
height: 100%;
overflow: hidden;
}
#list-wrapper-hidden {
margin: 0;
padding: 0;
z-index: 99;
position: absolute;
background: #fff;
right: 0;
width: 280px;
height: 100%;
overflow: hidden;
}
#empty {
text-align: center;
padding: 10px;
display: none;
}
#list {
height: calc(100% - 79px); /* .sticky 69px - margin 10px */
overflow-y: scroll;
list-style-type: none;
margin: 10px 0 0 0;
padding: 0;
line-height: .9em;
}
#list li {
padding: 5px 5px 10px 30px;
cursor: pointer;
-webkit-transition: all .5s;
transition: all .5s;
}
#list li:hover {
font-weight: bold;
background-color: #F8F8F8;
}
#list span {
font-size: 0.8em;
color: grey;
}
.select-print-wrapper {
position: absolute;
z-index: 100;
left: 0;
top: 0;
overflow: hidden;
background: #fff;
padding: 5px;
}
.red {
background: url('/images/drop-red.png') no-repeat 10px 7px / 14px;
}
/*.red:hover {
background: #F8F8F8 url('http://api4.mapy.cz/img/api/marker/drop-red.png') no-repeat 10px 7px / 14px;
/*background: #F8F8F8 url("http://api4.mapy.cz/img/api/marker/drop-red.png") no-repeat 7px 10px;
}*/
.yellow {
background: url('/images/drop-yellow.png') no-repeat 10px 7px / 14px;
}
/* .yellow:hover {
background: #F8F8F8 url('http://api4.mapy.cz/img/api/marker/drop-yellow.png') no-repeat 10px 7px / 14px;
}*/
.blue {
background: url('/images/drop-blue.png') no-repeat 10px 7px / 14px;
}
/*.blue:hover {
background: #F8F8F8 url('http://api4.mapy.cz/img/api/marker/drop-blue.png') no-repeat 10px 7px / 14px;
}*/
.green {
background: url('/images/drop-green.png') no-repeat 10px 7px / 14px;
}
#legenda {
position: absolute;
background: #fff;
z-index: 99;
padding: 5px;
}
#legenda img {
width: 10px;
}
.ruler-print {
height: 100%;
width: 180mm;
position: absolute;
top:0;
left: 0;
z-index: 99;
box-sizing: border-box;
-webkit-box-sizing: border-box;
border-top: 3px dashed #F00;
border-right: 3px dashed #F00;
}
.hide {
display: none;
}
.show {
display: block;
}
.close {
padding: 5px;
top: 0 !important;
}
.close::after {
font-size: 23px !important;
}
@media print {
#list-wrapper {
display: block;
position: absolute;
left: 0;
top: 601px;
width: 100%;
height: auto;
}
#list-wrapper-hidden {
display: none;
}
#list {
height: auto;
overflow-y: auto;
}
#list li {
float: left;
width: 280px;
}
.select-print-wrapper, .ruler-print {
display: none;
}
}