1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- @bg-color:#fff; /**主题背景色**/
- @header-height:50px; /***Header高度**/
- @table-th-color:#F2F4F6; /***表头背景色***/
- @active-bg:#DEF1FF; /***下拉项选中背景色***/
- .ant-form-item-label > label{
- color: #000;
- }
- .wrapper{
- min-width: 1214px;
- .basic{
- height: 78px;
- background: #fff;
- margin-bottom:12px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 28px 0 60px;
- border-radius: 4px;
- .basic-left{
- display: flex;
- }
- .basic-right{
- & button:first-child{
- margin-right: 15px;
- }
- }
- }
- .table{
- padding: 0 28px;
- background: #fff;
- .table-header{
- display: flex;
- justify-content: space-between;
- padding: 24px 0;
- .ant-breadcrumb-link{
- font-size: 16px;
- font-weight: 500;
- color: #333333;
- }
- }
- }
- }
- //面包屑样式覆盖
- .ant-breadcrumb{
- margin: 20px 0 30px 30px;
- }
- //步骤条样式覆盖
- .ant-steps-item-icon{
- width: 44px;
- height: 44px;
- line-height: 44px;
- }
- .ant-steps-item-tail{
- top:18px;
- left: 4px;
- }
- .ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after,
- .ant-steps-item-title::after,
- .ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after{
- background-color:#c2c2c2;
- }
- .ant-steps-item-icon, .ant-steps-item-content{
- vertical-align: unset;
- }
- //启用
- .Enable::before{
- content: "";
- width: 5px;
- height: 5px;
- display: block;
- position: absolute;
- left: 8px;
- top: 24px;
- background: #1690FF;
- border-radius: 50%;
- }
- //禁用
- .Disable::before{
- content: "";
- width: 5px;
- height: 5px;
- display: block;
- position: absolute;
- left: 8px;
- top: 24px;
- background: #FE9748;
- border-radius: 50%;
- }
|