mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
84 lines
1.5 KiB
SCSS
84 lines
1.5 KiB
SCSS
@import "../../globals.core";
|
|
|
|
// Buttons
|
|
// --------------------------------------------------
|
|
|
|
$button-round-padding: 0 2.6rem !default;
|
|
$button-round-border-radius: 64px !default;
|
|
|
|
|
|
.button {
|
|
position: relative;
|
|
display: inline-flex;
|
|
flex-shrink: 0;
|
|
flex-flow: row nowrap;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: background-color, opacity 100ms linear;
|
|
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
|
|
text-align: center;
|
|
text-transform: none;
|
|
|
|
vertical-align: top; // the better option for most scenarios
|
|
vertical-align: -webkit-baseline-middle; // the best for those that support it
|
|
|
|
cursor: pointer;
|
|
@include user-select-none();
|
|
@include appearance(none);
|
|
}
|
|
|
|
a.button {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.button-disabled {
|
|
opacity: 0.4;
|
|
cursor: default !important;
|
|
pointer-events: none;
|
|
}
|
|
|
|
|
|
// Block Button
|
|
// --------------------------------------------------
|
|
|
|
.button-block {
|
|
display: flex;
|
|
clear: both;
|
|
margin-right: 0;
|
|
margin-left: 0;
|
|
width: 100%;
|
|
|
|
&:after {
|
|
clear: both;
|
|
}
|
|
}
|
|
|
|
|
|
// Full Button
|
|
// --------------------------------------------------
|
|
|
|
.button-full {
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
// Round Button
|
|
// --------------------------------------------------
|
|
|
|
.button-round {
|
|
padding: $button-round-padding;
|
|
border-radius: $button-round-border-radius;
|
|
}
|
|
|
|
// Full Outline Button
|
|
// --------------------------------------------------
|
|
|
|
.button-full.button-outline {
|
|
border-left-width: 0;
|
|
border-right-width: 0;
|
|
}
|