12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- .ArticleManagement {
- //overwrite antd css
- .mwc-ant-col-6 {
- margin-bottom: 10px;
- }
- .mwc-ant-space-align-center {
- align-items: flex-start;
- }
- .mwc-ant-pro-page-container-warp {
- display: none !important;
- }
- .mwc-ant-pro-card-col {
- transition: width 0.2s ease-in;
- transform: translate3d(0,0,0);
- }
- textarea.mwc-ant-input {
- font-size: 14px !important;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #525866 !important;
- }
- .ant-pro-page-container-warp {
- display: none !important;
- }
- .ant-pro-card-col {
- transition: width 0.2s ease-in;
- transform: translate3d(0, 0, 0);
- }
- textarea.ant-input {
- font-size: 14px !important;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #525866 !important;
- }
- //----------------
- .onlyMyselfFilter {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 16px;
- padding: 0 8px;
- &>span {
- font-size: 14px;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #525966;
- }
- }
- }
- .formItemTitle {
- position: relative;
- font-size: 16px;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #7A8599;
- margin-bottom: 16px;
- &>span {
- position: absolute;
- right:42px;
- top:6px;
- font-size: 12px;
- color: #598cf0;
- cursor: pointer;
- &:hover {
- color: #3377FF;
- }
- }
- &.require {
- &::before {
- display: inline-block;
- position: relative;
- top: -2px;
- content: '*';
- margin-right: 4px;
- color: rgb(255, 77, 79);
- font-size: 14px;
- }
- }
- }
|