Browse Source

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>
tags/v16.0.0alpha1
Daniel Calviño Sánchez 5 years ago
parent
commit
7dad6d8f5b
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      core/css/inputs.scss

+ 1
- 0
core/css/inputs.scss View File

@@ -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;
}
}
}

Loading…
Cancel
Save