mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
42 lines
692 B
SCSS
42 lines
692 B
SCSS
|
|
// iOS Popups
|
|
// --------------------------------------------------
|
|
|
|
$popup-ios-border-radius: 13px !default;
|
|
$popup-ios-bg-color: #f8f8f8 !default;
|
|
$popup-ios-button-text-color: color(primary) !default;
|
|
|
|
|
|
.popup[mode=ios] {
|
|
|
|
popup-wrapper {
|
|
border-radius: $popup-ios-border-radius;
|
|
background-color: $popup-ios-bg-color;
|
|
}
|
|
|
|
.popup-head {
|
|
padding-top: 24px;
|
|
}
|
|
|
|
.popup-body:empty {
|
|
padding: 0;
|
|
}
|
|
|
|
.popup-buttons {
|
|
padding: 0;
|
|
min-height: 0;
|
|
|
|
button {
|
|
background-color: transparent;
|
|
color: $popup-ios-button-text-color;
|
|
font-size: 14px;
|
|
|
|
&:last-child {
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|