@aortl/admin-css 0.5.2 → 0.7.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/admin.css CHANGED
@@ -20,6 +20,7 @@
20
20
  --text-xl--line-height: calc(1.75 / 1.25);
21
21
  --font-weight-medium: 500;
22
22
  --font-weight-semibold: 600;
23
+ --font-weight-bold: 700;
23
24
  --tracking-wide: 0.025em;
24
25
  --leading-tight: 1.25;
25
26
  --leading-snug: 1.375;
@@ -396,9 +397,6 @@
396
397
  .block {
397
398
  display: block;
398
399
  }
399
- .contents {
400
- display: contents;
401
- }
402
400
  .grid {
403
401
  display: grid;
404
402
  }
@@ -414,6 +412,9 @@
414
412
  .flex-1 {
415
413
  flex: 1;
416
414
  }
415
+ .transform {
416
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
417
+ }
417
418
  .text-right {
418
419
  text-align: right;
419
420
  }
@@ -421,10 +422,6 @@
421
422
  --tw-numeric-spacing: tabular-nums;
422
423
  font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
423
424
  }
424
- .shadow {
425
- --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
426
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
427
- }
428
425
  .select-all {
429
426
  -webkit-user-select: all;
430
427
  user-select: all;
@@ -1064,6 +1061,103 @@
1064
1061
  user-select: none;
1065
1062
  }
1066
1063
  }
1064
+ @layer components {
1065
+ .property-list {
1066
+ display: flex;
1067
+ flex-direction: column;
1068
+ font-size: var(--text-sm);
1069
+ line-height: var(--tw-leading, var(--text-sm--line-height));
1070
+ color: var(--color-text);
1071
+ }
1072
+ .property-list-title {
1073
+ margin-bottom: calc(var(--spacing) * 2);
1074
+ font-size: var(--text-sm);
1075
+ line-height: var(--tw-leading, var(--text-sm--line-height));
1076
+ --tw-font-weight: var(--font-weight-bold);
1077
+ font-weight: var(--font-weight-bold);
1078
+ color: var(--color-text);
1079
+ }
1080
+ .property-list-items {
1081
+ display: grid;
1082
+ grid-template-columns: max-content 1fr;
1083
+ }
1084
+ .property-list-label, .property-list-value {
1085
+ display: flex;
1086
+ align-items: center;
1087
+ padding: 0.375rem 0.75rem;
1088
+ min-height: 2rem;
1089
+ }
1090
+ .property-list-label {
1091
+ color: var(--color-text-muted);
1092
+ }
1093
+ .property-list-value {
1094
+ gap: 0.5rem;
1095
+ min-width: 0;
1096
+ }
1097
+ .property-list-value-numeric {
1098
+ justify-content: flex-end;
1099
+ --tw-numeric-spacing: tabular-nums;
1100
+ font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
1101
+ }
1102
+ .property-list-striped dt:nth-of-type(2n + 2), .property-list-striped dd:nth-of-type(2n + 2) {
1103
+ background-color: var(--color-surface-muted);
1104
+ }
1105
+ .property-list-hide-if-empty:not(:has(.property-list-value:not(.property-list-value-empty))) {
1106
+ display: none;
1107
+ }
1108
+ .property-list-copy {
1109
+ margin-left: auto;
1110
+ display: inline-flex;
1111
+ cursor: pointer;
1112
+ align-items: center;
1113
+ justify-content: center;
1114
+ border-radius: 0.25rem;
1115
+ border-style: var(--tw-border-style);
1116
+ border-width: 0px;
1117
+ background-color: transparent;
1118
+ color: var(--color-text-muted);
1119
+ &:hover {
1120
+ @media (hover: hover) {
1121
+ color: var(--color-text);
1122
+ }
1123
+ }
1124
+ &:focus-visible {
1125
+ outline-style: var(--tw-outline-style);
1126
+ outline-width: 2px;
1127
+ }
1128
+ &:focus-visible {
1129
+ outline-offset: 2px;
1130
+ }
1131
+ &:focus-visible {
1132
+ outline-color: var(--color-primary);
1133
+ }
1134
+ display: none;
1135
+ flex-shrink: 0;
1136
+ padding: 0.125rem;
1137
+ transition: opacity 100ms ease, color 100ms ease;
1138
+ }
1139
+ .property-list-copyable .property-list-copy, .property-list-value-copyable .property-list-copy {
1140
+ display: inline-flex;
1141
+ opacity: 0;
1142
+ pointer-events: none;
1143
+ }
1144
+ .property-list-copyable .property-list-label:hover + .property-list-value .property-list-copy, .property-list-copyable .property-list-value:hover .property-list-copy, .property-list-label:has(+ .property-list-value-copyable):hover + .property-list-value .property-list-copy, .property-list-value-copyable:hover .property-list-copy, .property-list-copy:focus-visible, .property-list-copy[data-copied] {
1145
+ opacity: 1;
1146
+ pointer-events: auto;
1147
+ }
1148
+ .property-list-copy .property-list-copy-icon-copied {
1149
+ display: none;
1150
+ }
1151
+ .property-list-copy[data-copied] .property-list-copy-icon {
1152
+ display: none;
1153
+ }
1154
+ .property-list-copy[data-copied] .property-list-copy-icon-copied {
1155
+ display: inline-flex;
1156
+ }
1157
+ .property-list-copy[data-copied] {
1158
+ color: var(--color-success);
1159
+ }
1160
+ }
1067
1161
  @layer components {
1068
1162
  .btn {
1069
1163
  display: inline-flex;
@@ -1956,6 +2050,18 @@
1956
2050
  --tw-font-weight: var(--font-weight-semibold);
1957
2051
  font-weight: var(--font-weight-semibold);
1958
2052
  }
2053
+ .card-header {
2054
+ display: flex;
2055
+ align-items: center;
2056
+ gap: calc(var(--spacing) * 2);
2057
+ }
2058
+ .card-toolbar {
2059
+ margin-top: calc(var(--spacing) * -0.5);
2060
+ margin-left: auto;
2061
+ display: flex;
2062
+ align-items: center;
2063
+ gap: calc(var(--spacing) * 1);
2064
+ }
1959
2065
  .card-description {
1960
2066
  font-size: var(--text-sm);
1961
2067
  line-height: var(--tw-leading, var(--text-sm--line-height));
@@ -3385,6 +3491,26 @@
3385
3491
  transition: opacity 150ms ease-out 200ms, visibility 0s linear 200ms;
3386
3492
  }
3387
3493
  }
