|
|
@@ -0,0 +1,588 @@
|
|
|
+.dispatch-tech-dialog {
|
|
|
+ height: auto !important;
|
|
|
+ max-height: none !important;
|
|
|
+ overflow: hidden;
|
|
|
+ border: 1px solid rgba(32, 128, 168, 0.24);
|
|
|
+ border-radius: 8px;
|
|
|
+ background: #f4f7fa;
|
|
|
+ box-shadow: 0 18px 48px rgba(23, 40, 58, 0.28);
|
|
|
+
|
|
|
+ .el-dialog__header {
|
|
|
+ position: relative;
|
|
|
+ padding: 18px 28px 16px;
|
|
|
+ overflow: hidden;
|
|
|
+ background:
|
|
|
+ linear-gradient(135deg, rgba(12, 41, 59, 0.96), rgba(18, 64, 77, 0.94)),
|
|
|
+ linear-gradient(90deg, rgba(35, 194, 225, 0.15) 1px, transparent 1px);
|
|
|
+ border-bottom: 1px solid rgba(42, 203, 231, 0.28);
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-dialog__header::before {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ bottom: 0;
|
|
|
+ height: 2px;
|
|
|
+ background: linear-gradient(90deg, #13c2c2, #27c46b 38%, #f6b83f 72%, transparent);
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-dialog__header::after {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ right: 72px;
|
|
|
+ width: 180px;
|
|
|
+ height: 100%;
|
|
|
+ background:
|
|
|
+ linear-gradient(90deg, transparent 0 18px, rgba(42, 203, 231, 0.18) 18px 20px, transparent 20px 40px),
|
|
|
+ linear-gradient(135deg, transparent 0 46%, rgba(39, 196, 107, 0.18) 46% 48%, transparent 48%);
|
|
|
+ opacity: 0.9;
|
|
|
+ pointer-events: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-dialog__title {
|
|
|
+ position: relative;
|
|
|
+ color: #f4fbff;
|
|
|
+ font-size: 18px;
|
|
|
+ font-weight: 700;
|
|
|
+ letter-spacing: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-dialog__title::before {
|
|
|
+ content: '';
|
|
|
+ display: inline-block;
|
|
|
+ width: 4px;
|
|
|
+ height: 18px;
|
|
|
+ margin-right: 10px;
|
|
|
+ vertical-align: -3px;
|
|
|
+ border-radius: 2px;
|
|
|
+ background: linear-gradient(180deg, #28d8ff, #27c46b);
|
|
|
+ box-shadow: 0 0 12px rgba(40, 216, 255, 0.55);
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-dialog__headerbtn {
|
|
|
+ top: 18px;
|
|
|
+
|
|
|
+ .el-dialog__close {
|
|
|
+ color: rgba(244, 251, 255, 0.78);
|
|
|
+ font-weight: 700;
|
|
|
+ }
|
|
|
+
|
|
|
+ &:hover .el-dialog__close {
|
|
|
+ color: #28d8ff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-dialog__body {
|
|
|
+ max-height: none !important;
|
|
|
+ padding: 0;
|
|
|
+ overflow: visible !important;
|
|
|
+ background:
|
|
|
+ linear-gradient(rgba(32, 128, 168, 0.055) 1px, transparent 1px),
|
|
|
+ linear-gradient(90deg, rgba(32, 128, 168, 0.055) 1px, transparent 1px),
|
|
|
+ #f6f8fb;
|
|
|
+ background-size: 24px 24px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .form-wrapper {
|
|
|
+ max-height: none !important;
|
|
|
+ padding: 22px 28px 0;
|
|
|
+ overflow: visible !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ .form-wrapper::-webkit-scrollbar,
|
|
|
+ .el-table__body-wrapper::-webkit-scrollbar {
|
|
|
+ width: 8px;
|
|
|
+ height: 8px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .form-wrapper::-webkit-scrollbar-thumb,
|
|
|
+ .el-table__body-wrapper::-webkit-scrollbar-thumb {
|
|
|
+ border-radius: 8px;
|
|
|
+ background: linear-gradient(180deg, #72d1df, #7f8c99);
|
|
|
+ }
|
|
|
+
|
|
|
+ .form-wrapper::-webkit-scrollbar-track,
|
|
|
+ .el-table__body-wrapper::-webkit-scrollbar-track {
|
|
|
+ background: rgba(217, 225, 232, 0.7);
|
|
|
+ }
|
|
|
+
|
|
|
+ .basic,
|
|
|
+ .basic + .el-row {
|
|
|
+ position: relative;
|
|
|
+ margin: 0 0 10px !important;
|
|
|
+ padding: 14px 14px 2px;
|
|
|
+ border: 1px solid rgba(53, 103, 129, 0.16);
|
|
|
+ border-radius: 8px;
|
|
|
+ background: rgba(255, 255, 255, 0.86);
|
|
|
+ box-shadow: 0 8px 22px rgba(29, 58, 78, 0.06);
|
|
|
+ }
|
|
|
+
|
|
|
+ .basic::before,
|
|
|
+ .basic + .el-row::before {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 3px;
|
|
|
+ background: linear-gradient(90deg, #18b6d2, rgba(39, 196, 107, 0.8), transparent);
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-form-item {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ width: 100%;
|
|
|
+ margin-bottom: 14px;
|
|
|
+ margin-right: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-form-item__label {
|
|
|
+ flex: 0 0 132px;
|
|
|
+ width: 132px !important;
|
|
|
+ min-width: 132px;
|
|
|
+ color: #4f5d68;
|
|
|
+ font-weight: 700;
|
|
|
+ line-height: 36px;
|
|
|
+ white-space: nowrap;
|
|
|
+ word-break: keep-all;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-form-item__content {
|
|
|
+ flex: 1;
|
|
|
+ min-width: 0;
|
|
|
+ line-height: 36px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-form-item__content > .el-input,
|
|
|
+ .el-form-item__content > .el-select,
|
|
|
+ .el-form-item__content > .el-date-editor {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-input__inner,
|
|
|
+ .el-textarea__inner {
|
|
|
+ height: 36px;
|
|
|
+ border-color: #d7e1e8;
|
|
|
+ border-radius: 6px;
|
|
|
+ color: #263743;
|
|
|
+ font-weight: 600;
|
|
|
+ background: #ffffff;
|
|
|
+ box-shadow: inset 0 1px 2px rgba(21, 48, 66, 0.04);
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-input.is-disabled .el-input__inner,
|
|
|
+ .el-textarea.is-disabled .el-textarea__inner {
|
|
|
+ color: #52616d;
|
|
|
+ border-color: #dfe8ee;
|
|
|
+ background: linear-gradient(180deg, #fbfcfd, #f1f5f8);
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-input__inner:focus,
|
|
|
+ .el-textarea__inner:focus {
|
|
|
+ border-color: #18b6d2;
|
|
|
+ box-shadow: 0 0 0 2px rgba(24, 182, 210, 0.12);
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-radio {
|
|
|
+ margin-right: 36px;
|
|
|
+ color: #445765;
|
|
|
+ font-weight: 700;
|
|
|
+ line-height: 36px;
|
|
|
+ -webkit-font-smoothing: antialiased;
|
|
|
+ text-shadow: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-radio__input {
|
|
|
+ line-height: 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-radio__inner {
|
|
|
+ width: 18px;
|
|
|
+ height: 18px;
|
|
|
+ border: 1px solid #c9d6df;
|
|
|
+ background: #ffffff;
|
|
|
+ box-shadow: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-radio__inner::after {
|
|
|
+ width: 8px;
|
|
|
+ height: 8px;
|
|
|
+ background: #ffffff;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-radio__input.is-checked .el-radio__inner {
|
|
|
+ border-color: #11a8bd;
|
|
|
+ background: #11a8bd;
|
|
|
+ box-shadow: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-radio__input.is-checked + .el-radio__label {
|
|
|
+ color: #087d8e;
|
|
|
+ font-weight: 800;
|
|
|
+ text-shadow: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-radio__label {
|
|
|
+ padding-left: 9px;
|
|
|
+ font-size: 15px;
|
|
|
+ letter-spacing: 0;
|
|
|
+ white-space: nowrap;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-radio-button__inner {
|
|
|
+ min-width: 64px;
|
|
|
+ border-color: #d7e1e8;
|
|
|
+ color: #52616d;
|
|
|
+ background: #ffffff;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-radio-button__orig-radio:checked + .el-radio-button__inner {
|
|
|
+ border-color: #17b7b9 !important;
|
|
|
+ background: linear-gradient(135deg, #16b8c7, #27c46b) !important;
|
|
|
+ box-shadow: 0 4px 12px rgba(22, 184, 199, 0.2) !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ .process_list {
|
|
|
+ margin-top: 16px;
|
|
|
+ overflow: hidden;
|
|
|
+ border: 1px solid rgba(53, 103, 129, 0.18);
|
|
|
+ border-radius: 8px;
|
|
|
+ background: rgba(255, 255, 255, 0.94);
|
|
|
+ box-shadow: 0 12px 28px rgba(29, 58, 78, 0.08);
|
|
|
+ }
|
|
|
+
|
|
|
+ .process_list > .el-tabs__header {
|
|
|
+ margin: 0;
|
|
|
+ border-bottom-color: #dce7ed;
|
|
|
+ background: linear-gradient(180deg, #f8fbfd, #eef4f7);
|
|
|
+ }
|
|
|
+
|
|
|
+ .process_list > .el-tabs__header .el-tabs__item {
|
|
|
+ height: 46px;
|
|
|
+ padding: 0 22px;
|
|
|
+ color: #6a7884;
|
|
|
+ line-height: 46px;
|
|
|
+ font-weight: 700;
|
|
|
+ border-right-color: #e2ebf0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .process_list > .el-tabs__header .el-tabs__item.is-active {
|
|
|
+ color: #098da4;
|
|
|
+ background: #ffffff;
|
|
|
+ border-top: 3px solid #18b6d2;
|
|
|
+ box-shadow: inset 0 -1px 0 #ffffff;
|
|
|
+ }
|
|
|
+
|
|
|
+ .process_list > .el-tabs__content {
|
|
|
+ padding: 14px 8px 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .process_list .el-tab-pane > span[style*='green'] {
|
|
|
+ display: block;
|
|
|
+ margin: 0 0 12px;
|
|
|
+ padding: 9px 12px;
|
|
|
+ color: #118a55 !important;
|
|
|
+ font-weight: 700;
|
|
|
+ border: 1px solid rgba(39, 196, 107, 0.22);
|
|
|
+ border-left: 4px solid #27c46b;
|
|
|
+ border-radius: 6px;
|
|
|
+ background: linear-gradient(90deg, rgba(39, 196, 107, 0.11), rgba(24, 182, 210, 0.07));
|
|
|
+ }
|
|
|
+
|
|
|
+ .table {
|
|
|
+ margin-top: 0;
|
|
|
+ border: 1px solid #e1e9ee;
|
|
|
+ border-radius: 8px;
|
|
|
+ background: #ffffff;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-button {
|
|
|
+ height: 34px;
|
|
|
+ padding: 9px 16px;
|
|
|
+ border-radius: 5px;
|
|
|
+ font-weight: 700;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-button--primary {
|
|
|
+ border-color: #1a9fc2;
|
|
|
+ background: linear-gradient(135deg, #1890c2, #17b7b9);
|
|
|
+ box-shadow: 0 5px 12px rgba(24, 144, 194, 0.18);
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-button--success {
|
|
|
+ border-color: #33bf65;
|
|
|
+ background: linear-gradient(135deg, #29b862, #48c928);
|
|
|
+ box-shadow: 0 5px 12px rgba(41, 184, 98, 0.18);
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-button.is-disabled,
|
|
|
+ .table .el-button.is-disabled:hover {
|
|
|
+ border-color: #d8e1e7;
|
|
|
+ color: #a2adb7;
|
|
|
+ background: #f2f5f7;
|
|
|
+ box-shadow: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .text {
|
|
|
+ color: #4d5f6d;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-table {
|
|
|
+ color: #3c4b55;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-table th.el-table__cell {
|
|
|
+ color: #263743;
|
|
|
+ font-weight: 800;
|
|
|
+ background: linear-gradient(180deg, #f8fbfd, #edf3f6);
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-table td.el-table__cell,
|
|
|
+ .table .el-table th.el-table__cell.is-leaf {
|
|
|
+ border-bottom-color: #e8eef2;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-table__body tr:hover > td.el-table__cell {
|
|
|
+ background: rgba(24, 182, 210, 0.06);
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-table__fixed-right::before,
|
|
|
+ .table .el-table__fixed::before {
|
|
|
+ background-color: #e1e9ee;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-table__fixed-right {
|
|
|
+ box-shadow: -8px 0 18px rgba(31, 64, 84, 0.08);
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-input__inner {
|
|
|
+ height: 34px;
|
|
|
+ text-align: center;
|
|
|
+ border-color: #dbe6ec;
|
|
|
+ font-weight: 700;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-select {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-link {
|
|
|
+ font-weight: 700;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-pagination {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ min-height: 64px;
|
|
|
+ margin-top: 12px;
|
|
|
+ padding: 8px 0 10px;
|
|
|
+ color: #4f5d68;
|
|
|
+ font-weight: 700;
|
|
|
+ line-height: 40px;
|
|
|
+ overflow: visible;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-pagination > * {
|
|
|
+ display: inline-flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ height: 40px;
|
|
|
+ vertical-align: middle;
|
|
|
+ overflow: visible;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-pagination .el-pagination__total {
|
|
|
+ margin-right: 14px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-pagination .el-pagination__sizes {
|
|
|
+ margin-right: 22px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-pagination .el-pagination__sizes .el-select,
|
|
|
+ .table .el-pagination .el-pagination__sizes .el-input {
|
|
|
+ width: 106px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-pagination .el-pagination__jump {
|
|
|
+ margin-left: 22px;
|
|
|
+ color: #4f5d68;
|
|
|
+ line-height: 40px;
|
|
|
+ overflow: visible;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-pagination .el-pagination__jump .el-input {
|
|
|
+ width: 70px;
|
|
|
+ height: 40px;
|
|
|
+ margin: 0 8px;
|
|
|
+ line-height: 40px;
|
|
|
+ overflow: visible;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-pagination .el-select .el-input__inner,
|
|
|
+ .table .el-pagination .el-pagination__jump .el-input__inner {
|
|
|
+ box-sizing: border-box;
|
|
|
+ height: 40px;
|
|
|
+ padding: 0 30px 0 12px;
|
|
|
+ color: #253847;
|
|
|
+ line-height: 40px;
|
|
|
+ text-align: center;
|
|
|
+ border: 1px solid #d8e5ec;
|
|
|
+ border-radius: 5px;
|
|
|
+ background: #ffffff;
|
|
|
+ box-shadow: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-pagination .el-pagination__jump .el-input__inner {
|
|
|
+ padding: 0 8px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-pagination button,
|
|
|
+ .table .el-pagination .el-pager li {
|
|
|
+ display: inline-flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ min-width: 32px;
|
|
|
+ height: 32px;
|
|
|
+ padding: 0;
|
|
|
+ line-height: 32px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table .el-pagination .el-pager li.active {
|
|
|
+ color: #ffffff;
|
|
|
+ background: #1890ff;
|
|
|
+ border-radius: 50%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table div[style*='margin-left: 50px'] {
|
|
|
+ margin-left: 28px !important;
|
|
|
+ vertical-align: middle;
|
|
|
+ color: #5b6975;
|
|
|
+ font-weight: 700;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-dialog__footer {
|
|
|
+ padding: 14px 28px 18px;
|
|
|
+ border-top: 1px solid rgba(53, 103, 129, 0.14);
|
|
|
+ background: linear-gradient(180deg, rgba(246, 248, 251, 0.96), #eef4f7);
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-dialog__footer .el-button {
|
|
|
+ min-width: 86px;
|
|
|
+ height: 36px;
|
|
|
+ border-radius: 5px;
|
|
|
+ font-weight: 700;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-dialog__footer .el-button--primary {
|
|
|
+ border-color: #18a7c1;
|
|
|
+ background: linear-gradient(135deg, #18a7c1, #27c46b);
|
|
|
+ box-shadow: 0 6px 16px rgba(24, 167, 193, 0.22);
|
|
|
+ }
|
|
|
+
|
|
|
+ &.is-fullscreen {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ width: 100vw !important;
|
|
|
+ height: 100vh !important;
|
|
|
+ max-height: 100vh !important;
|
|
|
+ margin: 0 !important;
|
|
|
+ border-radius: 0;
|
|
|
+ overflow: hidden;
|
|
|
+
|
|
|
+ .el-dialog__header,
|
|
|
+ .el-dialog__footer {
|
|
|
+ flex: 0 0 auto;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-dialog__body {
|
|
|
+ flex: 1 1 auto;
|
|
|
+ min-height: 0;
|
|
|
+ height: calc(100vh - 136px) !important;
|
|
|
+ max-height: calc(100vh - 136px) !important;
|
|
|
+ overflow-x: hidden !important;
|
|
|
+ overflow-y: auto !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ .form-wrapper {
|
|
|
+ height: auto !important;
|
|
|
+ min-height: 100%;
|
|
|
+ max-height: none !important;
|
|
|
+ padding: 22px 28px 18px;
|
|
|
+ overflow: visible !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ .process_list {
|
|
|
+ margin-bottom: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ &.is-fullscreen .el-dialog__body::-webkit-scrollbar {
|
|
|
+ width: 8px;
|
|
|
+ height: 8px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &.is-fullscreen .el-dialog__body::-webkit-scrollbar-thumb {
|
|
|
+ border-radius: 8px;
|
|
|
+ background: linear-gradient(180deg, #72d1df, #7f8c99);
|
|
|
+ }
|
|
|
+
|
|
|
+ &.is-fullscreen .el-dialog__body::-webkit-scrollbar-track {
|
|
|
+ background: rgba(217, 225, 232, 0.7);
|
|
|
+ }
|
|
|
+
|
|
|
+ @media (max-width: 1366px) {
|
|
|
+ .form-wrapper {
|
|
|
+ padding: 18px 20px 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .process_list > .el-tabs__header .el-tabs__item {
|
|
|
+ padding: 0 16px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.ele-modal-wrap-fullscreen > .dispatch-tech-dialog {
|
|
|
+ display: flex !important;
|
|
|
+ flex-direction: column;
|
|
|
+ height: 100% !important;
|
|
|
+ max-height: 100% !important;
|
|
|
+ overflow: hidden !important;
|
|
|
+
|
|
|
+ > .el-dialog__header,
|
|
|
+ > .el-dialog__footer {
|
|
|
+ flex: 0 0 auto;
|
|
|
+ }
|
|
|
+
|
|
|
+ > .el-dialog__body {
|
|
|
+ flex: 1 1 auto !important;
|
|
|
+ min-height: 0;
|
|
|
+ height: auto !important;
|
|
|
+ max-height: none !important;
|
|
|
+ overflow-x: hidden !important;
|
|
|
+ overflow-y: auto !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ > .el-dialog__body > .form-wrapper {
|
|
|
+ min-height: 100%;
|
|
|
+ padding-bottom: 18px;
|
|
|
+ overflow: visible !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.ele-modal-wrap-fullscreen > .dispatch-tech-dialog > .el-dialog__body::-webkit-scrollbar {
|
|
|
+ width: 8px;
|
|
|
+ height: 8px;
|
|
|
+}
|
|
|
+
|
|
|
+.ele-modal-wrap-fullscreen > .dispatch-tech-dialog > .el-dialog__body::-webkit-scrollbar-thumb {
|
|
|
+ border-radius: 8px;
|
|
|
+ background: linear-gradient(180deg, #72d1df, #7f8c99);
|
|
|
+}
|
|
|
+
|
|
|
+.ele-modal-wrap-fullscreen > .dispatch-tech-dialog > .el-dialog__body::-webkit-scrollbar-track {
|
|
|
+ background: rgba(217, 225, 232, 0.7);
|
|
|
+}
|