index.less 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. .ArticleManagement {
  2. //overwrite antd css
  3. .mwc-ant-col-6 {
  4. margin-bottom: 10px;
  5. }
  6. .mwc-ant-space-align-center {
  7. align-items: flex-start;
  8. }
  9. .mwc-ant-pro-page-container-warp {
  10. display: none !important;
  11. }
  12. .mwc-ant-pro-card-col {
  13. transition: width 0.2s ease-in;
  14. transform: translate3d(0,0,0);
  15. }
  16. textarea.mwc-ant-input {
  17. font-size: 14px !important;
  18. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  19. font-weight: 400;
  20. color: #525866 !important;
  21. }
  22. .ant-pro-page-container-warp {
  23. display: none !important;
  24. }
  25. .ant-pro-card-col {
  26. transition: width 0.2s ease-in;
  27. transform: translate3d(0, 0, 0);
  28. }
  29. textarea.ant-input {
  30. font-size: 14px !important;
  31. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  32. font-weight: 400;
  33. color: #525866 !important;
  34. }
  35. //----------------
  36. .onlyMyselfFilter {
  37. display: flex;
  38. flex-direction: row;
  39. justify-content: space-between;
  40. align-items: center;
  41. margin-bottom: 16px;
  42. padding: 0 8px;
  43. &>span {
  44. font-size: 14px;
  45. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  46. font-weight: 400;
  47. color: #525966;
  48. }
  49. }
  50. }
  51. .formItemTitle {
  52. position: relative;
  53. font-size: 16px;
  54. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  55. font-weight: 400;
  56. color: #7A8599;
  57. margin-bottom: 16px;
  58. &>span {
  59. position: absolute;
  60. right:42px;
  61. top:6px;
  62. font-size: 12px;
  63. color: #598cf0;
  64. cursor: pointer;
  65. &:hover {
  66. color: #3377FF;
  67. }
  68. }
  69. &.require {
  70. &::before {
  71. display: inline-block;
  72. position: relative;
  73. top: -2px;
  74. content: '*';
  75. margin-right: 4px;
  76. color: rgb(255, 77, 79);
  77. font-size: 14px;
  78. }
  79. }
  80. }