mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
21 lines
375 B
SCSS
21 lines
375 B
SCSS
@import "../../globals.core";
|
|
|
|
// Clear Button
|
|
// --------------------------------------------------
|
|
|
|
.button-clear {
|
|
border-color: transparent;
|
|
background: transparent;
|
|
color: color-shade($button-color);
|
|
|
|
&.activated {
|
|
opacity: 0.4;
|
|
background: transparent;
|
|
}
|
|
|
|
&:hover:not(.disable-hover) {
|
|
opacity: 0.6;
|
|
color: color-shade($button-color);
|
|
}
|
|
}
|