12345678910111213141516171819202122232425262728293031
  1. @import "../../themes/ionic.globals.md";
  2. // Material Design Menu
  3. // --------------------------------------------------
  4. /// @prop - Background of the menu
  5. $menu-md-background: $background-md-color !default;
  6. /// @prop - Box shadow color of the menu
  7. $menu-md-box-shadow-color: rgba(0, 0, 0, .25) !default;
  8. /// @prop - Box shadow of the menu
  9. $menu-md-box-shadow: 0 0 10px $menu-md-box-shadow-color !default;
  10. .md .menu-inner {
  11. background: $menu-md-background;
  12. }
  13. .md .menu-content-reveal {
  14. box-shadow: $menu-md-box-shadow;
  15. }
  16. .md .menu-content-push {
  17. box-shadow: $menu-md-box-shadow;
  18. }
  19. .md ion-menu[type=overlay] .menu-inner {
  20. box-shadow: $menu-md-box-shadow;
  21. }