weui-select.less 671 B

123456789101112131415161718192021222324252627282930313233
  1. @import "../../../base/fn.less";
  2. .weui-cell_select {
  3. padding: 0;
  4. }
  5. .weui-select {
  6. position: relative;
  7. padding-left: @weuiCellGapH;
  8. padding-right: 30px;
  9. height: @weuiCellHeightEm;
  10. min-height: @weuiCellHeightEm;
  11. line-height: @weuiCellHeightEm;
  12. border-right: 1rpx solid @weuiCellBorderColor;
  13. &:before{
  14. content: " ";
  15. .setArrow(right, 6px, #C8C8CD, 2px);
  16. position: absolute;
  17. top: 50%;
  18. right: @weuiCellGapH;
  19. margin-top: -4px;
  20. }
  21. &_in-select-after{
  22. padding-left: 0;
  23. }
  24. }
  25. .weui-cell__hd_in-select-after,
  26. .weui-cell__bd_in-select-before{
  27. padding-left: @weuiCellGapH;
  28. }