index.less 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. .verticalCenter {
  2. display: flex;
  3. flex-direction: column;
  4. justify-content: center;
  5. margin-left: 5px;
  6. }
  7. .name-wrapper>p {
  8. overflow: hidden;
  9. text-overflow: ellipsis;
  10. white-space: nowrap;
  11. }
  12. .boxCol {
  13. display: flex;
  14. strong {
  15. width: 25%;
  16. text-align: right;
  17. }
  18. span {
  19. color: #999;
  20. width: 75%;
  21. }
  22. }
  23. .manage {
  24. height: calc(100% - 42px);
  25. display: flex;
  26. justify-content: flex-start;
  27. &__left {
  28. width: calc(100% - 200px);
  29. }
  30. }
  31. .groupLeft {
  32. width: 200px;
  33. height: 100%;
  34. background-color: #fff;
  35. &_header {
  36. display: flex;
  37. justify-content: space-between;
  38. align-items: center;
  39. height: 50px;
  40. border-bottom: 1px solid rgb(236, 236, 236);
  41. background-color: #f8f8f8;
  42. &>div {
  43. font-size: 16px;
  44. font-weight: 600;
  45. padding: 0 10px;
  46. }
  47. }
  48. &_content {
  49. height: calc(100% - 50px);
  50. overflow-y: auto;
  51. &_item {
  52. &>.con {
  53. display: flex;
  54. justify-content: space-between;
  55. align-items: center;
  56. padding: 5px 12px;
  57. box-sizing: border-box;
  58. height: 50px;
  59. border-bottom: 1px solid rgb(236, 236, 236);
  60. transition: .1s;
  61. box-sizing: border-box;
  62. cursor: pointer;
  63. border-right: 2px solid #fff;
  64. >.left {
  65. width: calc(100% - 45px);
  66. >div {
  67. overflow: hidden;
  68. text-overflow: ellipsis;
  69. white-space: nowrap;
  70. }
  71. }
  72. >.right {
  73. width: 38px;
  74. }
  75. .title {
  76. color: #000;
  77. font-weight: 500;
  78. }
  79. .subTitle {
  80. font-size: 12px;
  81. color: rgb(122, 122, 122);
  82. }
  83. &:hover {
  84. background-color: #e6f7ff;
  85. border-right-color: #1890ff;
  86. .title {
  87. color: #1890ff;
  88. }
  89. .subTitle {
  90. color: #1890ff;
  91. }
  92. }
  93. &.select {
  94. background-color: #e6f7ff;
  95. border-right-color: #1890ff;
  96. .title {
  97. color: #1890ff;
  98. }
  99. .subTitle {
  100. color: #1890ff;
  101. }
  102. }
  103. }
  104. &>.edit {
  105. padding: 10px 12px;
  106. box-sizing: border-box;
  107. border-bottom: 1px solid rgb(236, 236, 236);
  108. // font-size: 12px;
  109. .ant-input-affix-wrapper {
  110. border-radius: 4px;
  111. }
  112. }
  113. }
  114. }
  115. }
  116. .dig {
  117. &_ul {
  118. padding: 0;
  119. margin-bottom: 0;
  120. &__li {
  121. padding: 4px 16px;
  122. box-sizing: border-box;
  123. cursor: pointer;
  124. &:hover {
  125. color: #1890ff;
  126. }
  127. }
  128. }
  129. .ant-popover-inner-content {
  130. padding: 0 0 8px 0;
  131. }
  132. }