Merge pull request #19672 from nextcloud/fix-pointer-cursor-on-icons-in-primary-button
Fix cursor on click inputs and their descendants
This commit is contained in:
commit
7042f99e9d
|
@ -178,6 +178,22 @@ input[type='reset'] {
|
|||
cursor: pointer;
|
||||
box-sizing: border-box;
|
||||
background-color: var(--color-background-dark);
|
||||
|
||||
&:disabled {
|
||||
cursor: default;
|
||||
}
|
||||
}
|
||||
select,
|
||||
button, .button {
|
||||
* {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
&:disabled {
|
||||
* {
|
||||
cursor: default;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Buttons */
|
||||
|
|
Loading…
Reference in New Issue