diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-04-02 20:38:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-02 20:38:03 +0200 |
commit | 7042f99e9d0b027469cda87225d42ef348773beb (patch) | |
tree | 898ee57bff9f68f885773f0e8924a6d30e4e581f /core | |
parent | 12d193241faf0e56591061947922da64788e7883 (diff) | |
parent | 52706213d37a3ac6df6568de7f6b283507de56d4 (diff) | |
download | nextcloud-server-7042f99e9d0b027469cda87225d42ef348773beb.tar.gz nextcloud-server-7042f99e9d0b027469cda87225d42ef348773beb.zip |
Merge pull request #19672 from nextcloud/fix-pointer-cursor-on-icons-in-primary-button
Fix cursor on click inputs and their descendants
Diffstat (limited to 'core')
-rw-r--r-- | core/css/inputs.scss | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/core/css/inputs.scss b/core/css/inputs.scss index 175790b5f30..87dc6a44806 100644 --- a/core/css/inputs.scss +++ b/core/css/inputs.scss @@ -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 */ |