[bugfix] Button: should be unclickavble when loading (#779)

This commit is contained in:
neverland
2018-03-26 19:52:17 +08:00
committed by GitHub
parent 9930a3263b
commit dadf733d71
3 changed files with 8 additions and 3 deletions

View File

@@ -27,10 +27,14 @@
transform: translate(-50%, -50%);
}
&:not([disabled]):active::before {
&:active::before {
opacity: .3;
}
&--unclickable:before {
display: none;
}
&--default {
color: $button-default-color;
background-color: $button-default-background-color;