modal.md.scss 762B

1234567891011121314151617181920212223242526272829
  1. @import "../../themes/ionic.globals.md";
  2. // Material Design Modals
  3. // --------------------------------------------------
  4. /// @prop - Background color for the modal
  5. $modal-md-background-color: $background-md-color !default;
  6. /// @prop - Box shadow color of the alert
  7. $modal-inset-box-shadow-color: rgba(0, 0, 0, .4) !default;
  8. /// @prop - Box shadow of the alert
  9. $modal-inset-box-shadow: 0 28px 48px $modal-inset-box-shadow-color !default;
  10. .md .modal-wrapper {
  11. @include transform(translate3d(0, 40px, 0));
  12. opacity: .01;
  13. @media only screen and (min-width: $modal-inset-min-width) and (min-height: $modal-inset-min-height-small) {
  14. @include border-radius(2px);
  15. overflow: hidden;
  16. box-shadow: $modal-inset-box-shadow;
  17. }
  18. }