phosphor-ui 0.3.39-dev.0 → 0.3.40
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/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/styles/components.css +90 -12
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/styles/components.css +90 -12
- package/dist/styles/components.css +90 -12
- package/package.json +2 -1
|
@@ -2599,19 +2599,25 @@ a.PostMeta-module_tag__3lRu-:hover {
|
|
|
2599
2599
|
display: block;
|
|
2600
2600
|
position: relative;
|
|
2601
2601
|
width: 100%;
|
|
2602
|
+
max-width: 100%;
|
|
2603
|
+
min-width: 0;
|
|
2604
|
+
box-sizing: border-box;
|
|
2602
2605
|
text-align: center;
|
|
2603
2606
|
text-decoration: none;
|
|
2604
2607
|
color: inherit;
|
|
2605
2608
|
background: none;
|
|
2606
|
-
|
|
2607
|
-
|
|
2609
|
+
overflow: hidden;
|
|
2610
|
+
container-type: inline-size;
|
|
2608
2611
|
}
|
|
2609
2612
|
|
|
2610
2613
|
.AsciiBanner-module_bannerFrame__esMb7 {
|
|
2611
2614
|
width: 100%;
|
|
2615
|
+
max-width: 100%;
|
|
2616
|
+
min-width: 0;
|
|
2612
2617
|
height: var(--ascii-height, auto);
|
|
2613
2618
|
min-height: 1px;
|
|
2614
|
-
|
|
2619
|
+
box-sizing: border-box;
|
|
2620
|
+
overflow: hidden;
|
|
2615
2621
|
text-align: center;
|
|
2616
2622
|
}
|
|
2617
2623
|
|
|
@@ -2641,6 +2647,11 @@ a.PostMeta-module_tag__3lRu-:hover {
|
|
|
2641
2647
|
will-change: transform, opacity, text-shadow;
|
|
2642
2648
|
}
|
|
2643
2649
|
|
|
2650
|
+
@supports (font-size: 1cqw) {
|
|
2651
|
+
.AsciiBanner-module_banner__0vW6g {
|
|
2652
|
+
font-size: clamp(8px, 1.4cqw, 16px);
|
|
2653
|
+
}
|
|
2654
|
+
}
|
|
2644
2655
|
.AsciiBanner-module_fallback__Ya7H0 {
|
|
2645
2656
|
position: absolute;
|
|
2646
2657
|
width: 1px;
|
|
@@ -2725,6 +2736,7 @@ a.PostMeta-module_tag__3lRu-:hover {
|
|
|
2725
2736
|
.HeaderNav-module_nav__1kFIH {
|
|
2726
2737
|
font-family: var(--pho-font-heading);
|
|
2727
2738
|
min-width: 0;
|
|
2739
|
+
max-width: 100%;
|
|
2728
2740
|
}
|
|
2729
2741
|
|
|
2730
2742
|
.HeaderNav-module_list__mY2Ex {
|
|
@@ -2735,6 +2747,7 @@ a.PostMeta-module_tag__3lRu-:hover {
|
|
|
2735
2747
|
list-style: none;
|
|
2736
2748
|
margin: 0;
|
|
2737
2749
|
min-width: 0;
|
|
2750
|
+
max-width: 100%;
|
|
2738
2751
|
padding: 0;
|
|
2739
2752
|
}
|
|
2740
2753
|
|
|
@@ -2750,6 +2763,7 @@ a.PostMeta-module_tag__3lRu-:hover {
|
|
|
2750
2763
|
gap: 0.18rem;
|
|
2751
2764
|
min-height: 2rem;
|
|
2752
2765
|
min-width: 0;
|
|
2766
|
+
max-width: 100%;
|
|
2753
2767
|
padding: 0.24rem 0.42rem;
|
|
2754
2768
|
text-decoration: none;
|
|
2755
2769
|
text-transform: uppercase;
|
|
@@ -2824,9 +2838,10 @@ a.PostMeta-module_tag__3lRu-:hover {
|
|
|
2824
2838
|
background: rgba(44, 255, 122, 0.04);
|
|
2825
2839
|
border: 1px solid var(--pho-color-primary-faint);
|
|
2826
2840
|
max-width: 100%;
|
|
2841
|
+
min-width: 0;
|
|
2827
2842
|
overflow-x: auto;
|
|
2828
2843
|
scrollbar-width: none;
|
|
2829
|
-
width:
|
|
2844
|
+
width: 100%;
|
|
2830
2845
|
}
|
|
2831
2846
|
|
|
2832
2847
|
.HeaderNav-module_tabs__ibOCT .HeaderNav-module_list__mY2Ex::-webkit-scrollbar {
|
|
@@ -5198,6 +5213,11 @@ a.List-module_title__ZtmvP:focus-visible {
|
|
|
5198
5213
|
}
|
|
5199
5214
|
.HeroFrame-module_frame__pJTcJ {
|
|
5200
5215
|
position: relative;
|
|
5216
|
+
width: 100%;
|
|
5217
|
+
max-width: 100%;
|
|
5218
|
+
min-width: 0;
|
|
5219
|
+
box-sizing: border-box;
|
|
5220
|
+
container-type: inline-size;
|
|
5201
5221
|
border: 1px solid var(--pho-color-primary);
|
|
5202
5222
|
background: radial-gradient(ellipse 120% 70% at 50% 0%, rgba(44, 255, 122, 0.08) 0%, transparent 70%), var(--pho-color-background);
|
|
5203
5223
|
box-shadow: 0 0 0 1px var(--pho-color-primary-faint) inset, 0 0 24px rgba(44, 255, 122, 0.18), 0 0 60px rgba(44, 255, 122, 0.06);
|
|
@@ -5209,6 +5229,10 @@ a.List-module_title__ZtmvP:focus-visible {
|
|
|
5209
5229
|
display: flex;
|
|
5210
5230
|
align-items: center;
|
|
5211
5231
|
gap: 0.6rem;
|
|
5232
|
+
min-width: 0;
|
|
5233
|
+
max-width: 100%;
|
|
5234
|
+
box-sizing: border-box;
|
|
5235
|
+
overflow: hidden;
|
|
5212
5236
|
padding: 0.35rem 0.7rem;
|
|
5213
5237
|
font-family: var(--pho-font-terminal);
|
|
5214
5238
|
font-size: var(--pho-type-control-sm-size);
|
|
@@ -5230,20 +5254,27 @@ a.List-module_title__ZtmvP:focus-visible {
|
|
|
5230
5254
|
color: var(--pho-color-primary);
|
|
5231
5255
|
text-shadow: var(--pho-glow-primary);
|
|
5232
5256
|
font-weight: 700;
|
|
5257
|
+
min-width: 0;
|
|
5233
5258
|
}
|
|
5234
5259
|
|
|
5235
5260
|
.HeroFrame-module_spacer__t-esZ {
|
|
5236
5261
|
flex: 1 1 auto;
|
|
5262
|
+
min-width: 0;
|
|
5237
5263
|
}
|
|
5238
5264
|
|
|
5239
5265
|
.HeroFrame-module_text__vlz6A {
|
|
5240
5266
|
color: var(--pho-color-primary-muted);
|
|
5241
5267
|
font-variant-numeric: tabular-nums;
|
|
5268
|
+
min-width: 0;
|
|
5269
|
+
overflow: hidden;
|
|
5270
|
+
text-overflow: ellipsis;
|
|
5271
|
+
white-space: nowrap;
|
|
5242
5272
|
}
|
|
5243
5273
|
|
|
5244
5274
|
.HeroFrame-module_bars__n4r3j {
|
|
5245
5275
|
color: var(--pho-color-primary);
|
|
5246
5276
|
text-shadow: var(--pho-glow-primary);
|
|
5277
|
+
flex: 0 0 auto;
|
|
5247
5278
|
}
|
|
5248
5279
|
|
|
5249
5280
|
.HeroFrame-module_led__hJV5N {
|
|
@@ -5252,6 +5283,7 @@ a.List-module_title__ZtmvP:focus-visible {
|
|
|
5252
5283
|
border-radius: 50%;
|
|
5253
5284
|
box-shadow: 0 0 4px currentColor, 0 0 10px currentColor;
|
|
5254
5285
|
display: inline-block;
|
|
5286
|
+
flex: 0 0 auto;
|
|
5255
5287
|
}
|
|
5256
5288
|
|
|
5257
5289
|
.HeroFrame-module_ledRec__KVd-z {
|
|
@@ -5269,6 +5301,7 @@ a.List-module_title__ZtmvP:focus-visible {
|
|
|
5269
5301
|
.HeroFrame-module_tape__eXrHW {
|
|
5270
5302
|
flex: 1 1 auto;
|
|
5271
5303
|
min-width: 0;
|
|
5304
|
+
max-width: 100%;
|
|
5272
5305
|
overflow: hidden;
|
|
5273
5306
|
border-left: 1px dashed var(--pho-color-primary-faint);
|
|
5274
5307
|
border-right: 1px dashed var(--pho-color-primary-faint);
|
|
@@ -5284,7 +5317,12 @@ a.List-module_title__ZtmvP:focus-visible {
|
|
|
5284
5317
|
}
|
|
5285
5318
|
|
|
5286
5319
|
.HeroFrame-module_artWrap__ZpaCe {
|
|
5320
|
+
--pho-hero-art-scale: 1;
|
|
5287
5321
|
position: relative;
|
|
5322
|
+
max-width: 100%;
|
|
5323
|
+
min-width: 0;
|
|
5324
|
+
box-sizing: border-box;
|
|
5325
|
+
container-type: inline-size;
|
|
5288
5326
|
padding: 1.4rem 1rem;
|
|
5289
5327
|
display: flex;
|
|
5290
5328
|
justify-content: center;
|
|
@@ -5297,9 +5335,11 @@ a.List-module_title__ZtmvP:focus-visible {
|
|
|
5297
5335
|
.HeroFrame-module_art__cIW-I {
|
|
5298
5336
|
font-family: var(--pho-font-heading);
|
|
5299
5337
|
font-weight: 700;
|
|
5300
|
-
font-size: clamp(4px, 0.85vw, 8px);
|
|
5338
|
+
font-size: calc(clamp(4px, 0.85vw, 8px) * var(--pho-hero-art-scale, 1));
|
|
5301
5339
|
line-height: 1.15;
|
|
5302
5340
|
margin: 0;
|
|
5341
|
+
max-width: 100%;
|
|
5342
|
+
min-width: 0;
|
|
5303
5343
|
white-space: pre;
|
|
5304
5344
|
color: var(--pho-color-primary-strong);
|
|
5305
5345
|
text-shadow: 0 0 1px var(--pho-color-primary), 0 0 8px rgba(44, 255, 122, 0.55), 0 0 20px rgba(44, 255, 122, 0.25);
|
|
@@ -5308,6 +5348,11 @@ a.List-module_title__ZtmvP:focus-visible {
|
|
|
5308
5348
|
z-index: 1;
|
|
5309
5349
|
}
|
|
5310
5350
|
|
|
5351
|
+
@supports (font-size: 1cqw) {
|
|
5352
|
+
.HeroFrame-module_art__cIW-I {
|
|
5353
|
+
font-size: calc(clamp(4px, 0.85cqw, 8px) * var(--pho-hero-art-scale, 1));
|
|
5354
|
+
}
|
|
5355
|
+
}
|
|
5311
5356
|
@media (max-width: 640px) {
|
|
5312
5357
|
.HeroFrame-module_hud__HN8Wp {
|
|
5313
5358
|
flex-wrap: wrap;
|
|
@@ -5327,7 +5372,14 @@ a.List-module_title__ZtmvP:focus-visible {
|
|
|
5327
5372
|
padding: 1rem 0.6rem;
|
|
5328
5373
|
}
|
|
5329
5374
|
.HeroFrame-module_art__cIW-I {
|
|
5330
|
-
font-size: clamp(3.2px, 1.4vw, 6px);
|
|
5375
|
+
font-size: calc(clamp(3.2px, 1.4vw, 6px) * var(--pho-hero-art-scale, 1));
|
|
5376
|
+
}
|
|
5377
|
+
}
|
|
5378
|
+
@supports (font-size: 1cqw) {
|
|
5379
|
+
@media (max-width: 640px) {
|
|
5380
|
+
.HeroFrame-module_art__cIW-I {
|
|
5381
|
+
font-size: calc(clamp(3.2px, 1.4cqw, 6px) * var(--pho-hero-art-scale, 1));
|
|
5382
|
+
}
|
|
5331
5383
|
}
|
|
5332
5384
|
}
|
|
5333
5385
|
.HeroFrame-module_scanline__KU7MT {
|
|
@@ -6197,7 +6249,11 @@ a.List-module_title__ZtmvP:focus-visible {
|
|
|
6197
6249
|
.Footer-module_footer__ghpRx {
|
|
6198
6250
|
--footer-fg: var(--pho-color-primary-muted);
|
|
6199
6251
|
--footer-accent: var(--pho-color-primary);
|
|
6252
|
+
--pho-footer-max-width: 100%;
|
|
6200
6253
|
width: 100%;
|
|
6254
|
+
max-width: 100%;
|
|
6255
|
+
min-width: 0;
|
|
6256
|
+
box-sizing: border-box;
|
|
6201
6257
|
margin-top: 3rem;
|
|
6202
6258
|
padding: 1rem clamp(0.8rem, 3vw, 2rem);
|
|
6203
6259
|
font-family: var(--pho-font-code);
|
|
@@ -6221,10 +6277,11 @@ a.List-module_title__ZtmvP:focus-visible {
|
|
|
6221
6277
|
|
|
6222
6278
|
.Footer-module_row__cfHsO {
|
|
6223
6279
|
display: grid;
|
|
6224
|
-
grid-template-columns: 1fr auto 1fr;
|
|
6280
|
+
grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
|
|
6225
6281
|
align-items: center;
|
|
6226
6282
|
gap: 0.6rem 1.4rem;
|
|
6227
|
-
max-width:
|
|
6283
|
+
max-width: var(--pho-footer-max-width);
|
|
6284
|
+
min-width: 0;
|
|
6228
6285
|
margin: 0 auto;
|
|
6229
6286
|
}
|
|
6230
6287
|
|
|
@@ -6236,6 +6293,7 @@ a.List-module_title__ZtmvP:focus-visible {
|
|
|
6236
6293
|
display: flex;
|
|
6237
6294
|
align-items: center;
|
|
6238
6295
|
gap: 0.6rem;
|
|
6296
|
+
min-width: 0;
|
|
6239
6297
|
font-family: var(--pho-font-terminal);
|
|
6240
6298
|
letter-spacing: 0.2em;
|
|
6241
6299
|
text-transform: uppercase;
|
|
@@ -6247,6 +6305,7 @@ a.List-module_title__ZtmvP:focus-visible {
|
|
|
6247
6305
|
.Footer-module_led__hHsh- {
|
|
6248
6306
|
width: 7px;
|
|
6249
6307
|
height: 7px;
|
|
6308
|
+
flex: 0 0 auto;
|
|
6250
6309
|
border-radius: 50%;
|
|
6251
6310
|
background: var(--footer-accent);
|
|
6252
6311
|
box-shadow: 0 0 4px var(--footer-accent), 0 0 10px var(--footer-accent);
|
|
@@ -6262,6 +6321,7 @@ a.List-module_title__ZtmvP:focus-visible {
|
|
|
6262
6321
|
.Footer-module_links__Ez8sZ {
|
|
6263
6322
|
list-style: none;
|
|
6264
6323
|
margin: 0;
|
|
6324
|
+
min-width: 0;
|
|
6265
6325
|
padding: 0;
|
|
6266
6326
|
display: flex;
|
|
6267
6327
|
flex-wrap: wrap;
|
|
@@ -6296,6 +6356,7 @@ a.List-module_title__ZtmvP:focus-visible {
|
|
|
6296
6356
|
display: inline-flex;
|
|
6297
6357
|
align-items: center;
|
|
6298
6358
|
gap: 0.4rem;
|
|
6359
|
+
min-width: 0;
|
|
6299
6360
|
}
|
|
6300
6361
|
|
|
6301
6362
|
.Footer-module_status__XGoA2 b {
|
|
@@ -6305,7 +6366,8 @@ a.List-module_title__ZtmvP:focus-visible {
|
|
|
6305
6366
|
}
|
|
6306
6367
|
|
|
6307
6368
|
.Footer-module_prompt__rw6Sh {
|
|
6308
|
-
max-width:
|
|
6369
|
+
max-width: var(--pho-footer-max-width);
|
|
6370
|
+
min-width: 0;
|
|
6309
6371
|
margin: 0.8rem auto 0;
|
|
6310
6372
|
font-family: var(--pho-font-terminal);
|
|
6311
6373
|
font-size: var(--pho-type-caption-size);
|
|
@@ -6337,7 +6399,8 @@ a.List-module_title__ZtmvP:focus-visible {
|
|
|
6337
6399
|
}
|
|
6338
6400
|
|
|
6339
6401
|
.Footer-module_meta__-Y4I8 {
|
|
6340
|
-
max-width:
|
|
6402
|
+
max-width: var(--pho-footer-max-width);
|
|
6403
|
+
min-width: 0;
|
|
6341
6404
|
margin: 0.45rem auto 0;
|
|
6342
6405
|
color: var(--pho-color-text-faint);
|
|
6343
6406
|
font-family: var(--pho-font-code);
|
|
@@ -6362,7 +6425,8 @@ a.List-module_title__ZtmvP:focus-visible {
|
|
|
6362
6425
|
}
|
|
6363
6426
|
}
|
|
6364
6427
|
@media (prefers-reduced-motion: reduce) {
|
|
6365
|
-
.Footer-module_led__hHsh-,
|
|
6428
|
+
.Footer-module_led__hHsh-,
|
|
6429
|
+
.Footer-module_prompt__rw6Sh .Footer-module_cursor__5W1ot {
|
|
6366
6430
|
animation: none;
|
|
6367
6431
|
}
|
|
6368
6432
|
}
|
|
@@ -10214,6 +10278,8 @@ video::-webkit-media-text-track-display {
|
|
|
10214
10278
|
border: var(--pho-border-line);
|
|
10215
10279
|
padding: 1.6rem;
|
|
10216
10280
|
min-width: 0;
|
|
10281
|
+
max-width: 100%;
|
|
10282
|
+
box-sizing: border-box;
|
|
10217
10283
|
position: relative;
|
|
10218
10284
|
}
|
|
10219
10285
|
|
|
@@ -10362,6 +10428,9 @@ video::-webkit-media-text-track-display {
|
|
|
10362
10428
|
background: linear-gradient(180deg, rgba(44, 255, 122, 0.05), rgba(44, 255, 122, 0.015)), var(--pho-color-background-deep);
|
|
10363
10429
|
border: var(--pho-border-dashed);
|
|
10364
10430
|
min-width: 0;
|
|
10431
|
+
max-width: 100%;
|
|
10432
|
+
box-sizing: border-box;
|
|
10433
|
+
container-type: inline-size;
|
|
10365
10434
|
padding: 1rem;
|
|
10366
10435
|
}
|
|
10367
10436
|
|
|
@@ -10369,6 +10438,8 @@ video::-webkit-media-text-track-display {
|
|
|
10369
10438
|
border-bottom: var(--pho-border-dashed);
|
|
10370
10439
|
margin-bottom: 1rem;
|
|
10371
10440
|
min-width: 0;
|
|
10441
|
+
max-width: 100%;
|
|
10442
|
+
box-sizing: border-box;
|
|
10372
10443
|
padding-bottom: 0.9rem;
|
|
10373
10444
|
position: relative;
|
|
10374
10445
|
}
|
|
@@ -10385,10 +10456,17 @@ video::-webkit-media-text-track-display {
|
|
|
10385
10456
|
font-size: clamp(1.45rem, 3vw, 2.1rem);
|
|
10386
10457
|
line-height: 1;
|
|
10387
10458
|
margin: 0;
|
|
10459
|
+
max-width: 100%;
|
|
10460
|
+
overflow-wrap: anywhere;
|
|
10388
10461
|
text-shadow: var(--pho-glow-primary);
|
|
10389
10462
|
text-transform: uppercase;
|
|
10390
10463
|
}
|
|
10391
10464
|
|
|
10465
|
+
@supports (font-size: 1cqw) {
|
|
10466
|
+
.ContentEditor-module_previewTitle__9LkOu {
|
|
10467
|
+
font-size: clamp(1.25rem, 8cqw, 2.1rem);
|
|
10468
|
+
}
|
|
10469
|
+
}
|
|
10392
10470
|
.ContentEditor-module_previewStatus__rlDjo {
|
|
10393
10471
|
border: 1px solid var(--pho-color-primary-faint);
|
|
10394
10472
|
color: var(--pho-color-primary-muted);
|
|
@@ -10405,7 +10483,7 @@ video::-webkit-media-text-track-display {
|
|
|
10405
10483
|
.ContentEditor-module_previewGrid__UboMn {
|
|
10406
10484
|
display: grid;
|
|
10407
10485
|
gap: 0.75rem;
|
|
10408
|
-
grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
|
|
10486
|
+
grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
|
|
10409
10487
|
min-width: 0;
|
|
10410
10488
|
}
|
|
10411
10489
|
|