mediawiki-extensions-Echo/modules/echo.mixins.less
Ed Sanders 5289d1e8f2 Fix opacity of focus styles
Ensure buttons have full opacity when focused, as when hovered.

Change-Id: Id16e9e3691b7d9b0ebb03ac78bbe86c80568a00b
2023-02-02 17:06:55 +00:00

9 lines
101 B
Plaintext

.mw-echo-ui-mixin-hover-opacity() {
opacity: @opacity-low;
&:hover,
&:focus {
opacity: 1;
}
}