Skip to content

Commit

Permalink
fix css selector
Browse files Browse the repository at this point in the history
  • Loading branch information
jsartisan committed Jan 6, 2025
1 parent f46fd97 commit 46ea6b4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
display: flex;
align-items: center;
gap: var(--inner-spacing-1);
height: var(--sizing-3);
min-height: var(--sizing-3);
margin-block-end: var(--inner-spacing-3);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
padding-block: var(--inner-spacing-1);
padding-inline: var(--inner-spacing-2);
box-sizing: content-box;
cursor: inherit;
}

.inputGroup:has([data-input-prefix]) .input {
Expand Down Expand Up @@ -143,8 +144,9 @@
* DISABLED
* ----------------------------------------------------------------------------
*/
.inputGroup:has(> .input[data-disabled]),
.inputGroup:has(> .input:has(~ input[data-disabled])) {
.inputGroup:has(
:is(.input[data-disabled], .input:has(~ input[data-disabled]))
) {
cursor: not-allowed;
box-shadow: none;
}
Expand Down

0 comments on commit 46ea6b4

Please sign in to comment.