Team.less 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. @import "~assets/less/variable";
  2. .groupList {
  3. padding: 8px 24px;
  4. box-shadow: 0 -1px 0 @grey-line-color;
  5. display: flex;
  6. justify-content: space-between;
  7. &:hover {
  8. color: @blue;
  9. cursor: pointer;
  10. }
  11. .orgHeader {
  12. display: flex;
  13. flex-direction: column;
  14. .avatar {
  15. display: flex;
  16. align-items: center;
  17. img {
  18. vertical-align: top;
  19. }
  20. .orgName {
  21. margin-left: 16px;
  22. }
  23. .title {
  24. font-weight: 400;
  25. font-size: 16px;
  26. line-height: 40px;
  27. }
  28. }
  29. .name {
  30. .desc {
  31. font-size: 12px;
  32. color: @light-text-color;
  33. }
  34. }
  35. }
  36. .setting {
  37. align-self: center;
  38. font-size: 18px;
  39. cursor: pointer;
  40. }
  41. }
  42. .teamLogo {
  43. margin: 24px auto 24px 8px;
  44. display: flex;
  45. img {
  46. vertical-align: top;
  47. }
  48. .title {
  49. font-size: 20px;
  50. font-weight: 400;
  51. line-height: 40px;
  52. margin-left: 16px;
  53. color: @rich-text;
  54. }
  55. }
  56. .listWrapper {
  57. margin: 12px auto 24px auto;
  58. padding: 0 8px;
  59. .tableWrap {
  60. padding: 24px 0px 8px 0px;
  61. }
  62. }
  63. .headerPanel {
  64. height:40px;
  65. display: flex;
  66. justify-content: space-between;
  67. .titleWrapper {
  68. display: flex;
  69. .avatar {
  70. margin-right: 16px;
  71. vertical-align: top;
  72. }
  73. .title {
  74. font-size: 14px;
  75. font-weight: 400;
  76. line-height: 40px;
  77. color: @blue;
  78. cursor: pointer;
  79. }
  80. }
  81. .delete {
  82. line-height: 40px;
  83. padding-right: 16px;
  84. }
  85. }
  86. .container {
  87. display: flex;
  88. padding-left: 40px;
  89. padding-bottom: 60px;
  90. flex-direction: column;
  91. .form {
  92. flex: 1;
  93. }
  94. hr {
  95. margin: 0 0 48px 0;
  96. border: 0;
  97. border-top: 1px solid @grey-line-color;
  98. }
  99. }
  100. .create {
  101. font-size: 24px;
  102. line-height: 32px;
  103. margin-left: 6px;
  104. cursor: pointer;
  105. }
  106. .addFormWrapper {
  107. .titleWrapper {
  108. text-align: center;
  109. .icon{
  110. font-size: 32px;
  111. }
  112. .title{
  113. font-size: 24px;
  114. color:@rich-text;
  115. margin-top: 16px;
  116. .orgName {
  117. margin-left: 6px;
  118. color: @blue;
  119. }
  120. }
  121. .tips{
  122. margin: 4px auto 0;
  123. font-size: 14px;
  124. color: @light-text-color;
  125. }
  126. }
  127. .search {
  128. text-align: center;
  129. margin: 16px 16px 0;
  130. .plusBtn {
  131. border-bottom-right-radius: 4px !important;
  132. border-top-right-radius: 4px !important;
  133. border-right-width: 1px !important;
  134. }
  135. }
  136. .submit {
  137. display: flex;
  138. justify-content: flex-end;
  139. padding-right: 8px;
  140. margin-top: 32px;
  141. }
  142. :global {
  143. .ant-form-item {
  144. margin-bottom: 4px;
  145. }
  146. }
  147. }
  148. .avatarWrapper {
  149. display: flex;
  150. flex-direction: row;
  151. align-items: center;
  152. }
  153. .permissionZone {
  154. margin:20px 20px;
  155. }
  156. .avatarName {
  157. margin-left: 8px;
  158. font-size: 14px;
  159. font-weight: 600;
  160. // color: @blue;
  161. line-height: 40px;
  162. }
  163. .dangerZone{
  164. margin-left: 20px;
  165. .title {
  166. font-weight: 600;
  167. font-size: 16px;
  168. margin: 24px auto 16px auto;
  169. color: crimson;
  170. }
  171. .titleDesc {
  172. padding: 16px;
  173. border-radius: 6px;
  174. border: 1px solid crimson;
  175. display: inline-block;
  176. .button {
  177. font-weight: 600;
  178. font-size: 18px;
  179. color: @rich-text;
  180. }
  181. .desc{
  182. margin-bottom: 8px;
  183. font-size: 12px;
  184. color: crimson;
  185. }
  186. }
  187. }
  188. .badge {
  189. display: inline-block;
  190. vertical-align: text-bottom;
  191. padding: 2px 5px;
  192. font-size: 12px;
  193. font-weight: 600;
  194. line-height: 1;
  195. color: #586069;
  196. background-color: rgba(27,31,35,0.08);
  197. border-radius: 20px;
  198. margin-left: 4px;
  199. }
  200. .selectOption {
  201. display: flex;
  202. justify-content: space-between;
  203. align-items: center;
  204. .title{
  205. display: flex;
  206. align-items: center;
  207. }
  208. .owner{
  209. color: @rich-text;
  210. font-size: 16px;
  211. font-weight: 600;
  212. margin-right: 8px;
  213. }
  214. .create {
  215. color: @light-text-color;
  216. font-weight: 400;
  217. font-size: 15px;
  218. margin-right: 8px;
  219. }
  220. }
  221. .radioStyle {
  222. display: block;
  223. height: 30px;
  224. line-Height: 30px;
  225. }
  226. .teamPagination {
  227. margin: 16px 0;
  228. float: right
  229. }
  230. .teamTableExpandIcon {
  231. cursor: pointer;
  232. }
  233. .childTable {
  234. background-color: @white;
  235. margin: -11px -9px !important;
  236. }
  237. .childTableCell {
  238. display: flex;
  239. flex-direction: row;
  240. justify-content: space-between;
  241. padding-right: 8px;
  242. }
  243. .options {
  244. .email {
  245. margin-left: 4px;
  246. font-size: 12px;
  247. color: @light-text-color;
  248. }
  249. }