diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-12-11 10:25:48 +0100 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-12-11 10:25:48 +0100 |
commit | 7dad6d8f5bde5491d50311d5d85e79ca78a0ff36 (patch) | |
tree | 584a745517f1927d1fd5df10ba3067d210e15557 /core/css/inputs.scss | |
parent | 866c42a1647afe58f407094a0fc449572ad6638d (diff) | |
download | nextcloud-server-7dad6d8f5bde5491d50311d5d85e79ca78a0ff36.tar.gz nextcloud-server-7dad6d8f5bde5491d50311d5d85e79ca78a0ff36.zip |
Use default cursor for disabled primary buttons
Disabled buttons use the default cursor, but as the cursor property for
primary buttons is set after the cursor property for disabled buttons
the latter is always overridden, even if the primary button is also
disabled. Due to this it is necessary to explicitly set the default
cursor for disabled primary buttons.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'core/css/inputs.scss')
-rw-r--r-- | core/css/inputs.scss | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/css/inputs.scss b/core/css/inputs.scss index 8b4198644da..eea6fa0fe59 100644 --- a/core/css/inputs.scss +++ b/core/css/inputs.scss @@ -110,6 +110,7 @@ div[contenteditable=true], // opacity is already defined to .5 if disabled background-color: var(--color-primary-element); color: var(--color-primary-text-dark); + cursor: default; } } } |