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.
Files changed (239) hide show
  1. umap/__init__.py +1 -1
  2. umap/context_processors.py +4 -1
  3. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/cs_CZ/LC_MESSAGES/django.po +43 -33
  5. umap/locale/da/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/da/LC_MESSAGES/django.po +43 -33
  7. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/de/LC_MESSAGES/django.po +35 -29
  9. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/el/LC_MESSAGES/django.po +35 -29
  11. umap/locale/en/LC_MESSAGES/django.po +47 -41
  12. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/es/LC_MESSAGES/django.po +43 -33
  14. umap/locale/et/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/et/LC_MESSAGES/django.po +58 -54
  16. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  17. umap/locale/eu/LC_MESSAGES/django.po +43 -33
  18. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  19. umap/locale/fa_IR/LC_MESSAGES/django.po +43 -33
  20. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  21. umap/locale/fr/LC_MESSAGES/django.po +36 -30
  22. umap/locale/gl/LC_MESSAGES/django.mo +0 -0
  23. umap/locale/gl/LC_MESSAGES/django.po +43 -33
  24. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  25. umap/locale/hu/LC_MESSAGES/django.po +35 -29
  26. umap/locale/is/LC_MESSAGES/django.mo +0 -0
  27. umap/locale/is/LC_MESSAGES/django.po +43 -33
  28. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  29. umap/locale/it/LC_MESSAGES/django.po +43 -33
  30. umap/locale/nl/LC_MESSAGES/django.mo +0 -0
  31. umap/locale/nl/LC_MESSAGES/django.po +35 -29
  32. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  33. umap/locale/pl/LC_MESSAGES/django.po +114 -103
  34. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  35. umap/locale/pt/LC_MESSAGES/django.po +43 -33
  36. umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
  37. umap/locale/th_TH/LC_MESSAGES/django.po +310 -109
  38. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  39. umap/locale/zh_TW/LC_MESSAGES/django.po +80 -70
  40. umap/management/commands/switch_user.py +2 -2
  41. umap/migrations/0018_datalayer_uuid.py +1 -1
  42. umap/models.py +7 -3
  43. umap/settings/local.py.sample +1 -1
  44. umap/static/umap/base.css +89 -32
  45. umap/static/umap/content.css +129 -33
  46. umap/static/umap/css/bar.css +82 -20
  47. umap/static/umap/css/browser.css +163 -0
  48. umap/static/umap/css/contextmenu.css +15 -0
  49. umap/static/umap/css/dialog.css +36 -16
  50. umap/static/umap/css/form.css +123 -33
  51. umap/static/umap/css/icon.css +46 -3
  52. umap/static/umap/css/panel.css +7 -3
  53. umap/static/umap/css/popup.css +34 -8
  54. umap/static/umap/css/tooltip.css +8 -4
  55. umap/static/umap/img/16-white.svg +26 -8
  56. umap/static/umap/img/16.svg +1 -1
  57. umap/static/umap/img/source/16-white.svg +36 -18
  58. umap/static/umap/img/source/16.svg +1 -1
  59. umap/static/umap/js/components/alerts/alert.css +69 -31
  60. umap/static/umap/js/components/alerts/alert.js +20 -2
  61. umap/static/umap/js/components/base.js +1 -1
  62. umap/static/umap/js/modules/browser.js +69 -61
  63. umap/static/umap/js/modules/caption.js +10 -7
  64. umap/static/umap/js/modules/data/features.js +85 -60
  65. umap/static/umap/js/modules/data/fields.js +446 -0
  66. umap/static/umap/js/modules/data/layer.js +78 -184
  67. umap/static/umap/js/modules/domutils.js +109 -0
  68. umap/static/umap/js/modules/filters.js +780 -0
  69. umap/static/umap/js/modules/form/builder.js +8 -5
  70. umap/static/umap/js/modules/form/fields.js +111 -221
  71. umap/static/umap/js/modules/formatter.js +24 -1
  72. umap/static/umap/js/modules/help.js +4 -3
  73. umap/static/umap/js/modules/i18n.js +1 -1
  74. umap/static/umap/js/modules/importer.js +1 -1
  75. umap/static/umap/js/modules/importers/opendata.js +15 -0
  76. umap/static/umap/js/modules/importers/openrouteservice.js +6 -1
  77. umap/static/umap/js/modules/managers.js +2 -2
  78. umap/static/umap/js/modules/permissions.js +39 -31
  79. umap/static/umap/js/modules/rendering/controls.js +11 -9
  80. umap/static/umap/js/modules/rendering/icon.js +3 -8
  81. umap/static/umap/js/modules/rendering/layers/base.js +1 -1
  82. umap/static/umap/js/modules/rendering/layers/classified.js +18 -11
  83. umap/static/umap/js/modules/rendering/layers/cluster.js +5 -3
  84. umap/static/umap/js/modules/rendering/layers/heat.js +27 -21
  85. umap/static/umap/js/modules/rendering/template.js +50 -23
  86. umap/static/umap/js/modules/rendering/ui.js +29 -23
  87. umap/static/umap/js/modules/rules.js +38 -44
  88. umap/static/umap/js/modules/schema.js +3 -6
  89. umap/static/umap/js/modules/share.js +5 -4
  90. umap/static/umap/js/modules/tableeditor.js +50 -38
  91. umap/static/umap/js/modules/templates.js +2 -3
  92. umap/static/umap/js/modules/ui/bar.js +55 -23
  93. umap/static/umap/js/modules/ui/dialog.js +38 -27
  94. umap/static/umap/js/modules/ui/panel.js +23 -8
  95. umap/static/umap/js/modules/ui/tooltip.js +6 -5
  96. umap/static/umap/js/modules/umap.js +151 -56
  97. umap/static/umap/js/modules/utils.js +24 -2
  98. umap/static/umap/js/umap.core.js +1 -110
  99. umap/static/umap/locale/am_ET.js +52 -17
  100. umap/static/umap/locale/am_ET.json +52 -17
  101. umap/static/umap/locale/ar.js +52 -17
  102. umap/static/umap/locale/ar.json +52 -17
  103. umap/static/umap/locale/ast.js +52 -17
  104. umap/static/umap/locale/ast.json +52 -17
  105. umap/static/umap/locale/bg.js +52 -17
  106. umap/static/umap/locale/bg.json +52 -17
  107. umap/static/umap/locale/br.js +48 -22
  108. umap/static/umap/locale/br.json +48 -22
  109. umap/static/umap/locale/ca.js +52 -17
  110. umap/static/umap/locale/ca.json +52 -17
  111. umap/static/umap/locale/cs_CZ.js +52 -17
  112. umap/static/umap/locale/cs_CZ.json +52 -17
  113. umap/static/umap/locale/da.js +54 -17
  114. umap/static/umap/locale/da.json +54 -17
  115. umap/static/umap/locale/de.js +51 -16
  116. umap/static/umap/locale/de.json +51 -16
  117. umap/static/umap/locale/el.js +52 -17
  118. umap/static/umap/locale/el.json +52 -17
  119. umap/static/umap/locale/en.js +53 -16
  120. umap/static/umap/locale/en.json +53 -16
  121. umap/static/umap/locale/en_US.json +52 -17
  122. umap/static/umap/locale/es.js +54 -17
  123. umap/static/umap/locale/es.json +54 -17
  124. umap/static/umap/locale/et.js +91 -56
  125. umap/static/umap/locale/et.json +91 -56
  126. umap/static/umap/locale/eu.js +84 -49
  127. umap/static/umap/locale/eu.json +84 -49
  128. umap/static/umap/locale/fa_IR.js +52 -17
  129. umap/static/umap/locale/fa_IR.json +52 -17
  130. umap/static/umap/locale/fi.js +52 -17
  131. umap/static/umap/locale/fi.json +52 -17
  132. umap/static/umap/locale/fr.js +53 -16
  133. umap/static/umap/locale/fr.json +53 -16
  134. umap/static/umap/locale/gl.js +52 -17
  135. umap/static/umap/locale/gl.json +52 -17
  136. umap/static/umap/locale/he.js +52 -17
  137. umap/static/umap/locale/he.json +52 -17
  138. umap/static/umap/locale/hr.js +52 -17
  139. umap/static/umap/locale/hr.json +52 -17
  140. umap/static/umap/locale/hu.js +59 -24
  141. umap/static/umap/locale/hu.json +59 -24
  142. umap/static/umap/locale/id.js +52 -17
  143. umap/static/umap/locale/id.json +52 -17
  144. umap/static/umap/locale/is.js +52 -17
  145. umap/static/umap/locale/is.json +52 -17
  146. umap/static/umap/locale/it.js +52 -17
  147. umap/static/umap/locale/it.json +52 -17
  148. umap/static/umap/locale/ja.js +52 -17
  149. umap/static/umap/locale/ja.json +52 -17
  150. umap/static/umap/locale/ko.js +52 -17
  151. umap/static/umap/locale/ko.json +52 -17
  152. umap/static/umap/locale/lt.js +52 -17
  153. umap/static/umap/locale/lt.json +52 -17
  154. umap/static/umap/locale/ms.js +52 -17
  155. umap/static/umap/locale/ms.json +52 -17
  156. umap/static/umap/locale/nl.js +52 -17
  157. umap/static/umap/locale/nl.json +52 -17
  158. umap/static/umap/locale/no.js +52 -17
  159. umap/static/umap/locale/no.json +52 -17
  160. umap/static/umap/locale/pl.js +53 -17
  161. umap/static/umap/locale/pl.json +53 -17
  162. umap/static/umap/locale/pl_PL.json +52 -17
  163. umap/static/umap/locale/pt.js +52 -17
  164. umap/static/umap/locale/pt.json +52 -17
  165. umap/static/umap/locale/pt_BR.js +52 -17
  166. umap/static/umap/locale/pt_BR.json +52 -17
  167. umap/static/umap/locale/pt_PT.js +52 -17
  168. umap/static/umap/locale/pt_PT.json +52 -17
  169. umap/static/umap/locale/ro.js +52 -17
  170. umap/static/umap/locale/ro.json +52 -17
  171. umap/static/umap/locale/ru.js +52 -17
  172. umap/static/umap/locale/ru.json +52 -17
  173. umap/static/umap/locale/si.js +1 -1
  174. umap/static/umap/locale/si.json +1 -1
  175. umap/static/umap/locale/sk_SK.js +52 -17
  176. umap/static/umap/locale/sk_SK.json +52 -17
  177. umap/static/umap/locale/sl.js +52 -17
  178. umap/static/umap/locale/sl.json +52 -17
  179. umap/static/umap/locale/sr.js +52 -17
  180. umap/static/umap/locale/sr.json +52 -17
  181. umap/static/umap/locale/sv.js +52 -17
  182. umap/static/umap/locale/sv.json +52 -17
  183. umap/static/umap/locale/th_TH.js +52 -17
  184. umap/static/umap/locale/th_TH.json +52 -17
  185. umap/static/umap/locale/tr.js +52 -17
  186. umap/static/umap/locale/tr.json +52 -17
  187. umap/static/umap/locale/uk_UA.js +52 -17
  188. umap/static/umap/locale/uk_UA.json +52 -17
  189. umap/static/umap/locale/vi.js +52 -17
  190. umap/static/umap/locale/vi.json +52 -17
  191. umap/static/umap/locale/vi_VN.json +52 -17
  192. umap/static/umap/locale/zh.js +52 -17
  193. umap/static/umap/locale/zh.json +52 -17
  194. umap/static/umap/locale/zh_CN.json +52 -17
  195. umap/static/umap/locale/zh_TW.Big5.json +52 -17
  196. umap/static/umap/locale/zh_TW.js +52 -16
  197. umap/static/umap/locale/zh_TW.json +52 -16
  198. umap/static/umap/map.css +63 -226
  199. umap/static/umap/unittests/utils.js +18 -0
  200. umap/static/umap/vars.css +23 -5
  201. umap/templates/umap/components/alerts/alert.html +32 -29
  202. umap/templates/umap/css.html +2 -1
  203. umap/templates/umap/login_popup_end.html +18 -9
  204. umap/templates/umap/user_map_table.html +7 -2
  205. umap/tests/integration/conftest.py +10 -6
  206. umap/tests/integration/test_anonymous_owned_map.py +90 -37
  207. umap/tests/integration/test_basics.py +25 -1
  208. umap/tests/integration/test_browser.py +37 -0
  209. umap/tests/integration/test_conditional_rules.py +107 -52
  210. umap/tests/integration/test_draw_polygon.py +6 -0
  211. umap/tests/integration/test_draw_polyline.py +11 -0
  212. umap/tests/integration/test_edit_marker.py +1 -1
  213. umap/tests/integration/test_export_map.py +19 -0
  214. umap/tests/integration/test_fields.py +541 -0
  215. umap/tests/integration/test_filters.py +616 -0
  216. umap/tests/integration/test_iframe.py +1 -1
  217. umap/tests/integration/test_import.py +38 -42
  218. umap/tests/integration/test_map_preview.py +1 -1
  219. umap/tests/integration/test_picto.py +1 -1
  220. umap/tests/integration/test_popup.py +31 -0
  221. umap/tests/integration/test_remote_data.py +60 -4
  222. umap/tests/integration/test_save.py +1 -1
  223. umap/tests/integration/test_share.py +4 -4
  224. umap/tests/integration/test_tableeditor.py +31 -7
  225. umap/tests/integration/test_websocket_sync.py +71 -20
  226. umap/tests/test_dashboard.py +11 -1
  227. umap/tests/test_statics.py +2 -2
  228. umap/tests/test_utils.py +19 -2
  229. umap/tests/test_views.py +1 -1
  230. umap/urls.py +1 -0
  231. umap/utils.py +8 -1
  232. umap/views.py +5 -0
  233. {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/METADATA +15 -15
  234. {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/RECORD +237 -233
  235. umap/static/umap/js/modules/facets.js +0 -164
  236. umap/tests/integration/test_facets_browser.py +0 -279
  237. {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/WHEEL +0 -0
  238. {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/entry_points.txt +0 -0
  239. {umap_project-3.3.6.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, div, ul, ol, li, a, section, nav,
5
- h1, h2, h3, h4, h5, h6, label,
6
- hr, input, textarea, select, button {
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
- "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell",
12
- "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
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-lightGray);
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
- h1, h2 {
68
+
69
+ h1,
70
+ h2 {
48
71
  margin-bottom: 28px;
49
72
  }
50
- h3, h4, h5 {
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
- border: 1px solid #b4b4b4;
60
- box-shadow:
61
- 0 1px 1px rgba(0, 0, 0, 0.2),
62
- 0 2px 0 0 rgba(255, 255, 255, 0.7) inset;
63
- border-radius: 3px;
64
- padding: 1px 4px;
65
- display: inline-block;
66
- white-space: nowrap;
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
- hgroup > * {
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
- .col + .col {
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
- .col + .wide {
201
+
202
+ .col+.wide {
155
203
  padding-inline-start: inherit;
156
204
  }
157
- .mshow, .tshow {
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
- .grid-container > * {
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
- linear-gradient(to right, var(--background-color), var(--background-color)),
231
- linear-gradient(to right, rgba(0, 0, 20, .50), rgba(255, 255, 255, 0)),
232
- linear-gradient(to left, rgba(0, 0, 20, .50), rgba(255, 255, 255, 0));
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);