|
@@ -75,20 +75,34 @@
|
|
|
|
|
|
.el-dialog {
|
|
|
margin: 0 auto !important;
|
|
|
-
|
|
|
+ padding: 0 !important;
|
|
|
+ .el-dialog__title {
|
|
|
+ color: rgba(0, 0, 0, 0.85) !important;
|
|
|
+ font-size: 14px !important;
|
|
|
+ }
|
|
|
.el-dialog__body {
|
|
|
- padding: 15px !important;
|
|
|
+ padding: 26px 24.5px 8px !important;
|
|
|
}
|
|
|
.el-dialog__header {
|
|
|
- padding: 16px 16px 8px 16px;
|
|
|
+ padding: 13px 24.5px;
|
|
|
box-sizing: border-box;
|
|
|
border-bottom: 1px solid var(--brder-color);
|
|
|
margin-right: 0;
|
|
|
}
|
|
|
+ .el-dialog__footer {
|
|
|
+ padding-top: 0 !important;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+.dialog-footer {
|
|
|
+ padding: 10px 24.5px !important;
|
|
|
+ border-top: 1px solid #E8E8E8;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+}
|
|
|
+
|
|
|
.el-dialog__body {
|
|
|
max-height: calc(90vh - 111px) !important;
|
|
|
overflow-y: auto;
|
|
@@ -147,3 +161,273 @@
|
|
|
.el-form--inline .el-input {
|
|
|
width: 240px;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+.el-select, .el-date-editor.el-input, .el-date-editor.el-input__wrapper, .el-input, .el-textarea {
|
|
|
+ //width: 200px !important;
|
|
|
+ .el-select__wrapper, .el-input__wrapper, .el-textarea__inner {
|
|
|
+ border-radius: 2px;
|
|
|
+ box-shadow: 0 0 0 1px #d9d9d9 inset;
|
|
|
+ }
|
|
|
+}
|
|
|
+.el-button {
|
|
|
+ border-radius: 2px !important;
|
|
|
+ color: rgba(0, 0, 0, 0.65) !important;
|
|
|
+ &:hover {
|
|
|
+ border: 1px solid #65A3FF;
|
|
|
+ color: #65A3FF !important;
|
|
|
+ }
|
|
|
+ &:active {
|
|
|
+ color: #0067FF !important;
|
|
|
+ border: 1px solid #0067FF;
|
|
|
+ }
|
|
|
+ &:disabled {
|
|
|
+ color: rgba(90, 90, 90, 0.65) !important;
|
|
|
+ border: 1px solid #E7E7E7;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.el-button.el-button--primary {
|
|
|
+ background-color: #2c81ff !important;
|
|
|
+ border: 1px solid #2c81ff !important;
|
|
|
+ color: #ffffff !important;
|
|
|
+ &:hover {
|
|
|
+ background-color: #65a3ff !important;
|
|
|
+ border: 1px solid #65a3ff !important;
|
|
|
+ color: #ffffff !important;
|
|
|
+ }
|
|
|
+ &:active {
|
|
|
+ color: #ffffff !important;
|
|
|
+ border-color: #0067ff !important;
|
|
|
+ background-color: #0067ff !important;
|
|
|
+ }
|
|
|
+ &:disabled {
|
|
|
+ color: #ffffff !important;
|
|
|
+ background-color: #a6c6f7;
|
|
|
+ border-color: #a6c6f7 !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+.el-button.el-button--danger {
|
|
|
+ background-color: #FF2F3C !important;
|
|
|
+ border: 1px solid #FF2F3C !important;
|
|
|
+ color: #ffffff !important;
|
|
|
+ &:hover {
|
|
|
+ background-color: #ff7780 !important;
|
|
|
+ border: 1px solid #ff7780 !important;
|
|
|
+ color: #ffffff !important;
|
|
|
+ }
|
|
|
+ &:active {
|
|
|
+ color: #ffffff !important;
|
|
|
+ border-color: #ea2e3a !important;
|
|
|
+ background-color: #ea2e3a !important;
|
|
|
+ }
|
|
|
+ &:disabled {
|
|
|
+ color: #ffffff !important;
|
|
|
+ background-color: #ec7880;
|
|
|
+ border-color: #ec7880 !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+.el-button.el-button--success {
|
|
|
+ background-color: #40c75f !important;
|
|
|
+ border: 1px solid #40c75f !important;
|
|
|
+ color: #ffffff !important;
|
|
|
+ &:hover {
|
|
|
+ background-color: #75e48e !important;
|
|
|
+ border: 1px solid #75e48e !important;
|
|
|
+ color: #ffffff !important;
|
|
|
+ }
|
|
|
+ &:active {
|
|
|
+ color: #ffffff !important;
|
|
|
+ border-color: #05b42d !important;
|
|
|
+ background-color: #05b42d !important;
|
|
|
+ }
|
|
|
+ &:disabled {
|
|
|
+ color: #ffffff !important;
|
|
|
+ background-color: #8ad59b;
|
|
|
+ border-color: #8ad59b !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+.el-button.el-button--warning {
|
|
|
+ background-color: #ffaf00 !important;
|
|
|
+ border: 1px solid #ffaf00 !important;
|
|
|
+ color: #ffffff !important;
|
|
|
+ &:hover {
|
|
|
+ background-color: #ffd16c !important;
|
|
|
+ border: 1px solid #ffd16c !important;
|
|
|
+ color: #ffffff !important;
|
|
|
+ }
|
|
|
+ &:active {
|
|
|
+ color: #ffffff !important;
|
|
|
+ border-color: #e9a000 !important;
|
|
|
+ background-color: #e9a000 !important;
|
|
|
+ }
|
|
|
+ &:disabled {
|
|
|
+ color: #ffffff !important;
|
|
|
+ background-color: #e6c273;
|
|
|
+ border-color: #e6c273 !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.el-button.is-plain {
|
|
|
+ background-color: transparent !important;
|
|
|
+}
|
|
|
+.el-button--primary.is-link, .el-button--primary.is-plain, .el-button--primary.is-text {
|
|
|
+ color: #2c81ff !important;
|
|
|
+ background-color: #ffffff !important;
|
|
|
+}
|
|
|
+.el-button.el-button--primary.is-plain {
|
|
|
+ color: #2C81FF !important;
|
|
|
+ &:hover {
|
|
|
+ background-color: #dce7f5 !important;
|
|
|
+ }
|
|
|
+ &:active {
|
|
|
+ background-color: #cadcf6 !important;
|
|
|
+ }
|
|
|
+ &:disabled {
|
|
|
+ border: 1px solid #2C81FF;
|
|
|
+ background-color: #dbe6f5 !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+.el-button.el-button--danger.is-plain {
|
|
|
+ color: #FF2F3C !important;
|
|
|
+ &:hover {
|
|
|
+ background-color: #f2dfe1 !important;
|
|
|
+ color: #f90000 !important;
|
|
|
+ }
|
|
|
+ &:active {
|
|
|
+ background-color: #f4cbcf !important;
|
|
|
+ }
|
|
|
+ &:disabled {
|
|
|
+ border: 1px solid #f0cfd1 !important;
|
|
|
+ background-color: #f0cfd1 !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+.el-button.el-button--success.is-plain {
|
|
|
+ color: #40c75f !important;
|
|
|
+ &:hover {
|
|
|
+ background-color: #deeee5 !important;
|
|
|
+ color: #40C75F !important;
|
|
|
+ }
|
|
|
+ &:active {
|
|
|
+ background-color: #ceead6 !important;
|
|
|
+ }
|
|
|
+ &:disabled {
|
|
|
+ border: 1px solid #d2ebd9 !important;
|
|
|
+ background-color: #d2ebd9 !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+.el-button.el-button--warning.is-plain {
|
|
|
+ color: #FFAF00 !important;
|
|
|
+ &:hover {
|
|
|
+ background-color: #f2ecdb !important;
|
|
|
+ color: #FFAF00 !important;
|
|
|
+ }
|
|
|
+ &:active {
|
|
|
+ background-color: #f4e5c3 !important;
|
|
|
+ }
|
|
|
+ &:disabled {
|
|
|
+ border: 1px solid #eee5cd !important;
|
|
|
+ background-color: #eee5cd !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.el-form .el-form-item__label {
|
|
|
+ font-weight: 400 !important;
|
|
|
+ color: rgba(0, 0, 0, 0.85) !important;
|
|
|
+ padding-right: 0 !important;
|
|
|
+}
|
|
|
+.el-checkbox__inner {
|
|
|
+ width: 16px !important;
|
|
|
+ height: 16px !important;
|
|
|
+ border-color: rgba(0, 0, 0, 0.15) !important;
|
|
|
+}
|
|
|
+.el-checkbox__inner:after {
|
|
|
+ top: 2px !important;
|
|
|
+ left: 5px !important;
|
|
|
+}
|
|
|
+.el-checkbox__input.is-checked .el-checkbox__inner {
|
|
|
+ background-color: #2c81ff !important;
|
|
|
+ border-color: #2c81ff !important;
|
|
|
+ border-radius: 2px;
|
|
|
+}
|
|
|
+.el-checkbox__input.is-indeterminate .el-checkbox__inner {
|
|
|
+ background-color: #ffffff !important;
|
|
|
+ border-color: rgba(0, 0, 0, 0.15) !important;
|
|
|
+ border-radius: 2px;
|
|
|
+ &::before {
|
|
|
+ width: 8px !important;
|
|
|
+ height: 8px !important;
|
|
|
+ background-color: #2c81ff !important;
|
|
|
+ transform: unset !important;
|
|
|
+ top: 3px !important;
|
|
|
+ left: 3px !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.el-table .el-table__inner-wrapper .el-table__header-wrapper th, .el-table .el-table__inner-wrapper .el-table__fixed-header-wrapper th {
|
|
|
+ color: rgba(0, 0, 0, 0.85) !important;
|
|
|
+ background-color: #fafafa !important;
|
|
|
+ border-color: #E8E8E8 !important;
|
|
|
+ font-weight: 500 !important;
|
|
|
+ height: 55px !important;
|
|
|
+}
|
|
|
+.el-table--enable-row-transition .el-table__body td.el-table__cell {
|
|
|
+ color: rgba(0, 0, 0, 0.65) !important;
|
|
|
+ border-color: #E8E8E8 !important;
|
|
|
+ height: 55px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.el-pager li, .el-pagination.is-background .btn-next.is-disabled, .el-pagination.is-background .btn-prev.is-disabled, .el-pagination.is-background .el-pager li.is-disabled, .el-pagination.is-background .el-pager li:disabled, .el-pagination.is-background .btn-next, .el-pagination.is-background .btn-prev, .el-pagination.is-background .el-pager li {
|
|
|
+ width: 32px !important;
|
|
|
+ height: 32px !important;
|
|
|
+ background: #FFFFFF !important;
|
|
|
+ border: 1px solid #D9D9D9 !important;
|
|
|
+ border-radius: 2px !important;
|
|
|
+ color: rgba(0, 0, 0, 0.65) !important;
|
|
|
+ font-size: 14px !important;
|
|
|
+ font-family: HelveticaNeue;
|
|
|
+ &:hover {
|
|
|
+ font-weight: normal !important;
|
|
|
+ background-color: #2C81FF !important;
|
|
|
+ border-color: #2C81FF !important;
|
|
|
+ color: #ffffff !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+.el-pagination.is-background .btn-prev:disabled, .el-pagination.is-background .btn-next:disabled {
|
|
|
+ border-color: #D9D9D9 !important;
|
|
|
+ background-color: #f5f7fa !important;
|
|
|
+ color: #a8abb2 !important;
|
|
|
+ &:hover {
|
|
|
+ border-color: #D9D9D9 !important;
|
|
|
+ background-color: #f5f7fa !important;
|
|
|
+ color: #a8abb2 !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+.el-pager li.is-active {
|
|
|
+ font-weight: normal !important;
|
|
|
+ background-color: #2C81FF !important;
|
|
|
+ border-color: #2C81FF !important;
|
|
|
+ color: #ffffff !important;
|
|
|
+}
|
|
|
+.el-pagination .el-select {
|
|
|
+ width: 100px !important;
|
|
|
+}
|
|
|
+.pagination-container {
|
|
|
+ margin-top: 5px !important;
|
|
|
+}
|
|
|
+.el-form-item.is-required:not(.is-no-asterisk).asterisk-left>.el-form-item__label-wrap>.el-form-item__label:before, .el-form-item.is-required:not(.is-no-asterisk).asterisk-left>.el-form-item__label:before {
|
|
|
+ margin-right: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.el-button--warning.is-link, .el-button--warning.is-plain, .el-button--warning.is-text {
|
|
|
+ color: #e6a23c !important;
|
|
|
+}
|
|
|
+.el-button--success.is-link.is-disabled, .el-button--success.is-link.is-disabled:active, .el-button--success.is-link.is-disabled:focus, .el-button--success.is-link.is-disabled:hover, .el-button--success.is-plain.is-disabled, .el-button--success.is-plain.is-disabled:active, .el-button--success.is-plain.is-disabled:focus, .el-button--success.is-plain.is-disabled:hover, .el-button--success.is-text.is-disabled, .el-button--success.is-text.is-disabled:active, .el-button--success.is-text.is-disabled:focus, .el-button--success.is-text.is-disabled:hover {
|
|
|
+ color: #b3e19d !important;
|
|
|
+}
|
|
|
+.el-button--success.is-link, .el-button--success.is-plain, .el-button--success.is-text {
|
|
|
+ color: #67c23a !important;
|
|
|
+}
|
|
|
+.el-button--danger.is-link.is-disabled:active, .el-button--danger.is-link.is-disabled:focus, .el-button--danger.is-link.is-disabled:hover, .el-button--danger.is-plain.is-disabled:active, .el-button--danger.is-plain.is-disabled:focus, .el-button--danger.is-plain.is-disabled:hover, .el-button--danger.is-text.is-disabled:active, .el-button--danger.is-text.is-disabled:focus, .el-button--danger.is-text.is-disabled:hover {
|
|
|
+ color: #F90000 !important;
|
|
|
+}
|