_button.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. .ui-btn-box {
  2. display: inline-block;
  3. }
  4. .ui-btn {
  5. position: relative;
  6. border: 0rpx;
  7. display: inline-block;
  8. align-items: center;
  9. justify-content: center;
  10. box-sizing: border-box;
  11. padding: 0.7857em 1.5em 0.7857em;
  12. font-size: 28rpx;
  13. line-height: 1em;
  14. text-align: center;
  15. text-decoration: none;
  16. overflow: visible;
  17. margin: 0 0.25em 0 0;
  18. transform: translate(0rpx, 0rpx);
  19. border-radius: $radius;
  20. white-space: nowrap;
  21. color: var(--text-a);
  22. background-color: var(--ui-BG);
  23. vertical-align: baseline;
  24. &:first-child:last-child {
  25. margin: 0;
  26. }
  27. &:not([class*='round'])::after {
  28. border-radius: calc(#{$radius} * 2);
  29. }
  30. &:not([class*='border'])::after {
  31. // content: ' ';
  32. // width: 200%;
  33. // height: 200%;
  34. // display: block;
  35. // position: absolute;
  36. // z-index: 0;
  37. // top: 0;
  38. // left: 0;
  39. // transform: scale(0.5);
  40. // transform-origin: 0 0;
  41. // pointer-events: none;
  42. // box-sizing: border-box;
  43. display: none;
  44. }
  45. &.round::after {
  46. border-radius: #{$round-pill};
  47. }
  48. &.icon {
  49. padding: 0.8em 0.8em;
  50. }
  51. &.sm {
  52. font-size: 24rpx;
  53. }
  54. &.lg {
  55. font-size: 32rpx;
  56. }
  57. &.xl {
  58. font-size: 36rpx;
  59. }
  60. &.block {
  61. width: 100%;
  62. display: block;
  63. font-size: 32rpx;
  64. }
  65. &[disabled] {
  66. opacity: 0.6;
  67. }
  68. &.none-style {
  69. background-color: transparent !important;
  70. position: absolute;
  71. width: 100%;
  72. height: 100%;
  73. top: 0;
  74. left: 0;
  75. display: flex;
  76. }
  77. }
  78. .ui-btn:not(.icon) [class*='icon-'] {
  79. margin: 0 0.25em;
  80. }