umap-project 3.3.6__py3-none-any.whl → 3.4.0b0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of umap-project might be problematic. Click here for more details.

Files changed (216) hide show
  1. umap/__init__.py +1 -1
  2. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  3. umap/locale/cs_CZ/LC_MESSAGES/django.po +43 -33
  4. umap/locale/da/LC_MESSAGES/django.mo +0 -0
  5. umap/locale/da/LC_MESSAGES/django.po +43 -33
  6. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/de/LC_MESSAGES/django.po +35 -29
  8. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  9. umap/locale/el/LC_MESSAGES/django.po +35 -29
  10. umap/locale/en/LC_MESSAGES/django.po +34 -28
  11. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  12. umap/locale/es/LC_MESSAGES/django.po +43 -33
  13. umap/locale/et/LC_MESSAGES/django.mo +0 -0
  14. umap/locale/et/LC_MESSAGES/django.po +58 -54
  15. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  16. umap/locale/eu/LC_MESSAGES/django.po +43 -33
  17. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  18. umap/locale/fa_IR/LC_MESSAGES/django.po +43 -33
  19. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  20. umap/locale/fr/LC_MESSAGES/django.po +36 -30
  21. umap/locale/gl/LC_MESSAGES/django.mo +0 -0
  22. umap/locale/gl/LC_MESSAGES/django.po +43 -33
  23. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  24. umap/locale/hu/LC_MESSAGES/django.po +35 -29
  25. umap/locale/is/LC_MESSAGES/django.mo +0 -0
  26. umap/locale/is/LC_MESSAGES/django.po +43 -33
  27. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  28. umap/locale/it/LC_MESSAGES/django.po +43 -33
  29. umap/locale/nl/LC_MESSAGES/django.mo +0 -0
  30. umap/locale/nl/LC_MESSAGES/django.po +35 -29
  31. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  32. umap/locale/pl/LC_MESSAGES/django.po +43 -33
  33. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  34. umap/locale/pt/LC_MESSAGES/django.po +43 -33
  35. umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
  36. umap/locale/th_TH/LC_MESSAGES/django.po +310 -109
  37. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  38. umap/locale/zh_TW/LC_MESSAGES/django.po +80 -70
  39. umap/management/commands/switch_user.py +2 -2
  40. umap/static/umap/base.css +89 -32
  41. umap/static/umap/content.css +129 -33
  42. umap/static/umap/css/bar.css +82 -20
  43. umap/static/umap/css/browser.css +163 -0
  44. umap/static/umap/css/contextmenu.css +15 -0
  45. umap/static/umap/css/dialog.css +36 -16
  46. umap/static/umap/css/form.css +122 -32
  47. umap/static/umap/css/icon.css +46 -3
  48. umap/static/umap/css/panel.css +7 -3
  49. umap/static/umap/css/popup.css +34 -8
  50. umap/static/umap/css/tooltip.css +8 -4
  51. umap/static/umap/img/16-white.svg +26 -8
  52. umap/static/umap/img/16.svg +1 -1
  53. umap/static/umap/img/source/16-white.svg +36 -18
  54. umap/static/umap/img/source/16.svg +1 -1
  55. umap/static/umap/js/components/alerts/alert.css +69 -31
  56. umap/static/umap/js/components/alerts/alert.js +20 -2
  57. umap/static/umap/js/modules/browser.js +63 -55
  58. umap/static/umap/js/modules/caption.js +10 -7
  59. umap/static/umap/js/modules/data/features.js +82 -59
  60. umap/static/umap/js/modules/data/layer.js +56 -157
  61. umap/static/umap/js/modules/domutils.js +109 -0
  62. umap/static/umap/js/modules/filters.js +807 -0
  63. umap/static/umap/js/modules/form/builder.js +8 -5
  64. umap/static/umap/js/modules/form/fields.js +110 -220
  65. umap/static/umap/js/modules/formatter.js +24 -1
  66. umap/static/umap/js/modules/help.js +3 -2
  67. umap/static/umap/js/modules/importers/opendata.js +5 -0
  68. umap/static/umap/js/modules/importers/openrouteservice.js +6 -1
  69. umap/static/umap/js/modules/managers.js +265 -1
  70. umap/static/umap/js/modules/permissions.js +35 -31
  71. umap/static/umap/js/modules/rendering/controls.js +7 -7
  72. umap/static/umap/js/modules/rendering/icon.js +3 -8
  73. umap/static/umap/js/modules/rendering/layers/classified.js +17 -10
  74. umap/static/umap/js/modules/rendering/layers/cluster.js +2 -2
  75. umap/static/umap/js/modules/rendering/template.js +44 -8
  76. umap/static/umap/js/modules/rendering/ui.js +29 -23
  77. umap/static/umap/js/modules/rules.js +4 -3
  78. umap/static/umap/js/modules/schema.js +3 -6
  79. umap/static/umap/js/modules/share.js +4 -3
  80. umap/static/umap/js/modules/tableeditor.js +50 -38
  81. umap/static/umap/js/modules/templates.js +2 -3
  82. umap/static/umap/js/modules/ui/bar.js +42 -18
  83. umap/static/umap/js/modules/ui/dialog.js +33 -31
  84. umap/static/umap/js/modules/ui/panel.js +21 -7
  85. umap/static/umap/js/modules/ui/tooltip.js +6 -5
  86. umap/static/umap/js/modules/umap.js +148 -51
  87. umap/static/umap/js/modules/utils.js +23 -1
  88. umap/static/umap/js/umap.core.js +1 -110
  89. umap/static/umap/locale/am_ET.js +40 -14
  90. umap/static/umap/locale/am_ET.json +40 -14
  91. umap/static/umap/locale/ar.js +40 -14
  92. umap/static/umap/locale/ar.json +40 -14
  93. umap/static/umap/locale/ast.js +40 -14
  94. umap/static/umap/locale/ast.json +40 -14
  95. umap/static/umap/locale/bg.js +40 -14
  96. umap/static/umap/locale/bg.json +40 -14
  97. umap/static/umap/locale/br.js +47 -21
  98. umap/static/umap/locale/br.json +47 -21
  99. umap/static/umap/locale/ca.js +40 -14
  100. umap/static/umap/locale/ca.json +40 -14
  101. umap/static/umap/locale/cs_CZ.js +40 -14
  102. umap/static/umap/locale/cs_CZ.json +40 -14
  103. umap/static/umap/locale/da.js +40 -14
  104. umap/static/umap/locale/da.json +40 -14
  105. umap/static/umap/locale/de.js +39 -13
  106. umap/static/umap/locale/de.json +39 -13
  107. umap/static/umap/locale/el.js +40 -14
  108. umap/static/umap/locale/el.json +40 -14
  109. umap/static/umap/locale/en.js +39 -13
  110. umap/static/umap/locale/en.json +39 -13
  111. umap/static/umap/locale/en_US.json +40 -14
  112. umap/static/umap/locale/es.js +40 -14
  113. umap/static/umap/locale/es.json +40 -14
  114. umap/static/umap/locale/et.js +79 -53
  115. umap/static/umap/locale/et.json +79 -53
  116. umap/static/umap/locale/eu.js +72 -46
  117. umap/static/umap/locale/eu.json +72 -46
  118. umap/static/umap/locale/fa_IR.js +40 -14
  119. umap/static/umap/locale/fa_IR.json +40 -14
  120. umap/static/umap/locale/fi.js +40 -14
  121. umap/static/umap/locale/fi.json +40 -14
  122. umap/static/umap/locale/fr.js +39 -13
  123. umap/static/umap/locale/fr.json +39 -13
  124. umap/static/umap/locale/gl.js +40 -14
  125. umap/static/umap/locale/gl.json +40 -14
  126. umap/static/umap/locale/he.js +40 -14
  127. umap/static/umap/locale/he.json +40 -14
  128. umap/static/umap/locale/hr.js +40 -14
  129. umap/static/umap/locale/hr.json +40 -14
  130. umap/static/umap/locale/hu.js +40 -14
  131. umap/static/umap/locale/hu.json +40 -14
  132. umap/static/umap/locale/id.js +40 -14
  133. umap/static/umap/locale/id.json +40 -14
  134. umap/static/umap/locale/is.js +40 -14
  135. umap/static/umap/locale/is.json +40 -14
  136. umap/static/umap/locale/it.js +40 -14
  137. umap/static/umap/locale/it.json +40 -14
  138. umap/static/umap/locale/ja.js +40 -14
  139. umap/static/umap/locale/ja.json +40 -14
  140. umap/static/umap/locale/ko.js +40 -14
  141. umap/static/umap/locale/ko.json +40 -14
  142. umap/static/umap/locale/lt.js +40 -14
  143. umap/static/umap/locale/lt.json +40 -14
  144. umap/static/umap/locale/ms.js +40 -14
  145. umap/static/umap/locale/ms.json +40 -14
  146. umap/static/umap/locale/nl.js +40 -14
  147. umap/static/umap/locale/nl.json +40 -14
  148. umap/static/umap/locale/no.js +40 -14
  149. umap/static/umap/locale/no.json +40 -14
  150. umap/static/umap/locale/pl.js +40 -14
  151. umap/static/umap/locale/pl.json +40 -14
  152. umap/static/umap/locale/pl_PL.json +40 -14
  153. umap/static/umap/locale/pt.js +40 -14
  154. umap/static/umap/locale/pt.json +40 -14
  155. umap/static/umap/locale/pt_BR.js +40 -14
  156. umap/static/umap/locale/pt_BR.json +40 -14
  157. umap/static/umap/locale/pt_PT.js +40 -14
  158. umap/static/umap/locale/pt_PT.json +40 -14
  159. umap/static/umap/locale/ro.js +40 -14
  160. umap/static/umap/locale/ro.json +40 -14
  161. umap/static/umap/locale/ru.js +40 -14
  162. umap/static/umap/locale/ru.json +40 -14
  163. umap/static/umap/locale/sk_SK.js +40 -14
  164. umap/static/umap/locale/sk_SK.json +40 -14
  165. umap/static/umap/locale/sl.js +40 -14
  166. umap/static/umap/locale/sl.json +40 -14
  167. umap/static/umap/locale/sr.js +40 -14
  168. umap/static/umap/locale/sr.json +40 -14
  169. umap/static/umap/locale/sv.js +40 -14
  170. umap/static/umap/locale/sv.json +40 -14
  171. umap/static/umap/locale/th_TH.js +40 -14
  172. umap/static/umap/locale/th_TH.json +40 -14
  173. umap/static/umap/locale/tr.js +40 -14
  174. umap/static/umap/locale/tr.json +40 -14
  175. umap/static/umap/locale/uk_UA.js +40 -14
  176. umap/static/umap/locale/uk_UA.json +40 -14
  177. umap/static/umap/locale/vi.js +40 -14
  178. umap/static/umap/locale/vi.json +40 -14
  179. umap/static/umap/locale/vi_VN.json +40 -14
  180. umap/static/umap/locale/zh.js +40 -14
  181. umap/static/umap/locale/zh.json +40 -14
  182. umap/static/umap/locale/zh_CN.json +40 -14
  183. umap/static/umap/locale/zh_TW.Big5.json +40 -14
  184. umap/static/umap/locale/zh_TW.js +39 -13
  185. umap/static/umap/locale/zh_TW.json +39 -13
  186. umap/static/umap/map.css +60 -223
  187. umap/static/umap/unittests/utils.js +18 -0
  188. umap/static/umap/vars.css +23 -5
  189. umap/templates/umap/components/alerts/alert.html +32 -29
  190. umap/templates/umap/css.html +2 -1
  191. umap/templates/umap/login_popup_end.html +18 -9
  192. umap/templates/umap/user_map_table.html +7 -2
  193. umap/tests/integration/conftest.py +2 -6
  194. umap/tests/integration/test_anonymous_owned_map.py +89 -36
  195. umap/tests/integration/test_basics.py +25 -1
  196. umap/tests/integration/test_browser.py +37 -0
  197. umap/tests/integration/test_draw_polygon.py +2 -0
  198. umap/tests/integration/test_edit_marker.py +1 -1
  199. umap/tests/integration/test_export_map.py +19 -0
  200. umap/tests/integration/test_fields.py +522 -0
  201. umap/tests/integration/test_filters.py +617 -0
  202. umap/tests/integration/test_import.py +15 -42
  203. umap/tests/integration/test_remote_data.py +60 -4
  204. umap/tests/integration/test_share.py +4 -4
  205. umap/tests/integration/test_tableeditor.py +31 -7
  206. umap/tests/integration/test_websocket_sync.py +3 -1
  207. umap/tests/test_dashboard.py +10 -0
  208. umap/urls.py +1 -0
  209. umap/views.py +5 -0
  210. {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/METADATA +12 -12
  211. {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/RECORD +214 -211
  212. umap/static/umap/js/modules/facets.js +0 -164
  213. umap/tests/integration/test_facets_browser.py +0 -279
  214. {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/WHEEL +0 -0
  215. {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/entry_points.txt +0 -0
  216. {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/licenses/LICENSE +0 -0
@@ -9,25 +9,31 @@ body.content {
9
9
 
10
10
 
11
11
  /* Search form */
12
- input::-webkit-input-placeholder, ::-webkit-input-placeholder {
13
- color: #a5a5a5;
12
+ input::-webkit-input-placeholder,
13
+ ::-webkit-input-placeholder {
14
+ color: #a5a5a5;
14
15
  }
15
16
 
16
- input:-moz-placeholder, :-moz-placeholder {
17
- color: #a5a5a5;
17
+ input:-moz-placeholder,
18
+ :-moz-placeholder {
19
+ color: #a5a5a5;
18
20
  }
21
+
19
22
  .search-form {
20
23
  display: flex;
21
24
  align-items: baseline;
22
25
  max-width: 800px;
23
26
  margin: 0 auto;
24
27
  }
28
+
25
29
  .search-form select {
26
30
  max-width: 200px;
27
31
  }
32
+
28
33
  .search-form input[type=submit] {
29
34
  min-width: 200px;
30
35
  }
36
+
31
37
  .flex-break {
32
38
  justify-content: center;
33
39
  }
@@ -37,20 +43,23 @@ input:-moz-placeholder, :-moz-placeholder {
37
43
  /* Login icons */
38
44
  /* **************** */
39
45
  body.login {
40
- width: 320px;
46
+ width: 320px;
41
47
  margin: auto;
42
48
  background-color: var(--color-lighterGray);
43
49
  color: var(--color-darkerGray);
44
50
  }
51
+
45
52
  body.login header {
46
53
  display: flex;
47
54
  }
55
+
48
56
  .login-grid {
49
57
  display: grid;
50
58
  justify-content: space-between;
51
59
  grid-gap: 5px;
52
- grid-template-columns: repeat(auto-fill,92px);
60
+ grid-template-columns: repeat(auto-fill, 92px);
53
61
  }
62
+
54
63
  .login-grid li,
55
64
  .login-grid a {
56
65
  display: inline-block;
@@ -71,47 +80,59 @@ body.login header {
71
80
  .map_fragment {
72
81
  width: 100%;
73
82
  }
83
+
74
84
  .map_fragment,
75
85
  .demo_map .map_fragment {
76
86
  height: var(--map-fragment-height);
77
87
  }
88
+
78
89
  .grid-container hgroup {
79
90
  text-align: left;
80
91
  }
92
+
81
93
  .umap-features-list ul {
82
94
  margin-top: 14px;
83
95
  }
96
+
84
97
  .umap-features-list li {
85
98
  line-height: 21px;
86
99
  }
100
+
87
101
  .umap-features-list li:before {
88
102
  content: "✔";
89
103
  color: #323E56;
90
104
  padding-inline-end: 5px;
91
105
  }
106
+
92
107
  .summary {
93
108
  background-color: #eee;
94
109
  }
110
+
95
111
  .summary .row {
96
112
  margin-top: 0;
97
113
  padding-top: 20px;
98
114
  }
115
+
99
116
  .search_wrapper .row {
100
117
  margin-top: 0;
101
118
  padding-top: 20px;
102
119
  }
120
+
103
121
  .showcase-map {
104
122
  background-color: #fff;
105
123
  padding-bottom: 28px;
106
124
  }
125
+
107
126
  .showcase-map .row {
108
127
  margin-top: 28px;
109
128
  }
129
+
110
130
  h2.section {
111
131
  text-transform: uppercase;
112
132
  color: #666;
113
133
  text-align: center;
114
134
  }
135
+
115
136
  h2.tabs {
116
137
  display: inline-flex;
117
138
  justify-content: left;
@@ -121,6 +142,7 @@ h2.tabs {
121
142
  text-align: start;
122
143
  padding-top: 28px;
123
144
  }
145
+
124
146
  h2.tabs a {
125
147
  color: var(--color-darkBlue);
126
148
  text-decoration: underline;
@@ -129,12 +151,14 @@ h2.tabs a {
129
151
  text-underline-offset: 7px;
130
152
  display: inline-block;
131
153
  }
154
+
132
155
  h2.tabs a:not(.selected) {
133
156
  font-weight: normal;
134
157
  color: var(--color-darkBlue);
135
158
  text-decoration: none;
136
159
  margin-inline-end: 0;
137
160
  }
161
+
138
162
  h2.tabs a:hover {
139
163
  text-decoration: underline;
140
164
  text-decoration-thickness: 3px;
@@ -145,42 +169,51 @@ h2.tabs a:hover {
145
169
  .showcase-map .map_fragment {
146
170
  height: 400px;
147
171
  }
172
+
148
173
  .highlights {
149
174
  text-align: center;
150
175
  margin-bottom: calc(var(--box-margin) * 2);
151
176
  }
177
+
152
178
  .highlights img.colophon {
153
179
  display: inline-block;
154
180
  height: 128px;
155
181
  }
182
+
156
183
  .demo-instance-warning {
157
184
  background-color: #c0392b;
158
185
  color: #efefef;
159
186
  margin-top: 0;
160
187
  padding: var(--gutter);
161
188
  }
189
+
162
190
  .demo-instance-warning .row {
163
191
  margin-top: 0;
164
192
  }
193
+
165
194
  .demo-instance-warning a {
166
195
  color: #efefef;
167
196
  text-decoration: underline;
168
197
  }
198
+
169
199
  .more_button {
170
200
  min-height: var(--map-fragment-height);
171
201
  }
202
+
172
203
  .tag-list {
173
204
  margin-bottom: var(--text-margin);
174
205
  display: flex;
175
206
  flex-wrap: wrap;
176
- gap: calc(var(--gutter) / 2 );
207
+ gap: calc(var(--gutter) / 2);
177
208
  }
209
+
178
210
  .tag-list li {
179
211
  border: 1px solid var(--color-darkBlue);
180
212
  border-radius: 3vmin;
181
213
  display: inline-block;
182
214
  padding: var(--button-padding-small);
183
215
  }
216
+
184
217
  .tag-list li a {
185
218
  color: var(--color-darkBlue);
186
219
  max-width: 125px;
@@ -192,16 +225,19 @@ h2.tabs a:hover {
192
225
  font-size: small;
193
226
  padding: 0 3px;
194
227
  }
228
+
195
229
  .card {
196
- border: 1px solid var(--color-lightGray);
230
+ border: 1px solid var(--color-veryLightGray);
197
231
  border-radius: var(--border-radius);
198
232
  padding: var(--box-padding);
199
233
  display: flex;
200
234
  flex-direction: column;
201
235
  }
236
+
202
237
  .card .button {
203
238
  margin-bottom: 0;
204
239
  }
240
+
205
241
  .card hgroup {
206
242
  display: flex;
207
243
  flex-direction: column;
@@ -211,6 +247,7 @@ h2.tabs a:hover {
211
247
  gap: var(--gutter);
212
248
  margin-top: var(--text-margin);
213
249
  }
250
+
214
251
  .card h3 {
215
252
  margin-bottom: 0;
216
253
  }
@@ -223,13 +260,17 @@ h2.tabs a:hover {
223
260
  background-color: var(--button-primary-background);
224
261
  color: var(--button-primary-color);
225
262
  }
263
+
226
264
  .button-primary {
227
265
  font-weight: bold;
228
266
  }
229
- .wrapper .neutral, .wrapper input[type="submit"].neutral {
267
+
268
+ .wrapper .neutral,
269
+ .wrapper input[type="submit"].neutral {
230
270
  background-color: var(--button-neutral-background);
231
271
  color: var(--button-neutral-color);
232
272
  }
273
+
233
274
  .wrapper .button,
234
275
  .wrapper input {
235
276
  font-weight: bold;
@@ -244,17 +285,21 @@ h2.tabs a:hover {
244
285
  margin-right: auto;
245
286
  margin-top: 100px;
246
287
  }
288
+
247
289
  .content-40x a {
248
290
  color: #3A4259;
249
291
  }
292
+
250
293
  .content-40x h1 {
251
294
  font-size: 2em;
252
295
  margin-bottom: 0;
253
296
  margin-top: 40px;
254
297
  }
298
+
255
299
  .content-404 img {
256
300
  width: 32%;
257
301
  }
302
+
258
303
  .page-40x {
259
304
  background-image: url('./img/logo_lightcyan.svg');
260
305
  background-repeat: no-repeat;
@@ -263,6 +308,7 @@ h2.tabs a:hover {
263
308
  height: 75vh;
264
309
  margin: 1rem;
265
310
  }
311
+
266
312
  .page-40x a {
267
313
  text-decoration: underline;
268
314
  }
@@ -277,19 +323,23 @@ ul.umap-autocomplete {
277
323
  z-index: var(--zindex-autocomplete);
278
324
  box-shadow: 0 4px 9px #999999;
279
325
  }
326
+
280
327
  .umap-autocomplete li {
281
328
  height: 56px;
282
329
  line-height: 28px;
283
330
  padding: 14px;
284
331
  }
332
+
285
333
  .umap-autocomplete li.on {
286
334
  background-color: SeaGreen;
287
335
  cursor: pointer;
288
336
  }
337
+
289
338
  .umap-singleresult {
290
339
  margin-bottom: 10px;
291
340
  clear: both;
292
341
  }
342
+
293
343
  .umap-singleresult div,
294
344
  .umap-multiresult li {
295
345
  width: 100%;
@@ -300,6 +350,7 @@ ul.umap-autocomplete {
300
350
  color: #eeeeec;
301
351
  margin-bottom: 7px;
302
352
  }
353
+
303
354
  .umap-singleresult div .close,
304
355
  .umap-multiresult li .close {
305
356
  float: inline-end;
@@ -334,29 +385,31 @@ ul.umap-autocomplete {
334
385
  /* **************************** */
335
386
  /* https://kittygiraudel.com/2020/12/03/a11y-advent-hiding-content/ */
336
387
  .sr-only {
337
- border: 0 !important;
338
- clip: rect(1px, 1px, 1px, 1px) !important;
339
- -webkit-clip-path: inset(50%) !important;
340
- clip-path: inset(50%) !important;
341
- height: 1px !important;
342
- overflow: hidden !important;
343
- margin: -1px !important;
344
- padding: 0 !important;
345
- position: absolute !important;
346
- width: 1px !important;
347
- white-space: nowrap !important;
388
+ border: 0 !important;
389
+ clip: rect(1px, 1px, 1px, 1px) !important;
390
+ -webkit-clip-path: inset(50%) !important;
391
+ clip-path: inset(50%) !important;
392
+ height: 1px !important;
393
+ overflow: hidden !important;
394
+ margin: -1px !important;
395
+ padding: 0 !important;
396
+ position: absolute !important;
397
+ width: 1px !important;
398
+ white-space: nowrap !important;
348
399
  }
400
+
349
401
  /* https://kittygiraudel.com/2020/12/06/a11y-advent-skip-to-content/ */
350
402
  .sr-only.sr-only--focusable:focus,
351
403
  .sr-only.sr-only--focusable:active {
352
- clip: auto !important;
353
- -webkit-clip-path: auto !important;
354
- clip-path: auto !important;
355
- height: auto !important;
356
- overflow: visible !important;
357
- width: auto !important;
358
- white-space: normal !important;
404
+ clip: auto !important;
405
+ -webkit-clip-path: auto !important;
406
+ clip-path: auto !important;
407
+ height: auto !important;
408
+ overflow: visible !important;
409
+ width: auto !important;
410
+ white-space: normal !important;
359
411
  }
412
+
360
413
  .icon-dashboard {
361
414
  display: inline-block;
362
415
  height: 36px;
@@ -364,35 +417,45 @@ ul.umap-autocomplete {
364
417
  margin: 3px;
365
418
  background-position: initial;
366
419
  }
420
+
367
421
  .content .icon-view {
368
422
  background-image: url('./img/icon-view.svg');
369
423
  }
424
+
370
425
  .content .icon-share {
371
426
  background-image: url('./img/icon-share.svg');
372
427
  }
428
+
373
429
  .content .icon-edit {
374
430
  background-image: url('./img/icon-edit.svg');
375
431
  }
432
+
376
433
  .content .icon-download {
377
434
  background-image: url('./img/icon-download.svg');
378
435
  }
436
+
379
437
  .content .icon-duplicate {
380
438
  background-image: url('./img/icon-duplicate.svg');
381
439
  }
440
+
382
441
  .content .icon-delete {
383
442
  background-image: url('./img/icon-delete.svg');
384
443
  }
444
+
385
445
  html[dir="rtl"] .content .icon-edit,
386
446
  html[dir="rtl"] .content .icon-share,
387
447
  html[dir="rtl"] .content .icon-delete {
388
- background-position: initial; /* this takes precedence over similar selector in icon.css and fixes position */
448
+ background-position: initial;
449
+ /* this takes precedence over similar selector in icon.css and fixes position */
389
450
  }
451
+
390
452
  .table-header {
391
453
  display: flex;
392
454
  justify-content: space-between;
393
455
  align-items: flex-end;
394
456
  margin-bottom: 1rem;
395
457
  }
458
+
396
459
  @media all and (max-width: 640px) {
397
460
  .table-header {
398
461
  flex-direction: column;
@@ -400,16 +463,19 @@ html[dir="rtl"] .content .icon-delete {
400
463
  gap: 1rem;
401
464
  }
402
465
  }
466
+
403
467
  .table-header form {
404
468
  display: flex;
405
469
  align-items: flex-end;
406
470
  }
471
+
407
472
  @media all and (max-width: 640px) {
408
473
  .table-header form {
409
474
  flex-direction: column;
410
475
  align-items: center;
411
476
  }
412
477
  }
478
+
413
479
  .table-header form input[type="search"] {
414
480
  width: 30ch;
415
481
  }
@@ -426,19 +492,23 @@ html[dir="rtl"] .content .icon-delete {
426
492
  line-height: 24px;
427
493
  height: 40px;
428
494
  }
495
+
429
496
  .table-wrapper {
430
497
  overflow-x: scroll;
431
498
  }
499
+
432
500
  .table-wrapper table {
433
501
  width: 100%;
434
502
  min-width: 600px;
435
503
  border-collapse: collapse;
436
504
  }
505
+
437
506
  .table-wrapper table .map_fragment {
438
507
  display: block;
439
508
  height: 80vh;
440
509
  width: 100%;
441
510
  }
511
+
442
512
  .table-wrapper table a,
443
513
  .table-wrapper table thead tr th,
444
514
  .table-wrapper table th[scope="row"] {
@@ -446,10 +516,12 @@ html[dir="rtl"] .content .icon-delete {
446
516
  text-align: start;
447
517
  padding-inline-start: 2px;
448
518
  }
519
+
449
520
  .table-wrapper table thead tr th {
450
521
  line-height: 1.2;
451
522
  padding: 10px 5px;
452
523
  }
524
+
453
525
  .table-wrapper table thead th:last-of-type {
454
526
  min-width: 240px;
455
527
  }
@@ -457,14 +529,17 @@ html[dir="rtl"] .content .icon-delete {
457
529
  .table-wrapper table a:not(.icon-link) {
458
530
  text-decoration: underline;
459
531
  }
532
+
460
533
  .table-wrapper table button.map-icon {
461
534
  padding: 0;
462
535
  border: none;
463
536
  background: transparent;
464
537
  }
538
+
465
539
  .table-wrapper table form {
466
540
  display: inline;
467
541
  }
542
+
468
543
  .table-wrapper table input[type="submit"] {
469
544
  display: inline;
470
545
  background-color: transparent;
@@ -475,24 +550,30 @@ html[dir="rtl"] .content .icon-delete {
475
550
  margin: 0;
476
551
  line-height: inherit;
477
552
  }
553
+
478
554
  .table-wrapper table tbody tr {
479
555
  border-bottom: 1px solid #BDC7D4;
480
556
  }
557
+
481
558
  .table-wrapper table tbody tr td {
482
559
  padding: 5px 4px;
483
560
  }
561
+
484
562
  .table-wrapper table tbody tr:nth-child(odd) {
485
563
  background-color: #f4f4f4;
486
564
  }
565
+
487
566
  .table-wrapper table thead tr {
488
567
  line-height: 2em;
489
568
  }
569
+
490
570
  .table-wrapper table .button {
491
571
  margin-bottom: 2px;
492
- padding:4px 6px;
572
+ padding: 4px 6px;
493
573
  height: 36px;
494
574
  line-height: 26px;
495
575
  }
576
+
496
577
  .table-wrapper table button {
497
578
  cursor: pointer;
498
579
  }
@@ -504,10 +585,12 @@ dialog {
504
585
  width: 90vw;
505
586
  height: 90vh;
506
587
  }
588
+
507
589
  dialog::backdrop {
508
590
  background: #fff5;
509
591
  backdrop-filter: blur(4px);
510
592
  }
593
+
511
594
  .close-dialog {
512
595
  text-align: center;
513
596
  margin-bottom: 0;
@@ -522,9 +605,11 @@ dialog::backdrop {
522
605
  justify-content: space-around;
523
606
  margin-bottom: 3rem;
524
607
  }
525
- .pagination > * {
608
+
609
+ .pagination>* {
526
610
  padding: 1rem;
527
611
  }
612
+
528
613
  .pagination a {
529
614
  color: var(--color-darkBlue);
530
615
  text-decoration: underline;
@@ -539,40 +624,51 @@ dialog::backdrop {
539
624
  padding-left: 5px;
540
625
  padding-right: 5px;
541
626
  }
627
+
542
628
  .twide {
543
629
  width: 100%;
544
- padding-inline-start: 0!important;
630
+ padding-inline-start: 0 !important;
545
631
  }
632
+
546
633
  .tthird {
547
634
  width: 33.3333%;
548
635
  }
636
+
549
637
  .ttwo-third {
550
638
  width: 66.6666%;
551
639
  }
640
+
552
641
  .tshow {
553
642
  display: inherit;
554
643
  }
644
+
555
645
  .thide {
556
646
  display: none;
557
647
  }
558
648
  }
649
+
559
650
  @media only screen and (max-width: 639px) {
560
651
  .mwide {
561
- padding-inline-start: 0!important;
652
+ padding-inline-start: 0 !important;
562
653
  width: 100%;
563
654
  }
564
- .mwide + .mwide {
655
+
656
+ .mwide+.mwide {
565
657
  margin-top: 20px;
566
658
  }
659
+
567
660
  .mthird {
568
661
  width: 33.3333%;
569
662
  }
663
+
570
664
  .mshow {
571
665
  display: inherit;
572
666
  }
667
+
573
668
  .mhide {
574
669
  display: none;
575
670
  }
671
+
576
672
  .flex-break {
577
673
  flex-direction: column;
578
674
  align-items: center;