mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
40 lines
552 B
SCSS
40 lines
552 B
SCSS
@import "../../themes/ionic.globals";
|
|
|
|
// Button Icons
|
|
// --------------------------------------------------
|
|
|
|
// Icons inside of buttons with text
|
|
@mixin button-icon {
|
|
font-size: 1.4em;
|
|
line-height: .67;
|
|
|
|
pointer-events: none;
|
|
}
|
|
|
|
[icon-left] ion-icon {
|
|
@include button-icon;
|
|
|
|
padding-right: .3em;
|
|
}
|
|
|
|
[icon-right] ion-icon {
|
|
@include button-icon;
|
|
|
|
padding-left: .4em;
|
|
}
|
|
|
|
.button[icon-only] {
|
|
padding: 0;
|
|
|
|
min-width: .9em;
|
|
}
|
|
|
|
[icon-only] ion-icon {
|
|
padding: 0 .5em;
|
|
|
|
font-size: 1.8em;
|
|
line-height: .67;
|
|
|
|
pointer-events: none;
|
|
}
|