col-browser 2.2.3 → 2.2.5
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.
- package/es/chunks/Distributions-BWucAjsL.js +1153 -0
- package/es/chunks/Distributions-BWucAjsL.js.map +1 -0
- package/es/col-browser.css +1 -1
- package/es/search.js +207 -215
- package/es/search.js.map +1 -1
- package/es/taxon.js +1 -1
- package/es/taxonDistribution.js +1 -1
- package/package.json +1 -1
- package/umd/col-browser.js +147 -136
- package/umd/col-browser.js.map +1 -1
- package/umd/col-browser.min.js +5 -5
- package/umd/col-browser.min.js.map +1 -1
- package/umd/main.css +22 -0
- package/es/chunks/Distributions-CLwWAH98.js +0 -1139
- package/es/chunks/Distributions-CLwWAH98.js.map +0 -1
package/umd/main.css
CHANGED
|
@@ -125,3 +125,25 @@ td.ant-table-cell {
|
|
|
125
125
|
margin-right: -34px;
|
|
126
126
|
}
|
|
127
127
|
}
|
|
128
|
+
|
|
129
|
+
/* Fullscreen: MapLibre's FullscreenControl expands the whole wrapper (so the
|
|
130
|
+
legend and layer control come along). Make the map canvas fill it — its
|
|
131
|
+
inline height:360px would otherwise leave the map a thin strip at the top.
|
|
132
|
+
The prefixed selector is kept in its own rule: a browser that doesn't
|
|
133
|
+
recognise one selector would drop the entire comma-separated list. */
|
|
134
|
+
.col-distributions-map:fullscreen {
|
|
135
|
+
width: 100%;
|
|
136
|
+
height: 100%;
|
|
137
|
+
background: #fff;
|
|
138
|
+
}
|
|
139
|
+
.col-distributions-map:fullscreen .col-distributions-map__canvas {
|
|
140
|
+
height: 100% !important;
|
|
141
|
+
}
|
|
142
|
+
.col-distributions-map:-webkit-full-screen {
|
|
143
|
+
width: 100%;
|
|
144
|
+
height: 100%;
|
|
145
|
+
background: #fff;
|
|
146
|
+
}
|
|
147
|
+
.col-distributions-map:-webkit-full-screen .col-distributions-map__canvas {
|
|
148
|
+
height: 100% !important;
|
|
149
|
+
}
|