mapshaper 0.7.8 → 0.7.10

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/www/page.css CHANGED
@@ -253,6 +253,10 @@ body.map-view {
253
253
  z-index: 50;
254
254
  }
255
255
 
256
+ .history-menu-dropdown {
257
+ pointer-events: none;
258
+ }
259
+
256
260
  .header-menu-item {
257
261
  display: block;
258
262
  padding: 4px 14px;
@@ -261,6 +265,7 @@ body.map-view {
261
265
  line-height: 1.3;
262
266
  text-decoration: none;
263
267
  white-space: nowrap;
268
+ cursor: pointer;
264
269
  }
265
270
 
266
271
  .header-menu-item:hover,
@@ -270,6 +275,51 @@ body.map-view {
270
275
  outline: none;
271
276
  }
272
277
 
278
+ .header-menu-item.disabled {
279
+ color: #999;
280
+ pointer-events: none;
281
+ }
282
+
283
+ .history-menu-dropdown .info-box {
284
+ pointer-events: initial;
285
+ min-width: 230px;
286
+ }
287
+
288
+ .history-menu-item {
289
+ color: #333;
290
+ cursor: pointer;
291
+ padding: 2px 0;
292
+ white-space: nowrap;
293
+ }
294
+
295
+ .history-menu-item:hover,
296
+ .history-menu-item:focus {
297
+ color: #1A6A96;
298
+ outline: none;
299
+ }
300
+
301
+ .history-menu-item.disabled {
302
+ color: #999;
303
+ cursor: default;
304
+ opacity: 0.55;
305
+ pointer-events: none;
306
+ }
307
+
308
+ .history-menu-separator {
309
+ height: 1px;
310
+ background-color: #ddd;
311
+ margin: 6px 0 5px 0;
312
+ }
313
+
314
+ .history-menu-note {
315
+ color: #777;
316
+ font-size: 12px;
317
+ line-height: 1.25;
318
+ max-width: 215px;
319
+ padding: 0 0 5px 0;
320
+ white-space: normal;
321
+ }
322
+
273
323
  .header-menu-item.header-menu-sponsor svg {
274
324
  width: 12px;
275
325
  height: 12px;
@@ -763,6 +813,28 @@ body.console-open .map-area {
763
813
  display: none;
764
814
  }
765
815
 
816
+ .console-tab {
817
+ position: absolute;
818
+ top: 55px; /* below line intersection repair link */
819
+ left: 0;
820
+ z-index: 25;
821
+ writing-mode: vertical-rl;
822
+ transform: rotate(180deg);
823
+ background-color: #1385B7;
824
+ color: white;
825
+ padding: 9px 4px;
826
+ border-radius: 5px 0 0 5px;
827
+ font-size: 13px;
828
+ font-weight: 500;
829
+ cursor: pointer;
830
+ pointer-events: auto;
831
+ }
832
+
833
+ .console-tab:hover,
834
+ body.console-open .console-tab {
835
+ background-color: #1A6A96;
836
+ }
837
+
766
838
  .console-window {
767
839
  pointer-events: auto;
768
840
  background-color: black;
@@ -1370,6 +1442,7 @@ img.close-btn:hover,
1370
1442
  overflow: hidden;
1371
1443
  overflow-y: auto;
1372
1444
  margin: 0 -4px 6px -4px;
1445
+ user-select: text;
1373
1446
  }
1374
1447
 
1375
1448
  .message-item {