a zip code crypto-currency system good for red ONLY

select.ios.scss 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. @import "../../themes/ionic.globals.ios";
  2. // iOS Select
  3. // --------------------------------------------------
  4. /// @prop - Padding top of the select
  5. $select-ios-padding-top: $item-ios-padding-top !default;
  6. // deprecated
  7. $select-ios-padding-right: ($item-ios-padding-end / 2) !default;
  8. /// @prop - Padding end of the select
  9. $select-ios-padding-end: $select-ios-padding-right !default;
  10. /// @prop - Padding bottom of the select
  11. $select-ios-padding-bottom: $item-ios-padding-bottom !default;
  12. // deprecated
  13. $select-ios-padding-left: $item-ios-padding-start !default;
  14. /// @prop - Padding start of the select
  15. $select-ios-padding-start: $select-ios-padding-left !default;
  16. /// @prop - Color of the select icon
  17. $select-ios-icon-color: #999 !default;
  18. /// @prop - Color of the select placeholder
  19. $select-ios-placeholder-color: $select-ios-icon-color !default;
  20. .select-ios {
  21. @include padding($select-ios-padding-top, $select-ios-padding-end, $select-ios-padding-bottom, $select-ios-padding-start);
  22. }
  23. .select-ios .select-placeholder {
  24. color: $select-ios-placeholder-color;
  25. }
  26. .select-ios .select-icon {
  27. position: relative;
  28. width: 12px;
  29. height: 18px;
  30. }
  31. .select-ios .select-icon .select-icon-inner {
  32. @include position(50%, null, null, 5px);
  33. @include margin(-2px, null, null, null);
  34. position: absolute;
  35. width: 0;
  36. height: 0;
  37. border-top: 5px solid;
  38. border-right: 5px solid transparent;
  39. border-left: 5px solid transparent;
  40. color: $select-ios-icon-color;
  41. pointer-events: none;
  42. }