gralobe 1.0.14 → 1.0.15
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/dist/gralobe.js +34 -29
- package/dist/gralobe.js.map +1 -1
- package/dist/gralobe.umd.cjs +34 -29
- package/dist/gralobe.umd.cjs.map +1 -1
- package/package.json +1 -1
package/dist/gralobe.js
CHANGED
|
@@ -5312,44 +5312,48 @@ class ho {
|
|
|
5312
5312
|
e.textContent = `
|
|
5313
5313
|
.country-label {
|
|
5314
5314
|
font-family: system-ui, -apple-system, sans-serif;
|
|
5315
|
-
font-weight:
|
|
5316
|
-
color: rgba(255, 255, 255, 0.
|
|
5315
|
+
font-weight: 500;
|
|
5316
|
+
color: rgba(255, 255, 255, 0.9);
|
|
5317
5317
|
text-shadow:
|
|
5318
|
-
0
|
|
5319
|
-
0 0 4px rgba(0, 0, 0, 0.
|
|
5318
|
+
0 1px 2px rgba(0, 0, 0, 1),
|
|
5319
|
+
0 0 4px rgba(0, 0, 0, 0.9),
|
|
5320
|
+
0 0 8px rgba(0, 0, 0, 0.7),
|
|
5321
|
+
0 0 12px rgba(0, 0, 0, 0.5);
|
|
5320
5322
|
white-space: nowrap;
|
|
5321
5323
|
pointer-events: none;
|
|
5322
5324
|
user-select: none;
|
|
5323
5325
|
transform: translateX(-50%);
|
|
5324
5326
|
transition: opacity 0.3s ease;
|
|
5325
|
-
letter-spacing:
|
|
5327
|
+
letter-spacing: 1px;
|
|
5326
5328
|
text-transform: uppercase;
|
|
5327
5329
|
}
|
|
5328
5330
|
|
|
5329
5331
|
/* Size categories - proportional to country size */
|
|
5330
5332
|
.country-label.size-large {
|
|
5333
|
+
font-size: 11px;
|
|
5334
|
+
font-weight: 600;
|
|
5335
|
+
letter-spacing: 2.5px;
|
|
5336
|
+
color: rgba(255, 255, 255, 0.95);
|
|
5337
|
+
}
|
|
5338
|
+
|
|
5339
|
+
.country-label.size-medium {
|
|
5331
5340
|
font-size: 9px;
|
|
5332
5341
|
font-weight: 500;
|
|
5333
|
-
letter-spacing:
|
|
5334
|
-
color: rgba(255, 255, 255, 0.
|
|
5342
|
+
letter-spacing: 1.5px;
|
|
5343
|
+
color: rgba(255, 255, 255, 0.9);
|
|
5335
5344
|
}
|
|
5336
5345
|
|
|
5337
|
-
.country-label.size-
|
|
5346
|
+
.country-label.size-small {
|
|
5338
5347
|
font-size: 7px;
|
|
5348
|
+
font-weight: 500;
|
|
5339
5349
|
letter-spacing: 1px;
|
|
5340
|
-
color: rgba(255, 255, 255, 0.
|
|
5350
|
+
color: rgba(255, 255, 255, 0.8);
|
|
5341
5351
|
}
|
|
5342
5352
|
|
|
5343
|
-
.country-label.size-
|
|
5353
|
+
.country-label.size-tiny {
|
|
5344
5354
|
font-size: 6px;
|
|
5345
5355
|
letter-spacing: 0.5px;
|
|
5346
|
-
color: rgba(255, 255, 255, 0.
|
|
5347
|
-
}
|
|
5348
|
-
|
|
5349
|
-
.country-label.size-tiny {
|
|
5350
|
-
font-size: 5px;
|
|
5351
|
-
letter-spacing: 0.3px;
|
|
5352
|
-
color: rgba(255, 255, 255, 0.4);
|
|
5356
|
+
color: rgba(255, 255, 255, 0.7);
|
|
5353
5357
|
}
|
|
5354
5358
|
|
|
5355
5359
|
.country-label.hidden {
|
|
@@ -5357,37 +5361,38 @@ class ho {
|
|
|
5357
5361
|
visibility: hidden;
|
|
5358
5362
|
}
|
|
5359
5363
|
|
|
5360
|
-
/* Minimal style -
|
|
5364
|
+
/* Minimal style - bold for the 7 largest */
|
|
5361
5365
|
.label-style-minimal .country-label.size-large {
|
|
5362
|
-
font-size:
|
|
5363
|
-
font-weight:
|
|
5366
|
+
font-size: 12px;
|
|
5367
|
+
font-weight: 700;
|
|
5364
5368
|
letter-spacing: 3px;
|
|
5365
|
-
color:
|
|
5369
|
+
color: #fff;
|
|
5366
5370
|
}
|
|
5367
5371
|
|
|
5368
5372
|
/* Major style - balanced visibility */
|
|
5369
5373
|
.label-style-major .country-label.size-large {
|
|
5370
|
-
font-size:
|
|
5374
|
+
font-size: 10px;
|
|
5375
|
+
font-weight: 600;
|
|
5371
5376
|
letter-spacing: 2px;
|
|
5372
5377
|
}
|
|
5373
5378
|
|
|
5374
5379
|
.label-style-major .country-label.size-medium {
|
|
5375
|
-
font-size:
|
|
5380
|
+
font-size: 8px;
|
|
5376
5381
|
}
|
|
5377
5382
|
|
|
5378
|
-
/* All style -
|
|
5383
|
+
/* All style - slightly more subtle but still readable */
|
|
5379
5384
|
.label-style-all .country-label {
|
|
5380
|
-
color: rgba(255, 255, 255, 0.
|
|
5385
|
+
color: rgba(255, 255, 255, 0.85);
|
|
5381
5386
|
}
|
|
5382
5387
|
|
|
5383
5388
|
.label-style-all .country-label.size-large {
|
|
5384
|
-
font-size:
|
|
5385
|
-
color: rgba(255, 255, 255, 0.
|
|
5389
|
+
font-size: 9px;
|
|
5390
|
+
color: rgba(255, 255, 255, 0.9);
|
|
5386
5391
|
}
|
|
5387
5392
|
|
|
5388
5393
|
.label-style-all .country-label.size-tiny {
|
|
5389
|
-
font-size:
|
|
5390
|
-
color: rgba(255, 255, 255, 0.
|
|
5394
|
+
font-size: 5px;
|
|
5395
|
+
color: rgba(255, 255, 255, 0.6);
|
|
5391
5396
|
}
|
|
5392
5397
|
`, document.head.appendChild(e);
|
|
5393
5398
|
}
|