|
@@ -85,7 +85,7 @@ body,
|
|
|
}
|
|
|
|
|
|
.split-line {
|
|
|
- border-color: rgb(var(--gray-2));
|
|
|
+ border-color: rgb(var(--gray-2)) !important;
|
|
|
}
|
|
|
|
|
|
.arco-table-cell {
|
|
@@ -94,11 +94,11 @@ body,
|
|
|
width: 6px;
|
|
|
height: 6px;
|
|
|
margin-right: 4px;
|
|
|
- background-color: rgb(var(--blue-6));
|
|
|
+ background-color: rgb(var(--blue-6)) !important;
|
|
|
border-radius: 50%;
|
|
|
|
|
|
&.pass {
|
|
|
- background-color: rgb(var(--green-6));
|
|
|
+ background-color: rgb(var(--green-6)) !important;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -110,13 +110,13 @@ body,
|
|
|
.arco-btn-primary,
|
|
|
.arco-btn-primary[type='button'],
|
|
|
.arco-btn-primary[type='submit'] {
|
|
|
- background-color: rgb(var(--primary-8));
|
|
|
+ background-color: rgb(var(--primary-8)) !important;
|
|
|
}
|
|
|
|
|
|
.arco-btn-secondary.arco-btn-disabled,
|
|
|
.arco-btn-secondary[type='button'].arco-btn-disabled,
|
|
|
.arco-btn-secondary[type='submit'].arco-btn-disabled {
|
|
|
- background-color: transparent;
|
|
|
+ background-color: transparent !important;
|
|
|
}
|
|
|
|
|
|
@keyframes fadeIn {
|
|
@@ -133,23 +133,27 @@ body,
|
|
|
}
|
|
|
|
|
|
.arco-alert-warning {
|
|
|
- background-color: var(--color-warning-light-4);
|
|
|
+ background-color: var(--color-warning-light-4) !important;
|
|
|
}
|
|
|
.arco-input-wrapper,
|
|
|
.arco-picker,
|
|
|
.arco-select-view-single,
|
|
|
.arco-radio-group-button {
|
|
|
- background-color: var(--color-neutral-2);
|
|
|
+ background-color: #051f44 !important;
|
|
|
}
|
|
|
+.arco-radio-button.arco-radio-checked,
|
|
|
+.arco-radio-button:hover {
|
|
|
+ background-color: #0d2952 !important;
|
|
|
+}
|
|
|
+
|
|
|
.arco-modal-body {
|
|
|
height: 100%;
|
|
|
}
|
|
|
.arco-radio-button.arco-radio-checked,
|
|
|
.arco-radio-button:hover {
|
|
|
- background-color: var(--color-bg-3);
|
|
|
+ background-color: var(--color-bg-3) !important;
|
|
|
}
|
|
|
|
|
|
.arco-divider-horizontal {
|
|
|
- border-bottom: 1px solid var(--color-neutral-2);
|
|
|
+ border-bottom: 1px solid var(--color-neutral-2) !important;
|
|
|
}
|
|
|
-
|