Remove form element rule !important suffix on Windows (#4528)
Fix tab bar button hover effect on Windows A follow up fix of #4518
This commit is contained in:
parent
4c32317ba4
commit
01f9222735
1 changed files with 2 additions and 3 deletions
|
@ -1,13 +1,12 @@
|
|||
@mixin windows-form-element-base {
|
||||
appearance: none;
|
||||
padding: 0;
|
||||
border: 1px solid transparent !important;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 4px;
|
||||
|
||||
background-origin: border-box;
|
||||
background-clip: padding-box, padding-box, border-box;
|
||||
// Overwrite default background color
|
||||
background-color: unset !important;
|
||||
background-color: unset;
|
||||
// Simulate linear-gradient border with border-radius using background-image
|
||||
|
||||
@include light-dark(--color-form-element-background, var(--color-background70), var(--fill-quinary));
|
||||
|
|
Loading…
Reference in a new issue