|
@@ -9,69 +9,83 @@ body {
|
|
|
margin: 0;
|
|
margin: 0;
|
|
|
padding: 0;
|
|
padding: 0;
|
|
|
font-size: 14px;
|
|
font-size: 14px;
|
|
|
- background-color: var(--color-bg-1);
|
|
|
|
|
|
|
+ background-color: var(--color-theme-2);
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
-webkit-font-smoothing: antialiased;
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
+
|
|
|
|
|
+ --color-theme-1: #0b2349;
|
|
|
|
|
+ --color-theme-2: #3c4e69;
|
|
|
|
|
+ --table-th-bg: #5f6c7f;
|
|
|
|
|
+ --color-input-bg: #77818e;
|
|
|
|
|
+ --color-border: #5f6c7f;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.echarts-tooltip-diy {
|
|
.echarts-tooltip-diy {
|
|
|
background: linear-gradient(
|
|
background: linear-gradient(
|
|
|
304.17deg,
|
|
304.17deg,
|
|
|
- rgba(253, 254, 255, 0.6) -6.04%,
|
|
|
|
|
- rgba(244, 247, 252, 0.6) 85.2%
|
|
|
|
|
|
|
+ rgb(253 254 255 / 60%) -6.04%,
|
|
|
|
|
+ rgb(244 247 252 / 60%) 85.2%
|
|
|
) !important;
|
|
) !important;
|
|
|
border: none !important;
|
|
border: none !important;
|
|
|
- backdrop-filter: blur(10px) !important;
|
|
|
|
|
|
|
+
|
|
|
/* Note: backdrop-filter has minimal browser support */
|
|
/* Note: backdrop-filter has minimal browser support */
|
|
|
|
|
|
|
|
border-radius: 6px !important;
|
|
border-radius: 6px !important;
|
|
|
|
|
+ backdrop-filter: blur(10px) !important;
|
|
|
|
|
+
|
|
|
.content-panel {
|
|
.content-panel {
|
|
|
display: flex;
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
justify-content: space-between;
|
|
|
- padding: 0 9px;
|
|
|
|
|
- background: rgba(255, 255, 255, 0.8);
|
|
|
|
|
width: 164px;
|
|
width: 164px;
|
|
|
height: 32px;
|
|
height: 32px;
|
|
|
|
|
+ margin-bottom: 4px;
|
|
|
|
|
+ padding: 0 9px;
|
|
|
line-height: 32px;
|
|
line-height: 32px;
|
|
|
- box-shadow: 6px 0px 20px rgba(34, 87, 188, 0.1);
|
|
|
|
|
|
|
+ background: rgb(255 255 255 / 80%);
|
|
|
border-radius: 4px;
|
|
border-radius: 4px;
|
|
|
- margin-bottom: 4px;
|
|
|
|
|
|
|
+ box-shadow: 6px 0 20px rgb(34 87 188 / 10%);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
.tooltip-title {
|
|
.tooltip-title {
|
|
|
- margin: 0 0 10px 0;
|
|
|
|
|
|
|
+ margin: 0 0 10px;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
p {
|
|
p {
|
|
|
margin: 0;
|
|
margin: 0;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
.tooltip-title,
|
|
.tooltip-title,
|
|
|
.tooltip-value {
|
|
.tooltip-value {
|
|
|
- font-size: 13px;
|
|
|
|
|
- line-height: 15px;
|
|
|
|
|
display: flex;
|
|
display: flex;
|
|
|
align-items: center;
|
|
align-items: center;
|
|
|
- text-align: right;
|
|
|
|
|
color: #1d2129;
|
|
color: #1d2129;
|
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
|
|
|
+ font-size: 13px;
|
|
|
|
|
+ line-height: 15px;
|
|
|
|
|
+ text-align: right;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
.tooltip-item-icon {
|
|
.tooltip-item-icon {
|
|
|
display: inline-block;
|
|
display: inline-block;
|
|
|
- margin-right: 8px;
|
|
|
|
|
width: 10px;
|
|
width: 10px;
|
|
|
height: 10px;
|
|
height: 10px;
|
|
|
|
|
+ margin-right: 8px;
|
|
|
border-radius: 50%;
|
|
border-radius: 50%;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.general-card {
|
|
.general-card {
|
|
|
- border-radius: 4px;
|
|
|
|
|
border: none;
|
|
border: none;
|
|
|
|
|
+ border-radius: 4px;
|
|
|
|
|
+
|
|
|
& > .arco-card-header {
|
|
& > .arco-card-header {
|
|
|
height: auto;
|
|
height: auto;
|
|
|
padding: 20px;
|
|
padding: 20px;
|
|
|
border: none;
|
|
border: none;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
& > .arco-card-body {
|
|
& > .arco-card-body {
|
|
|
- padding: 0 20px 20px 20px;
|
|
|
|
|
|
|
+ padding: 0 20px 20px;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -82,13 +96,42 @@ body {
|
|
|
.arco-table-cell {
|
|
.arco-table-cell {
|
|
|
.circle {
|
|
.circle {
|
|
|
display: inline-block;
|
|
display: inline-block;
|
|
|
- margin-right: 4px;
|
|
|
|
|
width: 6px;
|
|
width: 6px;
|
|
|
height: 6px;
|
|
height: 6px;
|
|
|
- border-radius: 50%;
|
|
|
|
|
|
|
+ margin-right: 4px;
|
|
|
background-color: rgb(var(--blue-6));
|
|
background-color: rgb(var(--blue-6));
|
|
|
|
|
+ border-radius: 50%;
|
|
|
|
|
+
|
|
|
&.pass {
|
|
&.pass {
|
|
|
background-color: rgb(var(--green-6));
|
|
background-color: rgb(var(--green-6));
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+.arco-table {
|
|
|
|
|
+ tr th {
|
|
|
|
|
+ color: var(--color-white);
|
|
|
|
|
+ font-weight: 600;
|
|
|
|
|
+ background-color: var(--table-th-bg);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ tr td {
|
|
|
|
|
+ color: var(--color-white);
|
|
|
|
|
+ font-weight: 600;
|
|
|
|
|
+ background-color: var(--color-theme-2);
|
|
|
|
|
+ border-color: var(--color-border);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ tr:hover td {
|
|
|
|
|
+ background-color: var(--table-th-bg) !important;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.arco-form-item-label {
|
|
|
|
|
+ color: var(--color-white) !important;
|
|
|
|
|
+ font-weight: 600;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.arco-modal {
|
|
|
|
|
+ background-color: var(--color-theme-2);
|
|
|
|
|
+}
|