a zip code crypto-currency system good for red ONLY

popover.md.scss 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. @import "../../themes/ionic.globals";
  2. // Material Design Popover
  3. // --------------------------------------------------
  4. /// @prop - Width of the popover content
  5. $popover-md-width: 250px !default;
  6. /// @prop - Min width of the popover content
  7. $popover-md-min-width: 0 !default;
  8. /// @prop - Minimum height of the popover content
  9. $popover-md-min-height: 0 !default;
  10. /// @prop - Maximum height of the popover content
  11. $popover-md-max-height: 90% !default;
  12. /// @prop - Border radius of the popover content
  13. $popover-md-border-radius: 2px !default;
  14. /// @prop - Text color of the popover content
  15. $popover-md-text-color: $text-md-color !default;
  16. /// @prop - Background of the popover content
  17. $popover-md-background: $background-md-color !default;
  18. /// @prop - Box shadow color of the popover content
  19. $popover-md-box-shadow-color: rgba(0, 0, 0, .3) !default;
  20. /// @prop - Box shadow of the popover content
  21. $popover-md-box-shadow: 0 3px 12px 2px $popover-md-box-shadow-color !default;
  22. .popover-md .popover-content {
  23. @include border-radius($popover-md-border-radius);
  24. @include transform-origin(start, top);
  25. width: $popover-md-width;
  26. min-width: $popover-md-min-width;
  27. min-height: $popover-md-min-height;
  28. max-height: $popover-md-max-height;
  29. color: $popover-md-text-color;
  30. background: $popover-md-background;
  31. box-shadow: $popover-md-box-shadow;
  32. }
  33. .popover-md .popover-viewport {
  34. opacity: 0;
  35. transition-delay: 100ms;
  36. }