@db-ux/core-components 1.0.0 → 1.0.1
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/build/components/accordion/accordion.css +1 -1
- package/build/components/accordion/accordion.scss +2 -2
- package/build/components/divider/divider.css +2 -2
- package/build/components/divider/divider.scss +4 -4
- package/build/components/drawer/drawer.css +17 -2
- package/build/components/drawer/drawer.scss +6 -3
- package/build/components/header/header.css +4 -4
- package/build/components/header/header.scss +4 -4
- package/build/components/navigation-item/navigation-item.css +2 -2
- package/build/components/navigation-item/navigation-item.scss +6 -6
- package/build/components/popover/popover.css +1 -1
- package/build/components/select/select.css +1 -1
- package/build/components/select/select.scss +2 -2
- package/build/components/switch/switch.css +3 -3
- package/build/components/tab-item/tab-item.css +9 -9
- package/build/components/tooltip/tooltip.css +1 -1
- package/build/styles/absolute.css +4 -4
- package/build/styles/index.css +4 -4
- package/build/styles/internal/_form-components.scss +12 -10
- package/build/styles/internal/_popover-component.scss +1 -1
- package/build/styles/relative.css +4 -4
- package/build/styles/rollup.css +4 -4
- package/build/styles/webpack.css +4 -4
- package/package.json +6 -6
|
@@ -22,9 +22,9 @@ The spacings are not part of the styling of the accordion items themselves.
|
|
|
22
22
|
.db-accordion[data-variant=divider] db-accordion-item + db-accordion-item .db-accordion-item,
|
|
23
23
|
.db-accordion[data-variant=divider] .db-accordion-item + .db-accordion-item, .db-accordion:not([data-variant]) db-accordion-item + db-accordion-item .db-accordion-item,
|
|
24
24
|
.db-accordion:not([data-variant]) .db-accordion-item + .db-accordion-item {
|
|
25
|
+
margin-block-start: calc(2 * var(--db-spacing-fixed-sm));
|
|
25
26
|
--db-divider-bg-color: var(--db-adaptive-on-bg-basic-emphasis-60-default);
|
|
26
27
|
position: relative;
|
|
27
|
-
margin-block-start: calc(2 * var(--db-spacing-fixed-sm));
|
|
28
28
|
}
|
|
29
29
|
.db-accordion[data-variant=divider] db-accordion-item + db-accordion-item .db-accordion-item[data-emphasis=strong],
|
|
30
30
|
.db-accordion[data-variant=divider] .db-accordion-item + .db-accordion-item[data-emphasis=strong], .db-accordion:not([data-variant]) db-accordion-item + db-accordion-item .db-accordion-item[data-emphasis=strong],
|
|
@@ -22,11 +22,11 @@ The spacings are not part of the styling of the accordion items themselves.
|
|
|
22
22
|
&[data-variant="divider"],
|
|
23
23
|
&:not([data-variant]) {
|
|
24
24
|
@include accordion-subsequent-item-selector() {
|
|
25
|
-
@include helpers.divider($position: "top");
|
|
26
|
-
|
|
27
25
|
// One space each before and after the divider results in a double spacing
|
|
28
26
|
margin-block-start: calc(2 * #{variables.$db-spacing-fixed-sm});
|
|
29
27
|
|
|
28
|
+
@include helpers.divider($position: "top");
|
|
29
|
+
|
|
30
30
|
// Moves the divider to the vertical center of the double spacing
|
|
31
31
|
&::before {
|
|
32
32
|
inset-block-start: calc(-1 * #{variables.$db-spacing-fixed-sm});
|
|
@@ -19,9 +19,9 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
19
19
|
margin: 0;
|
|
20
20
|
}
|
|
21
21
|
.db-divider:not([data-variant=vertical]) {
|
|
22
|
+
block-size: var(--db-border-height-3xs);
|
|
22
23
|
--db-divider-bg-color: var(--db-adaptive-on-bg-basic-emphasis-60-default);
|
|
23
24
|
position: relative;
|
|
24
|
-
block-size: var(--db-border-height-3xs);
|
|
25
25
|
}
|
|
26
26
|
.db-divider:not([data-variant=vertical])[data-emphasis=strong] {
|
|
27
27
|
--db-divider-bg-color: var(--db-adaptive-on-bg-basic-emphasis-70-default);
|
|
@@ -45,9 +45,9 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
45
45
|
inline-size: 100%;
|
|
46
46
|
}
|
|
47
47
|
.db-divider[data-variant=vertical] {
|
|
48
|
+
inline-size: var(--db-border-height-3xs);
|
|
48
49
|
--db-divider-bg-color: var(--db-adaptive-on-bg-basic-emphasis-60-default);
|
|
49
50
|
position: relative;
|
|
50
|
-
inline-size: var(--db-border-height-3xs);
|
|
51
51
|
}
|
|
52
52
|
.db-divider[data-variant=vertical][data-emphasis=strong] {
|
|
53
53
|
--db-divider-bg-color: var(--db-adaptive-on-bg-basic-emphasis-70-default);
|
|
@@ -19,20 +19,20 @@
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
&:not([data-variant="vertical"]) {
|
|
22
|
-
@include helpers.divider();
|
|
23
|
-
|
|
24
22
|
block-size: variables.$db-border-height-3xs;
|
|
25
23
|
|
|
24
|
+
@include helpers.divider();
|
|
25
|
+
|
|
26
26
|
&[data-width="full"] {
|
|
27
27
|
inline-size: 100%;
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
&[data-variant="vertical"] {
|
|
32
|
-
@include helpers.divider("left");
|
|
33
|
-
|
|
34
32
|
inline-size: variables.$db-border-height-3xs;
|
|
35
33
|
|
|
34
|
+
@include helpers.divider("left");
|
|
35
|
+
|
|
36
36
|
&:is(:not([data-margin]), [data-margin="small"]) {
|
|
37
37
|
margin: 0 variables.$db-spacing-fixed-sm;
|
|
38
38
|
}
|
|
@@ -157,7 +157,10 @@ dialog:not([data-backdrop=none])[data-backdrop=weak]::backdrop, dialog:not([data
|
|
|
157
157
|
}
|
|
158
158
|
|
|
159
159
|
.db-drawer .db-drawer-container {
|
|
160
|
-
|
|
160
|
+
/* stylelint-disable-next-line scss/selector-no-redundant-nesting-selector */
|
|
161
|
+
}
|
|
162
|
+
.db-drawer [data-spacing=small].db-drawer-container {
|
|
163
|
+
/* stylelint-disable-next-line scss/selector-no-redundant-nesting-selector */
|
|
161
164
|
}
|
|
162
165
|
.db-drawer [data-spacing=small].db-drawer-container {
|
|
163
166
|
padding-block: var(--db-spacing-fixed-xs);
|
|
@@ -172,6 +175,9 @@ dialog:not([data-backdrop=none])[data-backdrop=weak]::backdrop, dialog:not([data
|
|
|
172
175
|
padding-inline: var(--db-drawer-content-padding-inline, var(--db-spacing-fixed-md));
|
|
173
176
|
overflow-y: auto;
|
|
174
177
|
}
|
|
178
|
+
.db-drawer .db-drawer-container {
|
|
179
|
+
padding-block: var(--db-spacing-fixed-sm);
|
|
180
|
+
}
|
|
175
181
|
.db-drawer .db-drawer-container .db-drawer-header {
|
|
176
182
|
/* stylelint-disable-next-line db-ux/use-spacings */
|
|
177
183
|
padding-block-end: var(--db-drawer-header-padding-block-end, var(--db-spacing-fixed-sm));
|
|
@@ -182,6 +188,9 @@ dialog:not([data-backdrop=none])[data-backdrop=weak]::backdrop, dialog:not([data
|
|
|
182
188
|
padding-inline: var(--db-drawer-content-padding-inline, var(--db-spacing-fixed-lg));
|
|
183
189
|
overflow-y: auto;
|
|
184
190
|
}
|
|
191
|
+
.db-drawer [data-spacing=medium].db-drawer-container {
|
|
192
|
+
/* stylelint-disable-next-line scss/selector-no-redundant-nesting-selector */
|
|
193
|
+
}
|
|
185
194
|
.db-drawer [data-spacing=medium].db-drawer-container {
|
|
186
195
|
padding-block: var(--db-spacing-fixed-sm);
|
|
187
196
|
}
|
|
@@ -195,6 +204,9 @@ dialog:not([data-backdrop=none])[data-backdrop=weak]::backdrop, dialog:not([data
|
|
|
195
204
|
padding-inline: var(--db-drawer-content-padding-inline, var(--db-spacing-fixed-lg));
|
|
196
205
|
overflow-y: auto;
|
|
197
206
|
}
|
|
207
|
+
.db-drawer [data-spacing=large].db-drawer-container {
|
|
208
|
+
/* stylelint-disable-next-line scss/selector-no-redundant-nesting-selector */
|
|
209
|
+
}
|
|
198
210
|
.db-drawer [data-spacing=large].db-drawer-container {
|
|
199
211
|
padding-block: var(--db-spacing-fixed-md);
|
|
200
212
|
}
|
|
@@ -208,6 +220,9 @@ dialog:not([data-backdrop=none])[data-backdrop=weak]::backdrop, dialog:not([data
|
|
|
208
220
|
padding-inline: var(--db-drawer-content-padding-inline, var(--db-spacing-fixed-xl));
|
|
209
221
|
overflow-y: auto;
|
|
210
222
|
}
|
|
223
|
+
.db-drawer [data-spacing=none].db-drawer-container {
|
|
224
|
+
/* stylelint-disable-next-line scss/selector-no-redundant-nesting-selector */
|
|
225
|
+
}
|
|
211
226
|
.db-drawer [data-spacing=none].db-drawer-container {
|
|
212
227
|
padding-block: 0;
|
|
213
228
|
}
|
|
@@ -238,9 +253,9 @@ dialog:not([data-backdrop=none])[data-backdrop=weak]::backdrop, dialog:not([data
|
|
|
238
253
|
box-shadow: var(--db-elevation-md);
|
|
239
254
|
}
|
|
240
255
|
.db-drawer .db-drawer-container .db-drawer-header {
|
|
256
|
+
display: none;
|
|
241
257
|
--db-divider-bg-color: var(--db-adaptive-on-bg-basic-emphasis-60-default);
|
|
242
258
|
position: relative;
|
|
243
|
-
display: none;
|
|
244
259
|
}
|
|
245
260
|
.db-drawer .db-drawer-container .db-drawer-header[data-emphasis=strong] {
|
|
246
261
|
--db-divider-bg-color: var(--db-adaptive-on-bg-basic-emphasis-70-default);
|
|
@@ -76,7 +76,10 @@ $spacings: (
|
|
|
76
76
|
);
|
|
77
77
|
|
|
78
78
|
@mixin get-spacing($spacing) {
|
|
79
|
-
|
|
79
|
+
/* stylelint-disable-next-line scss/selector-no-redundant-nesting-selector */
|
|
80
|
+
& {
|
|
81
|
+
padding-block: map.get($spacing, "block");
|
|
82
|
+
}
|
|
80
83
|
|
|
81
84
|
.db-drawer-header {
|
|
82
85
|
// We need this variable to overwrite it inside the header
|
|
@@ -149,10 +152,10 @@ $spacings: (
|
|
|
149
152
|
}
|
|
150
153
|
|
|
151
154
|
.db-drawer-header {
|
|
152
|
-
@include helpers.divider("bottom");
|
|
153
|
-
|
|
154
155
|
display: none;
|
|
155
156
|
|
|
157
|
+
@include helpers.divider("bottom");
|
|
158
|
+
|
|
156
159
|
.db-drawer-header-text {
|
|
157
160
|
margin-block: auto;
|
|
158
161
|
font-weight: 700;
|
|
@@ -401,14 +401,14 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
401
401
|
}
|
|
402
402
|
|
|
403
403
|
.db-header-meta-navigation {
|
|
404
|
-
--db-divider-bg-color: var(--db-adaptive-on-bg-basic-emphasis-60-default);
|
|
405
|
-
position: relative;
|
|
406
404
|
display: flex;
|
|
407
405
|
flex-direction: column;
|
|
408
406
|
gap: var(--db-spacing-fixed-sm);
|
|
409
407
|
justify-content: flex-end;
|
|
410
408
|
background-color: var(--db-adaptive-bg-basic-level-2-default);
|
|
411
409
|
padding: var(--db-spacing-fixed-md);
|
|
410
|
+
--db-divider-bg-color: var(--db-adaptive-on-bg-basic-emphasis-60-default);
|
|
411
|
+
position: relative;
|
|
412
412
|
/* stylelint-disable at-rule-empty-line-before */
|
|
413
413
|
/* stylelint-enable at-rule-empty-line-before */
|
|
414
414
|
/* stylelint-disable-next-line media-query-no-invalid */
|
|
@@ -566,12 +566,12 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
566
566
|
}
|
|
567
567
|
|
|
568
568
|
.db-header-secondary-action {
|
|
569
|
-
--db-divider-bg-color: var(--db-adaptive-on-bg-basic-emphasis-60-default);
|
|
570
|
-
position: relative;
|
|
571
569
|
flex: 0 1 auto;
|
|
572
570
|
flex-grow: 0;
|
|
573
571
|
flex-shrink: 0;
|
|
574
572
|
padding-block-start: var(--db-spacing-fixed-xs);
|
|
573
|
+
--db-divider-bg-color: var(--db-adaptive-on-bg-basic-emphasis-60-default);
|
|
574
|
+
position: relative;
|
|
575
575
|
/* stylelint-disable at-rule-empty-line-before */
|
|
576
576
|
/* stylelint-enable at-rule-empty-line-before */
|
|
577
577
|
/* stylelint-disable-next-line media-query-no-invalid */
|
|
@@ -69,8 +69,6 @@
|
|
|
69
69
|
.db-header-meta-navigation {
|
|
70
70
|
@extend %db-density-functional;
|
|
71
71
|
|
|
72
|
-
@include helpers.divider("top");
|
|
73
|
-
|
|
74
72
|
display: flex;
|
|
75
73
|
flex-direction: column;
|
|
76
74
|
gap: variables.$db-spacing-fixed-sm;
|
|
@@ -78,6 +76,8 @@
|
|
|
78
76
|
background-color: colors.$db-adaptive-bg-basic-level-2-default;
|
|
79
77
|
padding: variables.$db-spacing-fixed-md;
|
|
80
78
|
|
|
79
|
+
@include helpers.divider("top");
|
|
80
|
+
|
|
81
81
|
@include screen-sizes.screen("md") {
|
|
82
82
|
padding: variables.$db-spacing-fixed-xs variables.$db-spacing-fixed-lg;
|
|
83
83
|
margin: 0;
|
|
@@ -162,13 +162,13 @@
|
|
|
162
162
|
}
|
|
163
163
|
|
|
164
164
|
.db-header-secondary-action {
|
|
165
|
-
@include helpers.divider("top");
|
|
166
|
-
|
|
167
165
|
flex: 0 1 auto;
|
|
168
166
|
flex-grow: 0;
|
|
169
167
|
flex-shrink: 0;
|
|
170
168
|
padding-block-start: variables.$db-spacing-fixed-xs;
|
|
171
169
|
|
|
170
|
+
@include helpers.divider("top");
|
|
171
|
+
|
|
172
172
|
@include screen-sizes.screen("md") {
|
|
173
173
|
&::before {
|
|
174
174
|
display: none;
|
|
@@ -454,13 +454,13 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
454
454
|
}
|
|
455
455
|
|
|
456
456
|
.db-mobile-navigation-back {
|
|
457
|
-
--db-divider-bg-color: var(--db-adaptive-on-bg-basic-emphasis-60-default);
|
|
458
|
-
position: relative;
|
|
459
457
|
display: flex;
|
|
460
458
|
font-weight: normal;
|
|
461
459
|
background-color: var(--db-adaptive-bg-basic-level-1-default);
|
|
462
460
|
padding-block-end: var(--db-spacing-fixed-md);
|
|
463
461
|
margin-block-end: var(--db-spacing-fixed-md);
|
|
462
|
+
--db-divider-bg-color: var(--db-adaptive-on-bg-basic-emphasis-60-default);
|
|
463
|
+
position: relative;
|
|
464
464
|
}
|
|
465
465
|
.db-mobile-navigation-back[data-emphasis=strong] {
|
|
466
466
|
--db-divider-bg-color: var(--db-adaptive-on-bg-basic-emphasis-70-default);
|
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
// show/hide sub-navigation by click
|
|
24
24
|
&[aria-expanded="true"] {
|
|
25
25
|
~ .db-sub-navigation {
|
|
26
|
+
visibility: visible;
|
|
27
|
+
|
|
26
28
|
@media screen and (prefers-reduced-motion: no-preference) {
|
|
27
29
|
transition: visibility 0ms linear 0ms;
|
|
28
30
|
animation: show-right-to-left
|
|
29
31
|
#{variables.$db-transition-straight-show};
|
|
30
32
|
}
|
|
31
33
|
|
|
32
|
-
visibility: visible;
|
|
33
|
-
|
|
34
34
|
.db-sub-navigation {
|
|
35
35
|
inset-block: 0;
|
|
36
36
|
}
|
|
@@ -118,10 +118,10 @@
|
|
|
118
118
|
@extend %sub-navi-handler-desktop;
|
|
119
119
|
@extend %navigation-item;
|
|
120
120
|
|
|
121
|
+
font-weight: inherit;
|
|
122
|
+
|
|
121
123
|
// default icon for navigation
|
|
122
124
|
@include icons.set-icon("chevron_right", "after");
|
|
123
|
-
|
|
124
|
-
font-weight: inherit;
|
|
125
125
|
}
|
|
126
126
|
}
|
|
127
127
|
|
|
@@ -300,11 +300,11 @@
|
|
|
300
300
|
}
|
|
301
301
|
|
|
302
302
|
.db-mobile-navigation-back {
|
|
303
|
-
@include helpers.divider("bottom");
|
|
304
|
-
|
|
305
303
|
display: flex;
|
|
306
304
|
font-weight: normal;
|
|
307
305
|
background-color: colors.$db-adaptive-bg-basic-level-1-default;
|
|
308
306
|
padding-block-end: variables.$db-spacing-fixed-md;
|
|
309
307
|
margin-block-end: variables.$db-spacing-fixed-md;
|
|
308
|
+
|
|
309
|
+
@include helpers.divider("bottom");
|
|
310
310
|
}
|
|
@@ -256,7 +256,7 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
256
256
|
background-color: var(--db-adaptive-bg-basic-level-1-default);
|
|
257
257
|
box-shadow: var(--db-elevation-md);
|
|
258
258
|
display: none;
|
|
259
|
-
z-index:
|
|
259
|
+
z-index: 1337;
|
|
260
260
|
white-space: nowrap;
|
|
261
261
|
}
|
|
262
262
|
.db-popover > article[data-width=fixed] {
|
|
@@ -439,11 +439,11 @@ select:is(input, textarea):not(:placeholder-shown),
|
|
|
439
439
|
--db-form-component-padding-inline-end: calc(
|
|
440
440
|
calc(var(--db-base-font-size) * var(--db-base-line-height)) + var(--db-spacing-fixed-sm)
|
|
441
441
|
);
|
|
442
|
+
min-inline-size: calc(4 * var(--db-sizing-md) + var(--db-form-has-before) * var(--db-sizing-md));
|
|
442
443
|
--db-form-has-before: 0;
|
|
443
444
|
position: relative;
|
|
444
445
|
display: flex;
|
|
445
446
|
flex-direction: column;
|
|
446
|
-
min-inline-size: calc(4 * var(--db-sizing-md) + var(--db-form-has-before) * var(--db-sizing-md));
|
|
447
447
|
}
|
|
448
448
|
.db-select[data-variant=floating] label {
|
|
449
449
|
opacity: 0.69;
|
|
@@ -26,13 +26,13 @@ $has-before-padding: calc(
|
|
|
26
26
|
// shared from form-components
|
|
27
27
|
@extend %select-icon;
|
|
28
28
|
|
|
29
|
-
@include form-components.set-default-form-component(select);
|
|
30
|
-
|
|
31
29
|
min-inline-size: calc(
|
|
32
30
|
4 * #{variables.$db-sizing-md} + var(--db-form-has-before) *
|
|
33
31
|
#{variables.$db-sizing-md}
|
|
34
32
|
);
|
|
35
33
|
|
|
34
|
+
@include form-components.set-default-form-component(select);
|
|
35
|
+
|
|
36
36
|
select {
|
|
37
37
|
text-indent: $has-before-padding;
|
|
38
38
|
}
|
|
@@ -863,15 +863,15 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
863
863
|
background-color: var(--db-adaptive-bg-inverted-contrast-low-pressed);
|
|
864
864
|
border-color: var(--db-adaptive-on-bg-basic-emphasis-70-pressed);
|
|
865
865
|
}
|
|
866
|
+
.db-switch[data-emphasis=strong] > input:active:not(:disabled, [aria-disabled=true])::before {
|
|
867
|
+
block-size: calc(calc(var(--db-base-font-size) * var(--db-base-line-height)) - 0.125rem * 2);
|
|
868
|
+
}
|
|
866
869
|
.db-switch[data-emphasis=strong] > input:active:not(:disabled, [aria-disabled=true]):is(textarea), .db-switch[data-emphasis=strong] > input:active:not(:disabled, [aria-disabled=true]):is(input) {
|
|
867
870
|
cursor: initial;
|
|
868
871
|
}
|
|
869
872
|
.db-switch[data-emphasis=strong] > input:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]), .db-switch[data-emphasis=strong] > input:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)) {
|
|
870
873
|
cursor: pointer;
|
|
871
874
|
}
|
|
872
|
-
.db-switch[data-emphasis=strong] > input:active:not(:disabled, [aria-disabled=true])::before {
|
|
873
|
-
block-size: calc(calc(var(--db-base-font-size) * var(--db-base-line-height)) - 0.125rem * 2);
|
|
874
|
-
}
|
|
875
875
|
.db-switch[data-emphasis=strong] > input:not(:checked) {
|
|
876
876
|
--thumb-offset-x: 0;
|
|
877
877
|
}
|
|
@@ -70,33 +70,33 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
70
70
|
.db-tab-item label:hover:not(:disabled, [aria-disabled=true]) {
|
|
71
71
|
cursor: pointer;
|
|
72
72
|
}
|
|
73
|
-
.db-tab-item label:hover:not(:disabled, [aria-disabled=true]):is(textarea), .db-tab-item label:hover:not(:disabled, [aria-disabled=true]):is(input) {
|
|
74
|
-
cursor: initial;
|
|
75
|
-
}
|
|
76
|
-
.db-tab-item label:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]), .db-tab-item label:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)) {
|
|
77
|
-
cursor: pointer;
|
|
78
|
-
}
|
|
79
73
|
.db-tab-item label:hover:not(:disabled, [aria-disabled=true]):has(:not(input:disabled)) {
|
|
80
74
|
background-color: var(--db-adaptive-bg-basic-transparent-hovered);
|
|
81
75
|
}
|
|
82
76
|
.db-tab-item label:hover:not(:disabled, [aria-disabled=true]):has(input:disabled) {
|
|
83
77
|
cursor: initial;
|
|
84
78
|
}
|
|
85
|
-
.db-tab-item label:hover:not(:disabled, [aria-disabled=true]) {
|
|
86
|
-
cursor: pointer;
|
|
87
|
-
}
|
|
88
79
|
.db-tab-item label:hover:not(:disabled, [aria-disabled=true]):is(textarea), .db-tab-item label:hover:not(:disabled, [aria-disabled=true]):is(input) {
|
|
89
80
|
cursor: initial;
|
|
90
81
|
}
|
|
91
82
|
.db-tab-item label:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]), .db-tab-item label:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)) {
|
|
92
83
|
cursor: pointer;
|
|
93
84
|
}
|
|
85
|
+
.db-tab-item label:hover:not(:disabled, [aria-disabled=true]) {
|
|
86
|
+
cursor: pointer;
|
|
87
|
+
}
|
|
94
88
|
.db-tab-item label:hover:not(:disabled, [aria-disabled=true]):has(:not(input:disabled)) {
|
|
95
89
|
background-color: var(--db-adaptive-bg-basic-transparent-hovered);
|
|
96
90
|
}
|
|
97
91
|
.db-tab-item label:hover:not(:disabled, [aria-disabled=true]):has(input:disabled) {
|
|
98
92
|
cursor: initial;
|
|
99
93
|
}
|
|
94
|
+
.db-tab-item label:hover:not(:disabled, [aria-disabled=true]):is(textarea), .db-tab-item label:hover:not(:disabled, [aria-disabled=true]):is(input) {
|
|
95
|
+
cursor: initial;
|
|
96
|
+
}
|
|
97
|
+
.db-tab-item label:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]), .db-tab-item label:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)) {
|
|
98
|
+
cursor: pointer;
|
|
99
|
+
}
|
|
100
100
|
.db-tab-item label:has(input:checked) {
|
|
101
101
|
font-weight: 700;
|
|
102
102
|
}
|
|
@@ -272,7 +272,7 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
272
272
|
background-color: var(--db-adaptive-bg-basic-level-1-default);
|
|
273
273
|
box-shadow: var(--db-elevation-md);
|
|
274
274
|
display: none;
|
|
275
|
-
z-index:
|
|
275
|
+
z-index: 1337;
|
|
276
276
|
white-space: nowrap;
|
|
277
277
|
}
|
|
278
278
|
[data-width=fixed].db-tooltip {
|