providerSelect.less 706 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @import '~antd/es/style/themes/default.less';
  2. .provider-list {
  3. max-height: 450px;
  4. overflow-y: auto;
  5. .checkedIcon {
  6. position: absolute;
  7. right: -22px;
  8. bottom: -22px;
  9. z-index: 2;
  10. display: none;
  11. width: 44px;
  12. height: 44px;
  13. color: #fff;
  14. background-color: red;
  15. background-color: #2f54eb;
  16. transform: rotate(-45deg);
  17. > div {
  18. position: relative;
  19. height: 100%;
  20. transform: rotate(45deg);
  21. > span {
  22. position: absolute;
  23. top: 6px;
  24. left: 6px;
  25. font-size: 12px;
  26. }
  27. }
  28. }
  29. .active {
  30. .card-warp {
  31. border-color: @primary-color-active;
  32. }
  33. .checkedIcon {
  34. display: block;
  35. }
  36. }
  37. }