umap-project 3.3.6__py3-none-any.whl → 3.4.0__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.
- umap/__init__.py +1 -1
- umap/context_processors.py +4 -1
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +43 -33
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +43 -33
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +35 -29
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +35 -29
- umap/locale/en/LC_MESSAGES/django.po +47 -41
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +43 -33
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +58 -54
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +43 -33
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +43 -33
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +36 -30
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +43 -33
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +35 -29
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +43 -33
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +43 -33
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +35 -29
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +114 -103
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +43 -33
- umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- umap/locale/th_TH/LC_MESSAGES/django.po +310 -109
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +80 -70
- umap/management/commands/switch_user.py +2 -2
- umap/migrations/0018_datalayer_uuid.py +1 -1
- umap/models.py +7 -3
- umap/settings/local.py.sample +1 -1
- umap/static/umap/base.css +89 -32
- umap/static/umap/content.css +129 -33
- umap/static/umap/css/bar.css +82 -20
- umap/static/umap/css/browser.css +163 -0
- umap/static/umap/css/contextmenu.css +15 -0
- umap/static/umap/css/dialog.css +36 -16
- umap/static/umap/css/form.css +123 -33
- umap/static/umap/css/icon.css +46 -3
- umap/static/umap/css/panel.css +7 -3
- umap/static/umap/css/popup.css +34 -8
- umap/static/umap/css/tooltip.css +8 -4
- umap/static/umap/img/16-white.svg +26 -8
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/source/16-white.svg +36 -18
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/js/components/alerts/alert.css +69 -31
- umap/static/umap/js/components/alerts/alert.js +20 -2
- umap/static/umap/js/components/base.js +1 -1
- umap/static/umap/js/modules/browser.js +69 -61
- umap/static/umap/js/modules/caption.js +10 -7
- umap/static/umap/js/modules/data/features.js +85 -60
- umap/static/umap/js/modules/data/fields.js +446 -0
- umap/static/umap/js/modules/data/layer.js +78 -184
- umap/static/umap/js/modules/domutils.js +109 -0
- umap/static/umap/js/modules/filters.js +780 -0
- umap/static/umap/js/modules/form/builder.js +8 -5
- umap/static/umap/js/modules/form/fields.js +111 -221
- umap/static/umap/js/modules/formatter.js +24 -1
- umap/static/umap/js/modules/help.js +4 -3
- umap/static/umap/js/modules/i18n.js +1 -1
- umap/static/umap/js/modules/importer.js +1 -1
- umap/static/umap/js/modules/importers/opendata.js +15 -0
- umap/static/umap/js/modules/importers/openrouteservice.js +6 -1
- umap/static/umap/js/modules/managers.js +2 -2
- umap/static/umap/js/modules/permissions.js +39 -31
- umap/static/umap/js/modules/rendering/controls.js +11 -9
- umap/static/umap/js/modules/rendering/icon.js +3 -8
- umap/static/umap/js/modules/rendering/layers/base.js +1 -1
- umap/static/umap/js/modules/rendering/layers/classified.js +18 -11
- umap/static/umap/js/modules/rendering/layers/cluster.js +5 -3
- umap/static/umap/js/modules/rendering/layers/heat.js +27 -21
- umap/static/umap/js/modules/rendering/template.js +50 -23
- umap/static/umap/js/modules/rendering/ui.js +29 -23
- umap/static/umap/js/modules/rules.js +38 -44
- umap/static/umap/js/modules/schema.js +3 -6
- umap/static/umap/js/modules/share.js +5 -4
- umap/static/umap/js/modules/tableeditor.js +50 -38
- umap/static/umap/js/modules/templates.js +2 -3
- umap/static/umap/js/modules/ui/bar.js +55 -23
- umap/static/umap/js/modules/ui/dialog.js +38 -27
- umap/static/umap/js/modules/ui/panel.js +23 -8
- umap/static/umap/js/modules/ui/tooltip.js +6 -5
- umap/static/umap/js/modules/umap.js +151 -56
- umap/static/umap/js/modules/utils.js +24 -2
- umap/static/umap/js/umap.core.js +1 -110
- umap/static/umap/locale/am_ET.js +52 -17
- umap/static/umap/locale/am_ET.json +52 -17
- umap/static/umap/locale/ar.js +52 -17
- umap/static/umap/locale/ar.json +52 -17
- umap/static/umap/locale/ast.js +52 -17
- umap/static/umap/locale/ast.json +52 -17
- umap/static/umap/locale/bg.js +52 -17
- umap/static/umap/locale/bg.json +52 -17
- umap/static/umap/locale/br.js +48 -22
- umap/static/umap/locale/br.json +48 -22
- umap/static/umap/locale/ca.js +52 -17
- umap/static/umap/locale/ca.json +52 -17
- umap/static/umap/locale/cs_CZ.js +52 -17
- umap/static/umap/locale/cs_CZ.json +52 -17
- umap/static/umap/locale/da.js +54 -17
- umap/static/umap/locale/da.json +54 -17
- umap/static/umap/locale/de.js +51 -16
- umap/static/umap/locale/de.json +51 -16
- umap/static/umap/locale/el.js +52 -17
- umap/static/umap/locale/el.json +52 -17
- umap/static/umap/locale/en.js +53 -16
- umap/static/umap/locale/en.json +53 -16
- umap/static/umap/locale/en_US.json +52 -17
- umap/static/umap/locale/es.js +54 -17
- umap/static/umap/locale/es.json +54 -17
- umap/static/umap/locale/et.js +91 -56
- umap/static/umap/locale/et.json +91 -56
- umap/static/umap/locale/eu.js +84 -49
- umap/static/umap/locale/eu.json +84 -49
- umap/static/umap/locale/fa_IR.js +52 -17
- umap/static/umap/locale/fa_IR.json +52 -17
- umap/static/umap/locale/fi.js +52 -17
- umap/static/umap/locale/fi.json +52 -17
- umap/static/umap/locale/fr.js +53 -16
- umap/static/umap/locale/fr.json +53 -16
- umap/static/umap/locale/gl.js +52 -17
- umap/static/umap/locale/gl.json +52 -17
- umap/static/umap/locale/he.js +52 -17
- umap/static/umap/locale/he.json +52 -17
- umap/static/umap/locale/hr.js +52 -17
- umap/static/umap/locale/hr.json +52 -17
- umap/static/umap/locale/hu.js +59 -24
- umap/static/umap/locale/hu.json +59 -24
- umap/static/umap/locale/id.js +52 -17
- umap/static/umap/locale/id.json +52 -17
- umap/static/umap/locale/is.js +52 -17
- umap/static/umap/locale/is.json +52 -17
- umap/static/umap/locale/it.js +52 -17
- umap/static/umap/locale/it.json +52 -17
- umap/static/umap/locale/ja.js +52 -17
- umap/static/umap/locale/ja.json +52 -17
- umap/static/umap/locale/ko.js +52 -17
- umap/static/umap/locale/ko.json +52 -17
- umap/static/umap/locale/lt.js +52 -17
- umap/static/umap/locale/lt.json +52 -17
- umap/static/umap/locale/ms.js +52 -17
- umap/static/umap/locale/ms.json +52 -17
- umap/static/umap/locale/nl.js +52 -17
- umap/static/umap/locale/nl.json +52 -17
- umap/static/umap/locale/no.js +52 -17
- umap/static/umap/locale/no.json +52 -17
- umap/static/umap/locale/pl.js +53 -17
- umap/static/umap/locale/pl.json +53 -17
- umap/static/umap/locale/pl_PL.json +52 -17
- umap/static/umap/locale/pt.js +52 -17
- umap/static/umap/locale/pt.json +52 -17
- umap/static/umap/locale/pt_BR.js +52 -17
- umap/static/umap/locale/pt_BR.json +52 -17
- umap/static/umap/locale/pt_PT.js +52 -17
- umap/static/umap/locale/pt_PT.json +52 -17
- umap/static/umap/locale/ro.js +52 -17
- umap/static/umap/locale/ro.json +52 -17
- umap/static/umap/locale/ru.js +52 -17
- umap/static/umap/locale/ru.json +52 -17
- umap/static/umap/locale/si.js +1 -1
- umap/static/umap/locale/si.json +1 -1
- umap/static/umap/locale/sk_SK.js +52 -17
- umap/static/umap/locale/sk_SK.json +52 -17
- umap/static/umap/locale/sl.js +52 -17
- umap/static/umap/locale/sl.json +52 -17
- umap/static/umap/locale/sr.js +52 -17
- umap/static/umap/locale/sr.json +52 -17
- umap/static/umap/locale/sv.js +52 -17
- umap/static/umap/locale/sv.json +52 -17
- umap/static/umap/locale/th_TH.js +52 -17
- umap/static/umap/locale/th_TH.json +52 -17
- umap/static/umap/locale/tr.js +52 -17
- umap/static/umap/locale/tr.json +52 -17
- umap/static/umap/locale/uk_UA.js +52 -17
- umap/static/umap/locale/uk_UA.json +52 -17
- umap/static/umap/locale/vi.js +52 -17
- umap/static/umap/locale/vi.json +52 -17
- umap/static/umap/locale/vi_VN.json +52 -17
- umap/static/umap/locale/zh.js +52 -17
- umap/static/umap/locale/zh.json +52 -17
- umap/static/umap/locale/zh_CN.json +52 -17
- umap/static/umap/locale/zh_TW.Big5.json +52 -17
- umap/static/umap/locale/zh_TW.js +52 -16
- umap/static/umap/locale/zh_TW.json +52 -16
- umap/static/umap/map.css +63 -226
- umap/static/umap/unittests/utils.js +18 -0
- umap/static/umap/vars.css +23 -5
- umap/templates/umap/components/alerts/alert.html +32 -29
- umap/templates/umap/css.html +2 -1
- umap/templates/umap/login_popup_end.html +18 -9
- umap/templates/umap/user_map_table.html +7 -2
- umap/tests/integration/conftest.py +10 -6
- umap/tests/integration/test_anonymous_owned_map.py +90 -37
- umap/tests/integration/test_basics.py +25 -1
- umap/tests/integration/test_browser.py +37 -0
- umap/tests/integration/test_conditional_rules.py +107 -52
- umap/tests/integration/test_draw_polygon.py +6 -0
- umap/tests/integration/test_draw_polyline.py +11 -0
- umap/tests/integration/test_edit_marker.py +1 -1
- umap/tests/integration/test_export_map.py +19 -0
- umap/tests/integration/test_fields.py +541 -0
- umap/tests/integration/test_filters.py +616 -0
- umap/tests/integration/test_iframe.py +1 -1
- umap/tests/integration/test_import.py +38 -42
- umap/tests/integration/test_map_preview.py +1 -1
- umap/tests/integration/test_picto.py +1 -1
- umap/tests/integration/test_popup.py +31 -0
- umap/tests/integration/test_remote_data.py +60 -4
- umap/tests/integration/test_save.py +1 -1
- umap/tests/integration/test_share.py +4 -4
- umap/tests/integration/test_tableeditor.py +31 -7
- umap/tests/integration/test_websocket_sync.py +71 -20
- umap/tests/test_dashboard.py +11 -1
- umap/tests/test_statics.py +2 -2
- umap/tests/test_utils.py +19 -2
- umap/tests/test_views.py +1 -1
- umap/urls.py +1 -0
- umap/utils.py +8 -1
- umap/views.py +5 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/METADATA +15 -15
- {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/RECORD +237 -233
- umap/static/umap/js/modules/facets.js +0 -164
- umap/tests/integration/test_facets_browser.py +0 -279
- {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/WHEEL +0 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/content.css
CHANGED
|
@@ -9,25 +9,31 @@ body.content {
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
/* Search form */
|
|
12
|
-
input::-webkit-input-placeholder,
|
|
13
|
-
|
|
12
|
+
input::-webkit-input-placeholder,
|
|
13
|
+
::-webkit-input-placeholder {
|
|
14
|
+
color: #a5a5a5;
|
|
14
15
|
}
|
|
15
16
|
|
|
16
|
-
input:-moz-placeholder,
|
|
17
|
-
|
|
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:
|
|
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-
|
|
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
|
-
|
|
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
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
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
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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;
|