a zip code crypto-currency system good for red ONLY

action-sheet.md.scss 5.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. @import "../../themes/ionic.globals.md";
  2. // Material Design Action Sheet
  3. // --------------------------------------------------
  4. /// @prop - Text align of the action sheet
  5. $action-sheet-md-text-align: start !default;
  6. /// @prop - Background color of the action sheet
  7. $action-sheet-md-background: #fafafa !default;
  8. /// @prop - Padding top of the action sheet
  9. $action-sheet-md-padding-top: .8rem !default;
  10. /// @prop - Padding bottom of the action sheet
  11. $action-sheet-md-padding-bottom: .8rem !default;
  12. /// @prop - Color of the action sheet title
  13. $action-sheet-md-title-color: #757575 !default;
  14. /// @prop - Font size of the action sheet title
  15. $action-sheet-md-title-font-size: 1.6rem !default;
  16. // deprecated
  17. $action-sheet-md-title-padding: null !default;
  18. /// @prop - Padding top of the action sheet title
  19. $action-sheet-md-title-padding-top: 11px !default;
  20. /// @prop - Padding end of the action sheet title
  21. $action-sheet-md-title-padding-end: 16px !default;
  22. /// @prop - Padding bottom of the action sheet title
  23. $action-sheet-md-title-padding-bottom: 17px !default;
  24. /// @prop - Padding start of the action sheet title
  25. $action-sheet-md-title-padding-start: $action-sheet-md-title-padding-end !default;
  26. /// @prop - Minimum height of the action sheet button
  27. $action-sheet-md-button-min-height: 4.8rem !default;
  28. /// @prop - Text color of the action sheet button
  29. $action-sheet-md-button-text-color: #222 !default;
  30. /// @prop - Font size of the action sheet button
  31. $action-sheet-md-button-font-size: 1.6rem !default;
  32. // deprecated
  33. $action-sheet-md-button-padding: null !default;
  34. /// @prop - Padding top of the action sheet button
  35. $action-sheet-md-button-padding-top: 0 !default;
  36. /// @prop - Padding end of the action sheet button
  37. $action-sheet-md-button-padding-end: 16px !default;
  38. /// @prop - Padding bottom of the action sheet button
  39. $action-sheet-md-button-padding-bottom: $action-sheet-md-button-padding-top !default;
  40. /// @prop - Padding start of the action sheet button
  41. $action-sheet-md-button-padding-start: $action-sheet-md-button-padding-end !default;
  42. /// @prop - Background color of the action sheet button
  43. $action-sheet-md-button-background: transparent !default;
  44. /// @prop - Background color of the action sheet activated button
  45. $action-sheet-md-button-background-activated: #f1f1f1 !default;
  46. /// @prop - Font size of the icon in the action sheet button
  47. $action-sheet-md-icon-font-size: 2.4rem !default;
  48. /// @prop - Width of the icon in the action sheet button
  49. $action-sheet-md-icon-width: 2.3rem !default;
  50. /// @prop - Text align of the icon in the action sheet button
  51. $action-sheet-md-icon-text-align: center !default;
  52. /// @prop - Vertical align of the icon in the action sheet button
  53. $action-sheet-md-icon-vertical-align: middle !default;
  54. // deprecated
  55. $action-sheet-md-icon-margin: null !default;
  56. /// @prop - Margin top of the icon in the action sheet button
  57. $action-sheet-md-icon-margin-top: 0 !default;
  58. /// @prop - Margin end of the icon in the action sheet button
  59. $action-sheet-md-icon-margin-end: 32px !default;
  60. /// @prop - Margin bottom of the icon in the action sheet button
  61. $action-sheet-md-icon-margin-bottom: 0 !default;
  62. /// @prop - Margin start of the icon in the action sheet button
  63. $action-sheet-md-icon-margin-start: 0 !default;
  64. .action-sheet-md .action-sheet-title {
  65. @include text-align($action-sheet-md-text-align);
  66. font-size: $action-sheet-md-title-font-size;
  67. color: $action-sheet-md-title-color;
  68. @include deprecated-variable(padding, $action-sheet-md-title-padding) {
  69. @include padding($action-sheet-md-title-padding-top, $action-sheet-md-title-padding-end, $action-sheet-md-title-padding-bottom, $action-sheet-md-title-padding-start);
  70. }
  71. }
  72. .action-sheet-md .action-sheet-button {
  73. @include text-align($action-sheet-md-text-align);
  74. position: relative;
  75. overflow: hidden;
  76. min-height: $action-sheet-md-button-min-height;
  77. font-size: $action-sheet-md-button-font-size;
  78. color: $action-sheet-md-button-text-color;
  79. background: $action-sheet-md-button-background;
  80. @include deprecated-variable(padding, $action-sheet-md-button-padding) {
  81. @include padding($action-sheet-md-button-padding-top, $action-sheet-md-button-padding-end, $action-sheet-md-button-padding-bottom, $action-sheet-md-button-padding-start);
  82. }
  83. }
  84. .action-sheet-md .action-sheet-button.activated {
  85. background: $action-sheet-md-button-background-activated;
  86. }
  87. .action-sheet-md .action-sheet-icon {
  88. @include padding(0);
  89. @include text-align($action-sheet-md-icon-text-align);
  90. width: $action-sheet-md-icon-width;
  91. font-size: $action-sheet-md-icon-font-size;
  92. vertical-align: $action-sheet-md-icon-vertical-align;
  93. @include deprecated-variable(margin, $action-sheet-md-icon-margin) {
  94. @include margin($action-sheet-md-icon-margin-top, $action-sheet-md-icon-margin-end, $action-sheet-md-icon-margin-bottom, $action-sheet-md-icon-margin-start);
  95. }
  96. }
  97. .action-sheet-md .action-sheet-group {
  98. background: $action-sheet-md-background;
  99. }
  100. .action-sheet-md .action-sheet-group:first-child {
  101. @include padding($action-sheet-md-padding-top, null, null, null);
  102. }
  103. .action-sheet-md .action-sheet-group:last-child {
  104. @include padding(null, null, $action-sheet-md-padding-bottom, null);
  105. }
  106. .action-sheet-md .action-sheet-group .button-inner {
  107. justify-content: flex-start;
  108. }
  109. .action-sheet-md .action-sheet-selected {
  110. font-weight: bold;
  111. }