| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- * {
- box-sizing: border-box;
- }
- html,
- body {
- width: 100%;
- height: 100%;
- margin: 0;
- padding: 0;
- font-size: 14px;
- background-color: var(--color-theme-2);
- -moz-osx-font-smoothing: grayscale;
- -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 {
- background: linear-gradient(
- 304.17deg,
- rgb(253 254 255 / 60%) -6.04%,
- rgb(244 247 252 / 60%) 85.2%
- ) !important;
- border: none !important;
- /* Note: backdrop-filter has minimal browser support */
- border-radius: 6px !important;
- backdrop-filter: blur(10px) !important;
- .content-panel {
- display: flex;
- justify-content: space-between;
- width: 164px;
- height: 32px;
- margin-bottom: 4px;
- padding: 0 9px;
- line-height: 32px;
- background: rgb(255 255 255 / 80%);
- border-radius: 4px;
- box-shadow: 6px 0 20px rgb(34 87 188 / 10%);
- }
- .tooltip-title {
- margin: 0 0 10px;
- }
- p {
- margin: 0;
- }
- .tooltip-title,
- .tooltip-value {
- display: flex;
- align-items: center;
- color: #1d2129;
- font-weight: bold;
- font-size: 13px;
- line-height: 15px;
- text-align: right;
- }
- .tooltip-item-icon {
- display: inline-block;
- width: 10px;
- height: 10px;
- margin-right: 8px;
- border-radius: 50%;
- }
- }
- .general-card {
- border: none !important;
- border-radius: 4px;
- & > .arco-card-header {
- height: auto;
- padding: 20px;
- border: none;
- }
- & > .arco-card-body {
- padding: 0 20px 20px;
- }
- }
- .split-line {
- border-color: rgb(var(--gray-2));
- }
- .arco-table-cell {
- .circle {
- display: inline-block;
- width: 6px;
- height: 6px;
- margin-right: 4px;
- background-color: rgb(var(--blue-6));
- border-radius: 50%;
- &.pass {
- 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) !important;
- .arco-modal-header {
- border-bottom-color: var(--color-border);
- .arco-modal-title {
- color: var(--color-white);
- font-weight: 600;
- }
- }
- .arco-modal-close-btn {
- color: var(--color-white);
- }
- .arco-modal-footer {
- border-top-color: var(--color-border);
- }
- .arco-modal-body {
- color: var(--color-white);
- }
- }
|