softui-css 1.12.0 → 1.13.0

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/softui.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! SoftUI v1.12.0 — A Neumorphic CSS Library */
1
+ /*! SoftUI v1.13.0 — A Neumorphic CSS Library */
2
2
 
3
3
  /* ===========================================
4
4
  CSS Variables / Tokens
@@ -13242,6 +13242,411 @@ select.sui-datatable-filter {
13242
13242
  .sui-mask-shield { --sui-mask: polygon(50% 0%, 100% 12%, 100% 65%, 50% 100%, 0% 65%, 0% 12%); }
13243
13243
  .sui-mask-parallelogram { --sui-mask: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%); }
13244
13244
 
13245
+ /* ===========================================
13246
+ Result Page
13247
+ =========================================== */
13248
+ .sui-result {
13249
+ display: flex;
13250
+ flex-direction: column;
13251
+ align-items: center;
13252
+ text-align: center;
13253
+ padding: 48px 24px;
13254
+ }
13255
+
13256
+ .sui-result-icon {
13257
+ width: 80px;
13258
+ height: 80px;
13259
+ border-radius: 50%;
13260
+ display: flex;
13261
+ align-items: center;
13262
+ justify-content: center;
13263
+ font-size: 36px;
13264
+ margin-bottom: 20px;
13265
+ box-shadow: var(--sui-shadow-raised);
13266
+ }
13267
+
13268
+ .sui-result-success .sui-result-icon { background: rgba(31, 169, 110, 0.12); color: var(--sui-success); }
13269
+ .sui-result-error .sui-result-icon { background: rgba(208, 58, 92, 0.12); color: var(--sui-danger); }
13270
+ .sui-result-warning .sui-result-icon { background: rgba(245, 166, 35, 0.12); color: var(--sui-warning); }
13271
+ .sui-result-info .sui-result-icon { background: rgba(26, 130, 212, 0.12); color: var(--sui-info); }
13272
+ .sui-result-404 .sui-result-icon { background: rgba(90, 106, 126, 0.12); color: var(--sui-text-muted); }
13273
+
13274
+ .sui-result-title {
13275
+ font-size: 22px;
13276
+ font-weight: 700;
13277
+ color: var(--sui-text);
13278
+ margin: 0 0 8px;
13279
+ }
13280
+
13281
+ .sui-result-desc {
13282
+ font-size: 14px;
13283
+ color: var(--sui-text-muted);
13284
+ max-width: 400px;
13285
+ margin: 0 0 24px;
13286
+ line-height: 1.6;
13287
+ }
13288
+
13289
+ .sui-result-actions {
13290
+ display: flex;
13291
+ gap: 12px;
13292
+ flex-wrap: wrap;
13293
+ justify-content: center;
13294
+ }
13295
+
13296
+ /* Inset variant */
13297
+ .sui-result-inset {
13298
+ background: var(--sui-bg);
13299
+ border-radius: var(--sui-radius-lg);
13300
+ box-shadow: var(--sui-shadow-inset);
13301
+ }
13302
+
13303
+ .sui-result-inset .sui-result-icon {
13304
+ box-shadow: var(--sui-shadow-inset-sm);
13305
+ }
13306
+
13307
+ /* ===========================================
13308
+ List Group
13309
+ =========================================== */
13310
+ .sui-list-group {
13311
+ list-style: none;
13312
+ padding: 0;
13313
+ margin: 0;
13314
+ border-radius: var(--sui-radius-sm);
13315
+ }
13316
+
13317
+ .sui-list-group-item {
13318
+ display: flex;
13319
+ align-items: center;
13320
+ gap: 12px;
13321
+ padding: 12px 16px;
13322
+ font-size: 14px;
13323
+ color: var(--sui-text);
13324
+ border-bottom: 1px solid var(--sui-bg-dark);
13325
+ transition: background var(--sui-transition-fast);
13326
+ text-decoration: none;
13327
+ }
13328
+
13329
+ .sui-list-group-item:last-child {
13330
+ border-bottom: none;
13331
+ }
13332
+
13333
+ a.sui-list-group-item:hover,
13334
+ button.sui-list-group-item:hover {
13335
+ background: rgba(91, 84, 224, 0.04);
13336
+ cursor: pointer;
13337
+ }
13338
+
13339
+ [data-theme="dark"] a.sui-list-group-item:hover,
13340
+ [data-theme="dark"] button.sui-list-group-item:hover {
13341
+ background: rgba(124, 107, 255, 0.08);
13342
+ }
13343
+
13344
+ .sui-list-group-item.active {
13345
+ background: rgba(91, 84, 224, 0.08);
13346
+ color: var(--sui-primary);
13347
+ font-weight: 600;
13348
+ }
13349
+
13350
+ .sui-list-group-item.disabled {
13351
+ opacity: 0.5;
13352
+ pointer-events: none;
13353
+ }
13354
+
13355
+ /* Content area */
13356
+ .sui-list-group-content {
13357
+ flex: 1;
13358
+ min-width: 0;
13359
+ }
13360
+
13361
+ .sui-list-group-title {
13362
+ font-weight: 600;
13363
+ font-size: 14px;
13364
+ }
13365
+
13366
+ .sui-list-group-desc {
13367
+ font-size: 12px;
13368
+ color: var(--sui-text-muted);
13369
+ margin-top: 2px;
13370
+ }
13371
+
13372
+ /* Icon */
13373
+ .sui-list-group-icon {
13374
+ width: 20px;
13375
+ height: 20px;
13376
+ flex-shrink: 0;
13377
+ color: var(--sui-text-muted);
13378
+ }
13379
+
13380
+ .sui-list-group-item.active .sui-list-group-icon {
13381
+ color: var(--sui-primary);
13382
+ }
13383
+
13384
+ /* Action (right side) */
13385
+ .sui-list-group-action {
13386
+ margin-inline-start: auto;
13387
+ flex-shrink: 0;
13388
+ }
13389
+
13390
+ /* Raised variant */
13391
+ .sui-list-group-raised {
13392
+ box-shadow: var(--sui-shadow-raised);
13393
+ background: var(--sui-bg);
13394
+ }
13395
+
13396
+ /* Bordered variant */
13397
+ .sui-list-group-bordered {
13398
+ border: 1px solid var(--sui-bg-dark);
13399
+ }
13400
+
13401
+ /* Inset variant */
13402
+ .sui-list-group-inset {
13403
+ box-shadow: var(--sui-shadow-inset);
13404
+ background: var(--sui-bg);
13405
+ }
13406
+
13407
+ /* Flush variant (no outer border/radius) */
13408
+ .sui-list-group-flush {
13409
+ border-radius: 0;
13410
+ }
13411
+
13412
+ /* ===========================================
13413
+ Descriptions (key-value display)
13414
+ =========================================== */
13415
+ .sui-desc {
13416
+ width: 100%;
13417
+ }
13418
+
13419
+ .sui-desc-title {
13420
+ font-size: 16px;
13421
+ font-weight: 700;
13422
+ color: var(--sui-text);
13423
+ margin: 0 0 16px;
13424
+ }
13425
+
13426
+ .sui-desc-row {
13427
+ display: flex;
13428
+ padding: 12px 0;
13429
+ border-bottom: 1px solid var(--sui-bg-dark);
13430
+ gap: 16px;
13431
+ }
13432
+
13433
+ .sui-desc-row:last-child {
13434
+ border-bottom: none;
13435
+ }
13436
+
13437
+ .sui-desc-label {
13438
+ font-size: 14px;
13439
+ font-weight: 500;
13440
+ color: var(--sui-text-muted);
13441
+ width: 160px;
13442
+ flex-shrink: 0;
13443
+ }
13444
+
13445
+ .sui-desc-value {
13446
+ font-size: 14px;
13447
+ color: var(--sui-text);
13448
+ flex: 1;
13449
+ }
13450
+
13451
+ /* Bordered variant */
13452
+ .sui-desc-bordered {
13453
+ border: 1px solid var(--sui-bg-dark);
13454
+ border-radius: var(--sui-radius-sm);
13455
+ overflow: hidden;
13456
+ }
13457
+
13458
+ .sui-desc-bordered .sui-desc-title {
13459
+ padding: 14px 20px;
13460
+ margin: 0;
13461
+ border-bottom: 1px solid var(--sui-bg-dark);
13462
+ background: var(--sui-bg-light);
13463
+ }
13464
+
13465
+ .sui-desc-bordered .sui-desc-row {
13466
+ padding: 12px 20px;
13467
+ }
13468
+
13469
+ /* Raised variant */
13470
+ .sui-desc-raised {
13471
+ background: var(--sui-bg);
13472
+ border-radius: var(--sui-radius-sm);
13473
+ box-shadow: var(--sui-shadow-raised);
13474
+ overflow: hidden;
13475
+ }
13476
+
13477
+ .sui-desc-raised .sui-desc-title {
13478
+ padding: 14px 20px;
13479
+ margin: 0;
13480
+ border-bottom: 1px solid var(--sui-bg-dark);
13481
+ }
13482
+
13483
+ .sui-desc-raised .sui-desc-row {
13484
+ padding: 12px 20px;
13485
+ }
13486
+
13487
+ /* Inset variant */
13488
+ .sui-desc-inset {
13489
+ background: var(--sui-bg);
13490
+ border-radius: var(--sui-radius-sm);
13491
+ box-shadow: var(--sui-shadow-inset);
13492
+ overflow: hidden;
13493
+ }
13494
+
13495
+ .sui-desc-inset .sui-desc-title {
13496
+ padding: 14px 20px;
13497
+ margin: 0;
13498
+ border-bottom: 1px solid var(--sui-bg-dark);
13499
+ }
13500
+
13501
+ .sui-desc-inset .sui-desc-row {
13502
+ padding: 12px 20px;
13503
+ }
13504
+
13505
+ /* Striped variant */
13506
+ .sui-desc-striped .sui-desc-row:nth-child(even) {
13507
+ background: var(--sui-bg-light);
13508
+ }
13509
+
13510
+ /* Horizontal layout (grid) */
13511
+ .sui-desc-horizontal {
13512
+ display: grid;
13513
+ grid-template-columns: 1fr 1fr;
13514
+ gap: 0;
13515
+ }
13516
+
13517
+ .sui-desc-horizontal .sui-desc-row {
13518
+ border-bottom: 1px solid var(--sui-bg-dark);
13519
+ }
13520
+
13521
+ /* Responsive */
13522
+ @media (max-width: 600px) {
13523
+ .sui-desc-row {
13524
+ flex-direction: column;
13525
+ gap: 4px;
13526
+ }
13527
+ .sui-desc-label {
13528
+ width: auto;
13529
+ }
13530
+ .sui-desc-horizontal {
13531
+ grid-template-columns: 1fr;
13532
+ }
13533
+ }
13534
+
13535
+ /* ===========================================
13536
+ Hero Section
13537
+ =========================================== */
13538
+ .sui-hero {
13539
+ display: flex;
13540
+ flex-direction: column;
13541
+ align-items: center;
13542
+ text-align: center;
13543
+ padding: 64px 24px;
13544
+ }
13545
+
13546
+ .sui-hero-title {
13547
+ font-size: 3rem;
13548
+ font-weight: 800;
13549
+ color: var(--sui-text);
13550
+ margin: 0 0 12px;
13551
+ line-height: 1.15;
13552
+ letter-spacing: -0.5px;
13553
+ }
13554
+
13555
+ .sui-hero-subtitle {
13556
+ font-size: 1.125rem;
13557
+ color: var(--sui-text-muted);
13558
+ max-width: 560px;
13559
+ margin: 0 0 32px;
13560
+ line-height: 1.6;
13561
+ }
13562
+
13563
+ .sui-hero-actions {
13564
+ display: flex;
13565
+ gap: 12px;
13566
+ flex-wrap: wrap;
13567
+ justify-content: center;
13568
+ }
13569
+
13570
+ /* Sizes */
13571
+ .sui-hero-sm {
13572
+ padding: 40px 24px;
13573
+ }
13574
+
13575
+ .sui-hero-sm .sui-hero-title {
13576
+ font-size: 2rem;
13577
+ }
13578
+
13579
+ .sui-hero-sm .sui-hero-subtitle {
13580
+ font-size: 1rem;
13581
+ margin-bottom: 24px;
13582
+ }
13583
+
13584
+ .sui-hero-lg {
13585
+ padding: 96px 24px;
13586
+ }
13587
+
13588
+ .sui-hero-lg .sui-hero-title {
13589
+ font-size: 4rem;
13590
+ }
13591
+
13592
+ .sui-hero-lg .sui-hero-subtitle {
13593
+ font-size: 1.25rem;
13594
+ max-width: 640px;
13595
+ }
13596
+
13597
+ /* Raised variant */
13598
+ .sui-hero-raised {
13599
+ background: var(--sui-bg);
13600
+ border-radius: var(--sui-radius-lg);
13601
+ box-shadow: var(--sui-shadow-raised);
13602
+ }
13603
+
13604
+ /* Gradient background */
13605
+ .sui-hero-gradient {
13606
+ background: linear-gradient(135deg, var(--sui-bg) 0%, var(--sui-bg-light) 100%);
13607
+ border-radius: var(--sui-radius-lg);
13608
+ }
13609
+
13610
+ /* With accent line */
13611
+ .sui-hero-accent .sui-hero-title {
13612
+ position: relative;
13613
+ padding-bottom: 16px;
13614
+ margin-bottom: 20px;
13615
+ }
13616
+
13617
+ .sui-hero-accent .sui-hero-title::after {
13618
+ content: '';
13619
+ position: absolute;
13620
+ bottom: 0;
13621
+ left: 50%;
13622
+ transform: translateX(-50%);
13623
+ width: 60px;
13624
+ height: 4px;
13625
+ border-radius: var(--sui-radius-full);
13626
+ background: var(--sui-primary);
13627
+ }
13628
+
13629
+ /* Bordered variant */
13630
+ .sui-hero-bordered {
13631
+ border: 1px solid var(--sui-bg-dark);
13632
+ border-radius: var(--sui-radius-lg);
13633
+ }
13634
+
13635
+ /* Inset variant */
13636
+ .sui-hero-inset {
13637
+ background: var(--sui-bg);
13638
+ border-radius: var(--sui-radius-lg);
13639
+ box-shadow: var(--sui-shadow-inset);
13640
+ }
13641
+
13642
+ /* Responsive */
13643
+ @media (max-width: 600px) {
13644
+ .sui-hero-title { font-size: 2rem; }
13645
+ .sui-hero-lg .sui-hero-title { font-size: 2.5rem; }
13646
+ .sui-hero { padding: 40px 16px; }
13647
+ .sui-hero-lg { padding: 56px 16px; }
13648
+ }
13649
+
13245
13650
  /* ===========================================
13246
13651
  Reduced Motion
13247
13652
  =========================================== */