mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #17945 from overleaf/mf-fix-disabled-state-btn-primary
[web] Fix website redesign primary button disabled style not applied properly because of CSS specificity issue GitOrigin-RevId: 251d1f5b26bfe9a064c9bc7fd4c91fc77d8fbfe0
This commit is contained in:
parent
64e231eae4
commit
97469c9bef
1 changed files with 6 additions and 4 deletions
|
@ -1002,11 +1002,13 @@
|
|||
}
|
||||
|
||||
.btn-primary {
|
||||
background: var(--emerald-green);
|
||||
color: var(--white);
|
||||
&:not([disabled]) {
|
||||
background: var(--emerald-green);
|
||||
color: var(--white);
|
||||
|
||||
&:hover {
|
||||
background: var(--emerald-green-dark);
|
||||
&:hover {
|
||||
background: var(--emerald-green-dark);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue