fix: update

This commit is contained in:
Fine 2023-11-14 19:35:59 +08:00
parent c5c1f487d9
commit f3d81a80f0
3 changed files with 5 additions and 3 deletions

View File

@ -53,6 +53,7 @@ html {
--sw-event-vis-selected: #1a1a1a; --sw-event-vis-selected: #1a1a1a;
--sw-time-axis-text: #4d4d4d; --sw-time-axis-text: #4d4d4d;
--sw-drawer-header: #72767b; --sw-drawer-header: #72767b;
--sw-marketplace-border: #dedfe0;
} }
html.dark { html.dark {
@ -92,6 +93,7 @@ html.dark {
--sw-event-vis-selected: #fff; --sw-event-vis-selected: #fff;
--sw-time-axis-text: #aaa; --sw-time-axis-text: #aaa;
--sw-drawer-header: #e9e9eb; --sw-drawer-header: #e9e9eb;
--sw-marketplace-border: #606266;
} }
.el-drawer__header { .el-drawer__header {

View File

@ -113,7 +113,7 @@ limitations under the License. -->
.category { .category {
flex-wrap: wrap; flex-wrap: wrap;
border-right: 1px solid #ddd; border-right: 1px solid var(--sw-marketplace-border);
align-content: flex-start; align-content: flex-start;
height: 100%; height: 100%;
overflow: auto; overflow: auto;

View File

@ -124,8 +124,8 @@ limitations under the License. -->
.profile-t-tool { .profile-t-tool {
padding: 5px 10px; padding: 5px 10px;
font-weight: bold; font-weight: bold;
border-right: 1px solid rgb(0 0 0 / 7%); border-right: 1px solid var(--sw-trace-list-border);
border-bottom: 1px solid rgb(0 0 0 / 7%); border-bottom: 1px solid var(--sw-trace-list-border);
background-color: var(--sw-table-header); background-color: var(--sw-table-header);
} }