From: hylom Date: Tue, 5 Mar 2019 14:32:56 +0000 (+0900) Subject: css: fix active button style X-Git-Tag: v0.1.9~12 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=f563eb0f3a96048f1d25fb7e5e8aaa95f456efa7;p=newslash%2Fnewslash.git css: fix active button style --- diff --git a/src/newslash_web/css/newslash/form.less b/src/newslash_web/css/newslash/form.less index 3c085f37..94c93235 100644 --- a/src/newslash_web/css/newslash/form.less +++ b/src/newslash_web/css/newslash/form.less @@ -24,7 +24,7 @@ &:disabled { cursor: inherit; } &:hover:not(:disabled) { background: @form-element-hover-background; } - .active:not(:disabled) { background: @form-element-hover-background; } + &.active:not(:disabled) { background: @form-element-hover-background; } } .checkbox-base { @@ -87,4 +87,4 @@ form:not(.compact), .form { &:extend(.button-base all); padding: 6px 8px; } -} \ No newline at end of file +}