index.less 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .companyInput {
  2. padding: 8px 12px 6px;
  3. color: @primary-color;
  4. background: #f7f7f7;
  5. border: 1px solid #f7f7f7;
  6. &:hover {
  7. background: #f2f2f2;
  8. border-color: #f2f2f2;
  9. }
  10. :global(.ant-card-small > .ant-card-body) {
  11. padding: 0.5rem;
  12. }
  13. .notCompanyContent {
  14. cursor: pointer;
  15. &:hover {
  16. color: #967bbd;
  17. }
  18. }
  19. .nameContent {
  20. color: @primary-color;
  21. cursor: pointer;
  22. &:hover {
  23. color: #967bbd;
  24. }
  25. }
  26. .unlinkIcon {
  27. padding: 0 3px;
  28. color: #fd3995;
  29. line-height: 1.15rem;
  30. border: 1px solid #fd3995;
  31. border-radius: 0.25rem;
  32. cursor: pointer;
  33. &:hover {
  34. color: #ffffff;
  35. background-color: #fd3995;
  36. border-color: #fd3995;
  37. transition: all 0.2s ease-in-out;
  38. }
  39. // &:active {
  40. // box-shadow: 0 2px 5px rgb(0 0 0 / 15%) inset;
  41. // }
  42. }
  43. .switchIcon {
  44. padding: 0 3px;
  45. color: #886ab5;
  46. line-height: 1.15rem;
  47. border: 1px solid #886ab5;
  48. border-radius: 0.25rem;
  49. cursor: pointer;
  50. &:hover {
  51. color: #ffffff;
  52. background-color: #886ab5;
  53. border-color: #886ab5;
  54. transition: all 0.2s ease-in-out;
  55. }
  56. // &:active {
  57. // box-shadow: 0 2px 5px rgb(0 0 0 / 15%) inset;
  58. // }
  59. }
  60. }