3494
+ @property --tw-rotate-x {
3495
+ syntax: "*";
3496
+ inherits: false;
3497
+ }
3498
+ @property --tw-rotate-y {
3499
+ syntax: "*";
3500
+ inherits: false;
3501
+ }
3502
+ @property --tw-rotate-z {
3503
+ syntax: "*";
3504
+ inherits: false;
3505
+ }
3506
+ @property --tw-skew-x {
3507
+ syntax: "*";
3508
+ inherits: false;
3509
+ }
3510
+ @property --tw-skew-y {
3511
+ syntax: "*";
3512
+ inherits: false;
3513
+ }
3388
3514
  @property --tw-ordinal {
3389
3515
  syntax: "*";
3390
3516
  inherits: false;
@@ -3405,6 +3531,28 @@
3405
3531
  syntax: "*";
3406
3532
  inherits: false;
3407
3533
  }
3534
+ @property --tw-leading {
3535
+ syntax: "*";
3536
+ inherits: false;
3537
+ }
3538
+ @property --tw-font-weight {
3539
+ syntax: "*";
3540
+ inherits: false;
3541
+ }
3542
+ @property --tw-border-style {
3543
+ syntax: "*";
3544
+ inherits: false;
3545
+ initial-value: solid;
3546
+ }
3547
+ @property --tw-outline-style {
3548
+ syntax: "*";
3549
+ inherits: false;
3550
+ initial-value: solid;
3551
+ }
3552
+ @property --tw-duration {
3553
+ syntax: "*";
3554
+ inherits: false;
3555
+ }
3408
3556
  @property --tw-shadow {
3409
3557
  syntax: "*";
3410
3558
  inherits: false;
@@ -3470,28 +3618,6 @@
3470
3618
  inherits: false;
3471
3619
  initial-value: 0 0 #0000;
3472
3620
  }
3473
- @property --tw-leading {
3474
- syntax: "*";
3475
- inherits: false;
3476
- }
3477
- @property --tw-font-weight {
3478
- syntax: "*";
3479
- inherits: false;
3480
- }
3481
- @property --tw-border-style {
3482
- syntax: "*";
3483
- inherits: false;
3484
- initial-value: solid;
3485
- }
3486
- @property --tw-outline-style {
3487
- syntax: "*";
3488
- inherits: false;
3489
- initial-value: solid;
3490
- }
3491
- @property --tw-duration {
3492
- syntax: "*";
3493
- inherits: false;
3494
- }
3495
3621
  @property --tw-translate-x {
3496
3622
  syntax: "*";
3497
3623
  inherits: false;
@@ -3514,11 +3640,21 @@
3514
3640
  @layer properties {
3515
3641
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
3516
3642
  *, ::before, ::after, ::backdrop {
3643
+ --tw-rotate-x: initial;
3644
+ --tw-rotate-y: initial;
3645
+ --tw-rotate-z: initial;
3646
+ --tw-skew-x: initial;
3647
+ --tw-skew-y: initial;
3517
3648
  --tw-ordinal: initial;
3518
3649
  --tw-slashed-zero: initial;
3519
3650
  --tw-numeric-figure: initial;
3520
3651
  --tw-numeric-spacing: initial;
3521
3652
  --tw-numeric-fraction: initial;
3653
+ --tw-leading: initial;
3654
+ --tw-font-weight: initial;
3655
+ --tw-border-style: solid;
3656
+ --tw-outline-style: solid;
3657
+ --tw-duration: initial;
3522
3658
  --tw-shadow: 0 0 #0000;
3523
3659
  --tw-shadow-color: initial;
3524
3660
  --tw-shadow-alpha: 100%;
@@ -3533,11 +3669,6 @@
3533
3669
  --tw-ring-offset-width: 0px;
3534
3670
  --tw-ring-offset-color: #fff;
3535
3671
  --tw-ring-offset-shadow: 0 0 #0000;
3536
- --tw-leading: initial;
3537
- --tw-font-weight: initial;
3538
- --tw-border-style: solid;
3539
- --tw-outline-style: solid;
3540
- --tw-duration: initial;
3541
3672
  --tw-translate-x: 0;
3542
3673
  --tw-translate-y: 0;
3543
3674
  --tw-translate-z: 0;