mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
68 lines
1.7 KiB
SCSS
68 lines
1.7 KiB
SCSS
@import "../../../ionic.globals";
|
|
@import "../action-sheet";
|
|
|
|
// Material Design Action Sheet
|
|
// --------------------------------------------------
|
|
|
|
$action-sheet-md-background-color: #fafafa !default;
|
|
|
|
$action-sheet-md-height: 4.8rem !default;
|
|
|
|
$action-sheet-md-title-color: #757575 !default;
|
|
$action-sheet-md-title-font-size: 1.6rem !default;
|
|
$action-sheet-md-title-padding: 1.9rem 1.6rem 1.7rem !default;
|
|
|
|
$action-sheet-md-button-text-color: #222 !default;
|
|
$action-sheet-md-button-font-size: 1.6rem !default;
|
|
$action-sheet-md-background-active-color: #f1f1f1 !default;
|
|
|
|
$action-sheet-md-icon-font-size: 2.4rem !default;
|
|
$action-sheet-md-icon-margin: 0 28px 0 0 !default;
|
|
|
|
|
|
.action-sheet-title {
|
|
padding: $action-sheet-md-title-padding;
|
|
font-size: $action-sheet-md-title-font-size;
|
|
color: $action-sheet-md-title-color;
|
|
text-align: left;
|
|
}
|
|
|
|
.action-sheet-button {
|
|
background-color: transparent;
|
|
font-weight: normal;
|
|
min-height: $action-sheet-md-height;
|
|
color: $action-sheet-md-button-text-color;
|
|
text-align: left;
|
|
|
|
&.activated {
|
|
background: $action-sheet-md-background-active-color;
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
}
|
|
}
|
|
|
|
.action-sheet-icon {
|
|
display: inline-block;
|
|
margin: $action-sheet-md-icon-margin;
|
|
min-width: 24px;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
font-size: $action-sheet-md-icon-font-size;
|
|
}
|
|
|
|
.action-sheet-group {
|
|
margin: 0;
|
|
border-radius: 0;
|
|
background-color: $action-sheet-md-background-color;
|
|
|
|
&:last-child .action-sheet-button {
|
|
margin-bottom: 8px;
|
|
}
|
|
}
|
|
|
|
.action-sheet-cancel {
|
|
background-color: $action-sheet-md-background-color;
|
|
width: auto;
|
|
border: none;
|
|
}
|