umap-project 3.3.2__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 +64 -53
- 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 +89 -63
- umap/static/umap/js/modules/data/fields.js +446 -0
- umap/static/umap/js/modules/data/layer.js +116 -196
- 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 -1
- 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 +3 -3
- umap/static/umap/js/modules/rendering/layers/classified.js +18 -11
- umap/static/umap/js/modules/rendering/layers/cluster.js +23 -11
- umap/static/umap/js/modules/rendering/layers/heat.js +27 -21
- umap/static/umap/js/modules/rendering/map.js +1 -0
- umap/static/umap/js/modules/rendering/template.js +50 -23
- umap/static/umap/js/modules/rendering/ui.js +33 -25
- 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 +158 -51
- 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 +102 -67
- umap/static/umap/locale/de.json +102 -67
- umap/static/umap/locale/el.js +52 -17
- umap/static/umap/locale/el.json +52 -17
- umap/static/umap/locale/en.js +54 -16
- umap/static/umap/locale/en.json +54 -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 +54 -17
- umap/static/umap/locale/fr.json +54 -17
- 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 +53 -17
- umap/static/umap/locale/zh_TW.json +53 -17
- 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_cluster.py +110 -0
- umap/tests/integration/test_conditional_rules.py +107 -52
- umap/tests/integration/test_datalayer.py +9 -16
- 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 +12 -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.2.dist-info → umap_project-3.4.0.dist-info}/METADATA +15 -15
- {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/RECORD +240 -236
- umap/static/umap/js/modules/facets.js +0 -164
- umap/tests/integration/test_facets_browser.py +0 -279
- {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/WHEEL +0 -0
- {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/base.css
CHANGED
|
@@ -1,34 +1,55 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* Generic
|
|
3
3
|
*/
|
|
4
|
-
body,
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
body,
|
|
5
|
+
div,
|
|
6
|
+
ul,
|
|
7
|
+
ol,
|
|
8
|
+
li,
|
|
9
|
+
a,
|
|
10
|
+
section,
|
|
11
|
+
nav,
|
|
12
|
+
h1,
|
|
13
|
+
h2,
|
|
14
|
+
h3,
|
|
15
|
+
h4,
|
|
16
|
+
h5,
|
|
17
|
+
h6,
|
|
18
|
+
label,
|
|
19
|
+
fieldset,
|
|
20
|
+
hr,
|
|
21
|
+
input,
|
|
22
|
+
textarea,
|
|
23
|
+
summary,
|
|
24
|
+
details,
|
|
25
|
+
select,
|
|
26
|
+
button {
|
|
7
27
|
box-sizing: border-box;
|
|
8
28
|
margin: 0;
|
|
9
29
|
padding: 0;
|
|
10
30
|
font-family: "fira_sans", -apple-system, BlinkMacSystemFont,
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
}
|
|
14
|
-
body, div, ul, ol, li, a, section, nav,
|
|
15
|
-
h1, h2, h3, h4, h5, h6, label, hr {
|
|
16
|
-
padding: 0;
|
|
31
|
+
"Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell",
|
|
32
|
+
"Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
|
17
33
|
}
|
|
34
|
+
|
|
18
35
|
a {
|
|
19
36
|
text-decoration: none;
|
|
20
37
|
color: var(--link-color);
|
|
21
38
|
}
|
|
39
|
+
|
|
22
40
|
a.main {
|
|
23
41
|
font-weight: bold;
|
|
24
42
|
text-decoration: underline;
|
|
25
43
|
}
|
|
44
|
+
|
|
26
45
|
a[href^="http"]:not(nav.umap-nav a) {
|
|
27
46
|
text-decoration: underline;
|
|
28
47
|
}
|
|
48
|
+
|
|
29
49
|
button {
|
|
30
50
|
cursor: pointer;
|
|
31
51
|
}
|
|
52
|
+
|
|
32
53
|
hr {
|
|
33
54
|
clear: both;
|
|
34
55
|
width: 100%;
|
|
@@ -39,50 +60,64 @@ hr {
|
|
|
39
60
|
-moz-border-left-colors: none;
|
|
40
61
|
-moz-border-right-colors: none;
|
|
41
62
|
-moz-border-top-colors: none;
|
|
42
|
-
border-color: var(--color-
|
|
63
|
+
border-color: var(--color-veryLightGray);
|
|
43
64
|
border-image: none;
|
|
44
65
|
border-style: solid;
|
|
45
66
|
border-width: 1px 0 0;
|
|
46
67
|
}
|
|
47
|
-
|
|
68
|
+
|
|
69
|
+
h1,
|
|
70
|
+
h2 {
|
|
48
71
|
margin-bottom: 28px;
|
|
49
72
|
}
|
|
50
|
-
|
|
73
|
+
|
|
74
|
+
h3,
|
|
75
|
+
h4,
|
|
76
|
+
h5 {
|
|
51
77
|
margin-bottom: 14px;
|
|
52
78
|
}
|
|
79
|
+
|
|
53
80
|
p {
|
|
54
81
|
line-height: 1.4;
|
|
55
82
|
margin-top: 14px;
|
|
56
83
|
margin-bottom: 14px;
|
|
57
84
|
}
|
|
85
|
+
|
|
58
86
|
kbd {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
87
|
+
border: 1px solid #b4b4b4;
|
|
88
|
+
box-shadow:
|
|
89
|
+
0 1px 1px rgba(0, 0, 0, 0.2),
|
|
90
|
+
0 2px 0 0 rgba(255, 255, 255, 0.7) inset;
|
|
91
|
+
border-radius: 3px;
|
|
92
|
+
padding: 1px 4px;
|
|
93
|
+
display: inline-block;
|
|
94
|
+
white-space: nowrap;
|
|
67
95
|
}
|
|
96
|
+
|
|
68
97
|
h3 {
|
|
69
98
|
font-size: 1rem;
|
|
70
99
|
}
|
|
100
|
+
|
|
71
101
|
h4 {
|
|
72
102
|
font-size: 0.9rem;
|
|
73
103
|
}
|
|
104
|
+
|
|
74
105
|
h5 {
|
|
75
106
|
font-size: 0.8rem;
|
|
76
107
|
}
|
|
108
|
+
|
|
77
109
|
h6 {
|
|
78
110
|
font-size: 0.7rem;
|
|
79
111
|
}
|
|
80
|
-
|
|
112
|
+
|
|
113
|
+
hgroup>* {
|
|
81
114
|
margin-bottom: 0;
|
|
82
115
|
}
|
|
116
|
+
|
|
83
117
|
hgroup {
|
|
84
118
|
margin-bottom: var(--box-margin);
|
|
85
119
|
}
|
|
120
|
+
|
|
86
121
|
hgroup p,
|
|
87
122
|
hgroup button {
|
|
88
123
|
margin: 0;
|
|
@@ -92,13 +127,15 @@ hgroup button {
|
|
|
92
127
|
* List
|
|
93
128
|
*/
|
|
94
129
|
ul {
|
|
95
|
-
list-style-image:none;
|
|
96
|
-
list-style-position:inside;
|
|
97
|
-
list-style-type:none;
|
|
130
|
+
list-style-image: none;
|
|
131
|
+
list-style-position: inside;
|
|
132
|
+
list-style-type: none;
|
|
98
133
|
}
|
|
134
|
+
|
|
99
135
|
dt {
|
|
100
136
|
font-weight: bold;
|
|
101
137
|
}
|
|
138
|
+
|
|
102
139
|
dd {
|
|
103
140
|
margin: 0;
|
|
104
141
|
}
|
|
@@ -110,6 +147,7 @@ dd {
|
|
|
110
147
|
width: 100%;
|
|
111
148
|
clear: both;
|
|
112
149
|
}
|
|
150
|
+
|
|
113
151
|
.wrapper:after {
|
|
114
152
|
visibility: hidden;
|
|
115
153
|
display: block;
|
|
@@ -118,6 +156,7 @@ dd {
|
|
|
118
156
|
clear: both;
|
|
119
157
|
height: 0;
|
|
120
158
|
}
|
|
159
|
+
|
|
121
160
|
.row {
|
|
122
161
|
width: 100%;
|
|
123
162
|
max-width: 1200px;
|
|
@@ -127,41 +166,54 @@ dd {
|
|
|
127
166
|
margin-top: 0;
|
|
128
167
|
margin-bottom: 2rem;
|
|
129
168
|
}
|
|
169
|
+
|
|
130
170
|
.col {
|
|
131
171
|
float: inline-start;
|
|
132
172
|
}
|
|
173
|
+
|
|
133
174
|
.right {
|
|
134
175
|
float: right;
|
|
135
176
|
}
|
|
136
|
-
|
|
177
|
+
|
|
178
|
+
.col+.col {
|
|
137
179
|
padding-inline-start: 20px;
|
|
138
180
|
}
|
|
181
|
+
|
|
139
182
|
.half {
|
|
140
183
|
width: 50%;
|
|
141
184
|
}
|
|
185
|
+
|
|
142
186
|
.third {
|
|
143
187
|
width: 33.33%;
|
|
144
188
|
}
|
|
189
|
+
|
|
145
190
|
.two-third {
|
|
146
191
|
width: 66.66%
|
|
147
192
|
}
|
|
193
|
+
|
|
148
194
|
.quarter {
|
|
149
195
|
width: 25%;
|
|
150
196
|
}
|
|
197
|
+
|
|
151
198
|
.wide {
|
|
152
199
|
width: 100%;
|
|
153
200
|
}
|
|
154
|
-
|
|
201
|
+
|
|
202
|
+
.col+.wide {
|
|
155
203
|
padding-inline-start: inherit;
|
|
156
204
|
}
|
|
157
|
-
|
|
205
|
+
|
|
206
|
+
.mshow,
|
|
207
|
+
.tshow {
|
|
158
208
|
display: none;
|
|
159
209
|
}
|
|
210
|
+
|
|
160
211
|
.center {
|
|
161
212
|
margin-left: auto;
|
|
162
213
|
margin-right: auto;
|
|
163
214
|
float: none;
|
|
164
215
|
}
|
|
216
|
+
|
|
165
217
|
.grid-container {
|
|
166
218
|
display: grid;
|
|
167
219
|
--grid-layout-gap: calc(var(--gutter) * 2);
|
|
@@ -178,11 +230,13 @@ dd {
|
|
|
178
230
|
grid-template-columns: repeat(auto-fill, minmax(max(var(--grid-item--min-width), var(--grid-item--max-width)), 1fr));
|
|
179
231
|
grid-gap: var(--grid-layout-gap);
|
|
180
232
|
}
|
|
233
|
+
|
|
181
234
|
.grid-container.by4 {
|
|
182
235
|
--grid-column-count: 4;
|
|
183
236
|
--grid-item--min-width: 60px;
|
|
184
237
|
}
|
|
185
|
-
|
|
238
|
+
|
|
239
|
+
.grid-container>* {
|
|
186
240
|
text-align: center;
|
|
187
241
|
}
|
|
188
242
|
|
|
@@ -193,6 +247,7 @@ dd {
|
|
|
193
247
|
.leaflet-ui-container {
|
|
194
248
|
overflow-x: hidden;
|
|
195
249
|
}
|
|
250
|
+
|
|
196
251
|
.leaflet-top,
|
|
197
252
|
.leaflet-right {
|
|
198
253
|
transition: all .7s;
|
|
@@ -213,7 +268,7 @@ dd {
|
|
|
213
268
|
}
|
|
214
269
|
|
|
215
270
|
.umap-dragover:before {
|
|
216
|
-
content:
|
|
271
|
+
content: ' ';
|
|
217
272
|
background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="arcs">%3Cpath d="M3 15v4c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2v-4M17 9l-5 5-5-5M12 12.8V2.5"/>%3C/svg>');
|
|
218
273
|
background-repeat: no-repeat;
|
|
219
274
|
background-position: center;
|
|
@@ -225,11 +280,12 @@ dd {
|
|
|
225
280
|
height: 100vh;
|
|
226
281
|
opacity: 0.5;
|
|
227
282
|
}
|
|
283
|
+
|
|
228
284
|
.table-scrollable {
|
|
229
285
|
background-image: linear-gradient(to right, var(--background-color), var(--background-color)),
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
286
|
+
linear-gradient(to right, var(--background-color), var(--background-color)),
|
|
287
|
+
linear-gradient(to right, rgba(0, 0, 20, .50), rgba(255, 255, 255, 0)),
|
|
288
|
+
linear-gradient(to left, rgba(0, 0, 20, .50), rgba(255, 255, 255, 0));
|
|
233
289
|
background-position: left center, right center, left center, right center;
|
|
234
290
|
background-repeat: no-repeat;
|
|
235
291
|
background-size: 20px 100%, 20px 100%, 10px 100%, 10px 100%;
|
|
@@ -237,6 +293,7 @@ dd {
|
|
|
237
293
|
display: block;
|
|
238
294
|
overflow-x: auto;
|
|
239
295
|
}
|
|
296
|
+
|
|
240
297
|
mark {
|
|
241
298
|
background-color: var(--color-lightCyan);
|
|
242
299
|
padding: 0 var(--small-box-padding);
|