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:
Roeland Jago Douma 2020-04-02 20:38:03 +02:00 committed by GitHub
commit 7042f99e9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

View File

@ -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 */