mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2025-12-06 02:30:54 -08:00
16 lines
491 B
SCSS
16 lines
491 B
SCSS
#forward-button[disabled="true"] {
|
|
margin-left: var(--uc-toolbarbutton-hide-size) !important;
|
|
opacity: 0 !important;
|
|
pointer-events: none;
|
|
}
|
|
|
|
@include Animate {
|
|
#forward-button {
|
|
transition-property: background-color, opacity, margin-left !important;
|
|
}
|
|
#forward-button[disabled="true"] {
|
|
transition: background-color 1s var(--animation-easing-function),
|
|
opacity 1s var(--animation-easing-function),
|
|
margin-left 0.5s ease !important;
|
|
}
|
|
}
|