mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
This adds documentation for loading, menu, picker, popover, radio, refresher, select, and toast. Also removes unused variables. References #8785
31 lines
701 B
SCSS
31 lines
701 B
SCSS
@import "../../themes/ionic.globals.ios";
|
|
|
|
// iOS Menu
|
|
// --------------------------------------------------
|
|
|
|
/// @prop - Background of the menu
|
|
$menu-ios-background: $background-ios-color !default;
|
|
|
|
/// @prop - Box shadow color of the menu
|
|
$menu-ios-box-shadow-color: rgba(0, 0, 0, .25) !default;
|
|
|
|
/// @prop - Box shadow of the menu
|
|
$menu-ios-box-shadow: 0 0 10px $menu-ios-box-shadow-color !default;
|
|
|
|
|
|
.ios .menu-inner {
|
|
background: $menu-ios-background;
|
|
}
|
|
|
|
.ios .menu-content-reveal {
|
|
box-shadow: $menu-ios-box-shadow;
|
|
}
|
|
|
|
.ios .menu-content-push {
|
|
box-shadow: $menu-ios-box-shadow;
|
|
}
|
|
|
|
.ios ion-menu[type=overlay] .menu-inner {
|
|
box-shadow: $menu-ios-box-shadow;
|
|
}
|