@digiko-npm/designsystem 0.9.9 → 0.9.11
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/designsystem.css +227 -36
- package/dist/designsystem.min.css +2 -2
- package/package.json +1 -1
- package/src/components/command.css +6 -0
- package/src/utilities/interactive.css +5 -0
- package/src/utilities/sizing.css +10 -0
- package/src/utilities/spacing.css +43 -0
- package/src/utilities/states.css +160 -52
- package/src/utilities/text.css +8 -0
package/dist/designsystem.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @ds/designsystem v0.9.
|
|
1
|
+
/* @ds/designsystem v0.9.10 */
|
|
2
2
|
/* ==========================================================================
|
|
3
3
|
@digiko-npm/designsystem
|
|
4
4
|
|
|
@@ -8470,7 +8470,18 @@ hr {
|
|
|
8470
8470
|
|
|
8471
8471
|
background-color: var(--ds-color-bg-elevated);
|
|
8472
8472
|
color: var(--ds-color-text);
|
|
8473
|
+
|
|
8474
|
+
|
|
8473
8475
|
}
|
|
8476
|
+
.ds-command__item:hover .ds-command__item-icon,
|
|
8477
|
+
.ds-command__item:hover .ds-command__item-label,
|
|
8478
|
+
.ds-command__item:hover .ds-command__item-shortcut,
|
|
8479
|
+
.ds-command__item--active .ds-command__item-icon,
|
|
8480
|
+
.ds-command__item--active .ds-command__item-label,
|
|
8481
|
+
.ds-command__item--active .ds-command__item-shortcut {
|
|
8482
|
+
|
|
8483
|
+
color: inherit;
|
|
8484
|
+
}
|
|
8474
8485
|
.ds-command__item:focus-visible {
|
|
8475
8486
|
|
|
8476
8487
|
outline: none;
|
|
@@ -11548,6 +11559,53 @@ tr:hover .ds-sortable__handle,
|
|
|
11548
11559
|
}
|
|
11549
11560
|
|
|
11550
11561
|
|
|
11562
|
+
/* --- Space-X (horizontal gap between children) --- */
|
|
11563
|
+
.ds-space-x-1 > * + * { margin-inline-start: var(--ds-space-1); }
|
|
11564
|
+
.ds-space-x-2 > * + * { margin-inline-start: var(--ds-space-2); }
|
|
11565
|
+
.ds-space-x-3 > * + * { margin-inline-start: var(--ds-space-3); }
|
|
11566
|
+
.ds-space-x-4 > * + * { margin-inline-start: var(--ds-space-4); }
|
|
11567
|
+
|
|
11568
|
+
/* --- Decimal spacing (0.5 = 0.125rem, 1.5 = 0.375rem, 2.5 = 0.625rem) --- */
|
|
11569
|
+
.ds-gap-0\.5 { gap: 0.125rem; }
|
|
11570
|
+
.ds-gap-1\.5 { gap: 0.375rem; }
|
|
11571
|
+
.ds-gap-2\.5 { gap: 0.625rem; }
|
|
11572
|
+
.ds-p-0\.5 { padding: 0.125rem; }
|
|
11573
|
+
.ds-p-1\.5 { padding: 0.375rem; }
|
|
11574
|
+
.ds-px-0\.5 { padding-inline: 0.125rem; }
|
|
11575
|
+
.ds-px-1\.5 { padding-inline: 0.375rem; }
|
|
11576
|
+
.ds-py-0\.5 { padding-inline: 0.125rem; }
|
|
11577
|
+
.ds-py-1\.5 { padding-block: 0.375rem; }
|
|
11578
|
+
.ds-mt-0\.5 { margin-block-start: 0.125rem; }
|
|
11579
|
+
.ds-mb-0\.5 { margin-block-end: 0.125rem; }
|
|
11580
|
+
.ds-space-y-0\.5 > * + * { margin-block-start: 0.125rem; }
|
|
11581
|
+
.ds-space-y-1\.5 > * + * { margin-block-start: 0.375rem; }
|
|
11582
|
+
.ds-space-x-0\.5 > * + * { margin-inline-start: 0.125rem; }
|
|
11583
|
+
.ds-space-x-1\.5 > * + * { margin-inline-start: 0.375rem; }
|
|
11584
|
+
|
|
11585
|
+
/* --- Responsive: md (768px) — all-sides padding --- */
|
|
11586
|
+
@media (min-width: 768px) {
|
|
11587
|
+
|
|
11588
|
+
.ds-md\:p-2 { padding: var(--ds-space-2); }
|
|
11589
|
+
.ds-md\:p-3 { padding: var(--ds-space-3); }
|
|
11590
|
+
.ds-md\:p-4 { padding: var(--ds-space-4); }
|
|
11591
|
+
.ds-md\:p-5 { padding: var(--ds-space-5); }
|
|
11592
|
+
.ds-md\:p-6 { padding: var(--ds-space-6); }
|
|
11593
|
+
.ds-md\:p-8 { padding: var(--ds-space-8); }
|
|
11594
|
+
.ds-md\:p-10 { padding: var(--ds-space-10); }
|
|
11595
|
+
.ds-md\:p-12 { padding: var(--ds-space-12); }
|
|
11596
|
+
}
|
|
11597
|
+
|
|
11598
|
+
|
|
11599
|
+
/* --- Responsive: lg (1024px) — all-sides padding --- */
|
|
11600
|
+
@media (min-width: 1024px) {
|
|
11601
|
+
|
|
11602
|
+
.ds-lg\:p-6 { padding: var(--ds-space-6); }
|
|
11603
|
+
.ds-lg\:p-8 { padding: var(--ds-space-8); }
|
|
11604
|
+
.ds-lg\:p-10 { padding: var(--ds-space-10); }
|
|
11605
|
+
.ds-lg\:p-12 { padding: var(--ds-space-12); }
|
|
11606
|
+
}
|
|
11607
|
+
|
|
11608
|
+
|
|
11551
11609
|
/* ==========================================================================
|
|
11552
11610
|
Utilities: Sizing
|
|
11553
11611
|
Width, height, min/max constraints.
|
|
@@ -11622,6 +11680,16 @@ tr:hover .ds-sortable__handle,
|
|
|
11622
11680
|
}
|
|
11623
11681
|
|
|
11624
11682
|
|
|
11683
|
+
/* --- Decimal sizing --- */
|
|
11684
|
+
.ds-w-0\.5 { width: 0.125rem; }
|
|
11685
|
+
.ds-w-1\.5 { width: 0.375rem; }
|
|
11686
|
+
.ds-w-2\.5 { width: 0.625rem; }
|
|
11687
|
+
.ds-w-3\.5 { width: 0.875rem; }
|
|
11688
|
+
.ds-h-0\.5 { height: 0.125rem; }
|
|
11689
|
+
.ds-h-1\.5 { height: 0.375rem; }
|
|
11690
|
+
.ds-h-2\.5 { height: 0.625rem; }
|
|
11691
|
+
.ds-h-3\.5 { height: 0.875rem; }
|
|
11692
|
+
|
|
11625
11693
|
/* ==========================================================================
|
|
11626
11694
|
Utilities: Text, Visual & style helpers
|
|
11627
11695
|
========================================================================== */
|
|
@@ -12002,6 +12070,16 @@ tr:hover .ds-sortable__handle,
|
|
|
12002
12070
|
border-width: 0;
|
|
12003
12071
|
}
|
|
12004
12072
|
|
|
12073
|
+
/* --- Responsive: md (768px) — small text sizes --- */
|
|
12074
|
+
@media (min-width: 768px) {
|
|
12075
|
+
|
|
12076
|
+
.ds-md\:text-xs { font-size: var(--ds-text-xs); }
|
|
12077
|
+
.ds-md\:text-sm { font-size: var(--ds-text-sm); }
|
|
12078
|
+
.ds-md\:text-base { font-size: var(--ds-text-base); }
|
|
12079
|
+
.ds-md\:text-5xl { font-size: var(--ds-text-5xl); }
|
|
12080
|
+
}
|
|
12081
|
+
|
|
12082
|
+
|
|
12005
12083
|
/* ==========================================================================
|
|
12006
12084
|
Utilities: Interactive
|
|
12007
12085
|
Hover states, reveal patterns, focus rings, and cursor utilities.
|
|
@@ -12119,80 +12197,193 @@ tr:hover .ds-sortable__handle,
|
|
|
12119
12197
|
color: var(--ds-color-text);
|
|
12120
12198
|
}
|
|
12121
12199
|
|
|
12200
|
+
/* --- Backdrop Blur (extended) --- */
|
|
12201
|
+
.ds-backdrop-blur-lg { backdrop-filter: blur(16px); }
|
|
12202
|
+
.ds-backdrop-blur-xl { backdrop-filter: blur(24px); }
|
|
12203
|
+
.ds-backdrop-blur-2xl { backdrop-filter: blur(40px); }
|
|
12204
|
+
|
|
12122
12205
|
/* ==========================================================================
|
|
12123
12206
|
Utilities: State Variants
|
|
12124
|
-
|
|
12125
|
-
modifiers for DS utility classes.
|
|
12207
|
+
Comprehensive hover, focus, active, disabled, focus-within, placeholder,
|
|
12208
|
+
and group-hover modifiers for DS utility classes.
|
|
12209
|
+
|
|
12210
|
+
Pattern: {state}\:ds-{utility}:{pseudo} { property: value; }
|
|
12211
|
+
Usage: <div class="ds-bg-surface hover:ds-bg-hover">
|
|
12212
|
+
|
|
12213
|
+
Only semantic DS tokens are used — no hardcoded values.
|
|
12126
12214
|
========================================================================== */
|
|
12127
12215
|
|
|
12128
12216
|
/* --- Group Marker (enables group-hover on descendants) ---
|
|
12129
12217
|
Supports both .group and .ds-group for compatibility. */
|
|
12130
12218
|
.ds-group { /* marker — no styles */ }
|
|
12131
12219
|
|
|
12220
|
+
/* ==========================================================================
|
|
12221
|
+
HOVER
|
|
12222
|
+
========================================================================== */
|
|
12223
|
+
|
|
12132
12224
|
/* --- Hover: Background --- */
|
|
12133
12225
|
.hover\:ds-bg-base:hover { background-color: var(--ds-color-bg); }
|
|
12134
|
-
.hover\:ds-bg-elevated:hover { background-color: var(--ds-color-bg-elevated); }
|
|
12135
|
-
.hover\:ds-bg-muted:hover { background-color: var(--ds-color-bg-muted); }
|
|
12136
12226
|
.hover\:ds-bg-subtle:hover { background-color: var(--ds-color-bg-subtle); }
|
|
12227
|
+
.hover\:ds-bg-muted:hover { background-color: var(--ds-color-bg-muted); }
|
|
12228
|
+
.hover\:ds-bg-elevated:hover { background-color: var(--ds-color-bg-elevated); }
|
|
12137
12229
|
.hover\:ds-bg-surface:hover { background-color: var(--ds-color-surface); }
|
|
12230
|
+
.hover\:ds-bg-hover:hover { background-color: var(--ds-color-surface-hover); }
|
|
12138
12231
|
.hover\:ds-bg-inverted:hover { background-color: var(--ds-color-inverted); }
|
|
12232
|
+
.hover\:ds-bg-overlay:hover { background-color: var(--ds-color-overlay-hover); }
|
|
12233
|
+
.hover\:ds-bg-success:hover { background-color: var(--ds-color-success); }
|
|
12234
|
+
.hover\:ds-bg-success-subtle:hover { background-color: var(--ds-color-success-subtle); }
|
|
12235
|
+
.hover\:ds-bg-error:hover { background-color: var(--ds-color-error); }
|
|
12236
|
+
.hover\:ds-bg-error-subtle:hover { background-color: var(--ds-color-error-subtle); }
|
|
12237
|
+
.hover\:ds-bg-warning:hover { background-color: var(--ds-color-warning); }
|
|
12238
|
+
.hover\:ds-bg-warning-subtle:hover { background-color: var(--ds-color-warning-subtle); }
|
|
12139
12239
|
.hover\:ds-bg-info:hover { background-color: var(--ds-color-info); }
|
|
12240
|
+
.hover\:ds-bg-info-subtle:hover { background-color: var(--ds-color-info-subtle); }
|
|
12241
|
+
.hover\:ds-bg-accent-blue:hover { background-color: var(--ds-color-accent-blue); }
|
|
12242
|
+
.hover\:ds-bg-accent-blue-subtle:hover { background-color: var(--ds-color-accent-blue-subtle); }
|
|
12243
|
+
.hover\:ds-bg-accent-purple:hover { background-color: var(--ds-color-accent-purple); }
|
|
12244
|
+
.hover\:ds-bg-accent-purple-subtle:hover { background-color: var(--ds-color-accent-purple-subtle); }
|
|
12140
12245
|
|
|
12141
12246
|
/* --- Hover: Text --- */
|
|
12142
12247
|
.hover\:ds-text-primary:hover { color: var(--ds-color-text); }
|
|
12143
12248
|
.hover\:ds-text-secondary:hover { color: var(--ds-color-text-secondary); }
|
|
12144
|
-
.hover\:ds-text-
|
|
12249
|
+
.hover\:ds-text-tertiary:hover { color: var(--ds-color-text-tertiary); }
|
|
12250
|
+
.hover\:ds-text-on-inverted:hover { color: var(--ds-color-on-inverted); }
|
|
12251
|
+
.hover\:ds-text-interactive:hover { color: var(--ds-color-interactive-hover); }
|
|
12252
|
+
.hover\:ds-text-success:hover { color: var(--ds-color-success); }
|
|
12253
|
+
.hover\:ds-text-error:hover { color: var(--ds-color-error); }
|
|
12254
|
+
.hover\:ds-text-warning:hover { color: var(--ds-color-warning); }
|
|
12255
|
+
.hover\:ds-text-info:hover { color: var(--ds-color-info); }
|
|
12145
12256
|
|
|
12146
12257
|
/* --- Hover: Border --- */
|
|
12258
|
+
.hover\:ds-border-default:hover { border-color: var(--ds-color-border); }
|
|
12147
12259
|
.hover\:ds-border-hover:hover { border-color: var(--ds-color-border-hover); }
|
|
12260
|
+
.hover\:ds-border-active:hover { border-color: var(--ds-color-border-active); }
|
|
12148
12261
|
.hover\:ds-border-interactive:hover { border-color: var(--ds-color-interactive); }
|
|
12262
|
+
.hover\:ds-border-success:hover { border-color: var(--ds-color-success); }
|
|
12263
|
+
.hover\:ds-border-error:hover { border-color: var(--ds-color-error); }
|
|
12264
|
+
.hover\:ds-border-info:hover { border-color: var(--ds-color-info); }
|
|
12265
|
+
|
|
12266
|
+
/* --- Hover: Opacity --- */
|
|
12267
|
+
.hover\:ds-opacity-0:hover { opacity: 0; }
|
|
12268
|
+
.hover\:ds-opacity-50:hover { opacity: 0.5; }
|
|
12269
|
+
.hover\:ds-opacity-75:hover { opacity: 0.75; }
|
|
12270
|
+
.hover\:ds-opacity-100:hover { opacity: 1; }
|
|
12271
|
+
|
|
12272
|
+
/* --- Hover: Transform --- */
|
|
12273
|
+
.hover\:ds-scale-105:hover { transform: scale(1.05); }
|
|
12274
|
+
.hover\:ds-scale-110:hover { transform: scale(1.10); }
|
|
12149
12275
|
|
|
12150
12276
|
/* --- Hover: Decoration --- */
|
|
12151
12277
|
.hover\:ds-underline:hover { text-decoration: underline; text-underline-offset: 2px; }
|
|
12278
|
+
.hover\:ds-no-underline:hover { text-decoration: none; }
|
|
12279
|
+
|
|
12280
|
+
/* --- Hover: Shadow --- */
|
|
12281
|
+
.hover\:ds-shadow:hover { box-shadow: var(--ds-shadow-md); }
|
|
12282
|
+
.hover\:ds-shadow-lg:hover { box-shadow: var(--ds-shadow-lg); }
|
|
12283
|
+
.hover\:ds-shadow-none:hover { box-shadow: none; }
|
|
12284
|
+
|
|
12285
|
+
/* ==========================================================================
|
|
12286
|
+
FOCUS
|
|
12287
|
+
========================================================================== */
|
|
12152
12288
|
|
|
12153
|
-
/* --- Focus --- */
|
|
12154
12289
|
.focus\:ds-outline-none:focus { outline: none; }
|
|
12155
12290
|
.focus\:ds-ring-0:focus { box-shadow: none; }
|
|
12156
|
-
.focus\:ds-ring-2:focus { box-shadow: 0 0 0 var(--ds-ring-width) var(--ds-color-interactive); }
|
|
12291
|
+
.focus\:ds-ring-2:focus { box-shadow: 0 0 0 var(--ds-ring-width, 2px) var(--ds-color-interactive); }
|
|
12292
|
+
.focus\:ds-border-interactive:focus { border-color: var(--ds-color-interactive); }
|
|
12293
|
+
|
|
12294
|
+
/* --- Focus-Visible (keyboard only) --- */
|
|
12295
|
+
.focus-visible\:ds-outline-none:focus-visible { outline: none; }
|
|
12296
|
+
.focus-visible\:ds-ring-2:focus-visible { box-shadow: 0 0 0 var(--ds-ring-width, 2px) var(--ds-color-interactive); }
|
|
12157
12297
|
|
|
12158
12298
|
/* --- Focus-Within --- */
|
|
12159
12299
|
.focus-within\:ds-border-interactive:focus-within { border-color: var(--ds-color-interactive); }
|
|
12300
|
+
.focus-within\:ds-border-error:focus-within { border-color: var(--ds-color-error); }
|
|
12160
12301
|
|
|
12161
|
-
/*
|
|
12302
|
+
/* ==========================================================================
|
|
12303
|
+
ACTIVE
|
|
12304
|
+
========================================================================== */
|
|
12305
|
+
|
|
12306
|
+
.active\:ds-bg-hover:active { background-color: var(--ds-color-surface-hover); }
|
|
12307
|
+
.active\:ds-bg-muted:active { background-color: var(--ds-color-bg-muted); }
|
|
12162
12308
|
.active\:ds-bg-elevated:active { background-color: var(--ds-color-bg-elevated); }
|
|
12163
|
-
.active\:ds-
|
|
12309
|
+
.active\:ds-scale-95:active { transform: scale(0.95); }
|
|
12310
|
+
.active\:ds-scale-98:active { transform: scale(0.98); }
|
|
12311
|
+
|
|
12312
|
+
/* ==========================================================================
|
|
12313
|
+
DISABLED
|
|
12314
|
+
========================================================================== */
|
|
12315
|
+
|
|
12316
|
+
.disabled\:ds-opacity-30:disabled,
|
|
12317
|
+
.disabled\:ds-opacity-30[aria-disabled="true"] { opacity: 0.3; }
|
|
12318
|
+
|
|
12319
|
+
.disabled\:ds-opacity-50:disabled,
|
|
12320
|
+
.disabled\:ds-opacity-50[aria-disabled="true"] { opacity: 0.5; }
|
|
12321
|
+
|
|
12322
|
+
.disabled\:ds-cursor-not-allowed:disabled,
|
|
12323
|
+
.disabled\:ds-cursor-not-allowed[aria-disabled="true"] { cursor: not-allowed; }
|
|
12324
|
+
|
|
12325
|
+
.disabled\:ds-bg-subtle:disabled,
|
|
12326
|
+
.disabled\:ds-bg-subtle[aria-disabled="true"] { background-color: var(--ds-color-bg-subtle); }
|
|
12327
|
+
|
|
12328
|
+
.disabled\:ds-pointer-events-none:disabled,
|
|
12329
|
+
.disabled\:ds-pointer-events-none[aria-disabled="true"] { pointer-events: none; }
|
|
12330
|
+
|
|
12331
|
+
/* ==========================================================================
|
|
12332
|
+
PLACEHOLDER
|
|
12333
|
+
========================================================================== */
|
|
12164
12334
|
|
|
12165
|
-
/* --- Placeholder --- */
|
|
12166
12335
|
.placeholder\:ds-text-tertiary::placeholder { color: var(--ds-color-text-tertiary); }
|
|
12336
|
+
.placeholder\:ds-text-secondary::placeholder { color: var(--ds-color-text-secondary); }
|
|
12167
12337
|
|
|
12168
|
-
/*
|
|
12169
|
-
|
|
12170
|
-
.group
|
|
12171
|
-
|
|
12172
|
-
|
|
12173
|
-
color: var(--ds-color-interactive);
|
|
12174
|
-
}
|
|
12338
|
+
/* ==========================================================================
|
|
12339
|
+
GROUP-HOVER
|
|
12340
|
+
Descendants of .group or .ds-group, activated on parent hover.
|
|
12341
|
+
Uses both direct-child and any-descendant for flexibility.
|
|
12342
|
+
========================================================================== */
|
|
12175
12343
|
|
|
12176
|
-
|
|
12177
|
-
.group:hover
|
|
12178
|
-
.ds-group:hover
|
|
12179
|
-
.ds-group:hover .group-hover\:ds-scale-110 {
|
|
12180
|
-
transform: scale(1.1);
|
|
12181
|
-
}
|
|
12344
|
+
/* Text */
|
|
12345
|
+
.group:hover .group-hover\:ds-text-primary,
|
|
12346
|
+
.ds-group:hover .group-hover\:ds-text-primary { color: var(--ds-color-text); }
|
|
12182
12347
|
|
|
12183
|
-
.group:hover
|
|
12184
|
-
.group:hover
|
|
12185
|
-
.ds-group:hover > .group-hover\:ds-translate-x-1,
|
|
12186
|
-
.ds-group:hover .group-hover\:ds-translate-x-1 {
|
|
12187
|
-
transform: translateX(0.25rem);
|
|
12188
|
-
}
|
|
12348
|
+
.group:hover .group-hover\:ds-text-secondary,
|
|
12349
|
+
.ds-group:hover .group-hover\:ds-text-secondary { color: var(--ds-color-text-secondary); }
|
|
12189
12350
|
|
|
12190
|
-
.group:hover
|
|
12191
|
-
.group:hover
|
|
12192
|
-
|
|
12193
|
-
.
|
|
12194
|
-
|
|
12195
|
-
|
|
12351
|
+
.group:hover .group-hover\:ds-text-interactive,
|
|
12352
|
+
.ds-group:hover .group-hover\:ds-text-interactive { color: var(--ds-color-interactive-hover); }
|
|
12353
|
+
|
|
12354
|
+
.group:hover .group-hover\:ds-text-success,
|
|
12355
|
+
.ds-group:hover .group-hover\:ds-text-success { color: var(--ds-color-success); }
|
|
12356
|
+
|
|
12357
|
+
.group:hover .group-hover\:ds-text-info,
|
|
12358
|
+
.ds-group:hover .group-hover\:ds-text-info { color: var(--ds-color-info); }
|
|
12359
|
+
|
|
12360
|
+
/* Opacity */
|
|
12361
|
+
.group:hover .group-hover\:ds-opacity-100,
|
|
12362
|
+
.ds-group:hover .group-hover\:ds-opacity-100 { opacity: 1; }
|
|
12363
|
+
|
|
12364
|
+
.group:hover .group-hover\:ds-opacity-0,
|
|
12365
|
+
.ds-group:hover .group-hover\:ds-opacity-0 { opacity: 0; }
|
|
12366
|
+
|
|
12367
|
+
/* Transform */
|
|
12368
|
+
.group:hover .group-hover\:ds-scale-105,
|
|
12369
|
+
.ds-group:hover .group-hover\:ds-scale-105 { transform: scale(1.05); }
|
|
12370
|
+
|
|
12371
|
+
.group:hover .group-hover\:ds-scale-110,
|
|
12372
|
+
.ds-group:hover .group-hover\:ds-scale-110 { transform: scale(1.10); }
|
|
12373
|
+
|
|
12374
|
+
.group:hover .group-hover\:ds-translate-x-1,
|
|
12375
|
+
.ds-group:hover .group-hover\:ds-translate-x-1 { transform: translateX(0.25rem); }
|
|
12376
|
+
|
|
12377
|
+
.group:hover .group-hover\:ds-translate-y-0,
|
|
12378
|
+
.ds-group:hover .group-hover\:ds-translate-y-0 { transform: translateY(0); }
|
|
12379
|
+
|
|
12380
|
+
/* Border */
|
|
12381
|
+
.group:hover .group-hover\:ds-border-active,
|
|
12382
|
+
.ds-group:hover .group-hover\:ds-border-active { border-color: var(--ds-color-border-active); }
|
|
12383
|
+
|
|
12384
|
+
/* Visibility */
|
|
12385
|
+
.group:hover .group-hover\:ds-visible,
|
|
12386
|
+
.ds-group:hover .group-hover\:ds-visible { visibility: visible; }
|
|
12196
12387
|
|
|
12197
12388
|
/* ==========================================================================
|
|
12198
12389
|
Utilities: Accessibility
|