2023-07-24 10:05:07 +08:00
|
|
|
* {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html,
|
|
|
|
|
body {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
background-color: var(--color-bg-1);
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
2023-07-29 13:11:19 +08:00
|
|
|
--color-scrollbar-track: var(--color-neutral-1);
|
|
|
|
|
--color-scrollbar-thumb: #959FAB;
|
2023-07-24 10:05:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.echarts-tooltip-diy {
|
2023-08-08 17:59:37 +08:00
|
|
|
background: linear-gradient(304.17deg,
|
2023-07-24 10:05:07 +08:00
|
|
|
rgba(253, 254, 255, 0.6) -6.04%,
|
2023-08-08 17:59:37 +08:00
|
|
|
rgba(244, 247, 252, 0.6) 85.2%) !important;
|
2023-07-24 10:05:07 +08:00
|
|
|
border: none !important;
|
|
|
|
|
backdrop-filter: blur(10px) !important;
|
|
|
|
|
/* Note: backdrop-filter has minimal browser support */
|
|
|
|
|
|
|
|
|
|
border-radius: 6px !important;
|
2023-07-29 13:11:19 +08:00
|
|
|
|
2023-07-24 10:05:07 +08:00
|
|
|
.content-panel {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 0 9px;
|
|
|
|
|
background: rgba(255, 255, 255, 0.8);
|
|
|
|
|
width: 164px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
line-height: 32px;
|
|
|
|
|
box-shadow: 6px 0px 20px rgba(34, 87, 188, 0.1);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
}
|
2023-07-29 13:11:19 +08:00
|
|
|
|
2023-07-24 10:05:07 +08:00
|
|
|
.tooltip-title {
|
|
|
|
|
margin: 0 0 10px 0;
|
|
|
|
|
}
|
2023-07-29 13:11:19 +08:00
|
|
|
|
2023-07-24 10:05:07 +08:00
|
|
|
p {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
2023-07-29 13:11:19 +08:00
|
|
|
|
2023-07-24 10:05:07 +08:00
|
|
|
.tooltip-title,
|
|
|
|
|
.tooltip-value {
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
line-height: 15px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
text-align: right;
|
|
|
|
|
color: #1d2129;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
2023-07-29 13:11:19 +08:00
|
|
|
|
2023-07-24 10:05:07 +08:00
|
|
|
.tooltip-item-icon {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
width: 10px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.general-card {
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
border: none;
|
2023-07-29 13:11:19 +08:00
|
|
|
|
2023-07-24 10:05:07 +08:00
|
|
|
& > .arco-card-header {
|
|
|
|
|
height: auto;
|
2023-08-08 17:59:37 +08:00
|
|
|
padding: 16px;
|
2023-07-24 10:05:07 +08:00
|
|
|
border: none;
|
|
|
|
|
}
|
2023-07-29 13:11:19 +08:00
|
|
|
|
2023-07-24 10:05:07 +08:00
|
|
|
& > .arco-card-body {
|
2023-08-08 17:59:37 +08:00
|
|
|
padding: 0 16px 16px 16px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.a-query-header-grid {
|
|
|
|
|
.arco-grid-item {
|
|
|
|
|
&:last-child {
|
|
|
|
|
display: flex !important;
|
|
|
|
|
}
|
2023-07-24 10:05:07 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.split-line {
|
|
|
|
|
border-color: rgb(var(--gray-2));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.arco-table-cell {
|
|
|
|
|
.circle {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-right: 4px;
|
|
|
|
|
width: 6px;
|
|
|
|
|
height: 6px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background-color: rgb(var(--blue-6));
|
2023-07-29 13:11:19 +08:00
|
|
|
|
2023-07-24 10:05:07 +08:00
|
|
|
&.pass {
|
|
|
|
|
background-color: rgb(var(--green-6));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-07-29 13:11:19 +08:00
|
|
|
|
2023-09-20 10:40:59 +08:00
|
|
|
.arco-drawer-container.drawer-body-padding-0 {
|
|
|
|
|
.arco-drawer-body {
|
|
|
|
|
padding: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-29 13:11:19 +08:00
|
|
|
#app {
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
|
background-color: var(--color-scrollbar-track);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
width: 5px;
|
|
|
|
|
height: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
background-color: var(--color-scrollbar-thumb);
|
|
|
|
|
transition: color .2s ease;
|
|
|
|
|
}
|