diff --git a/src/components/SelectSingle.vue b/src/components/SelectSingle.vue
index 6f6cdd5f..796df39b 100644
--- a/src/components/SelectSingle.vue
+++ b/src/components/SelectSingle.vue
@@ -85,7 +85,7 @@ limitations under the License. -->
.bar-select {
position: relative;
justify-content: space-between;
- border: 1px solid #ddd;
+ border: 1px solid var(--el-border-color);
background: $theme-background;
border-radius: 3px;
color: $font-color;
@@ -97,8 +97,8 @@ limitations under the License. -->
border-radius: 3px;
margin: 3px;
color: $active-color;
- background-color: #fafafa;
- border: 1px solid #e8e8e8;
+ background-color: var(--theme-background);
+ border: 1px solid var(--el-color-primary);
text-align: center;
}
}
@@ -139,7 +139,7 @@ limitations under the License. -->
left: 0;
background-color: $theme-background;
box-shadow: 0 1px 6px rgb(99 99 99 / 20%);
- border: 1px solid #ddd;
+ border: 1px solid var(--el-border-color);
width: 100%;
border-radius: 0 0 3px 3px;
border-right-width: 1px !important;
@@ -169,7 +169,7 @@ limitations under the License. -->
}
&:hover {
- background-color: #f5f5f5;
+ background-color: var(--layout-background);
}
}
diff --git a/src/styles/theme.scss b/src/styles/theme.scss
index 98e5fa3d..c6296300 100644
--- a/src/styles/theme.scss
+++ b/src/styles/theme.scss
@@ -68,7 +68,7 @@ html {
--sw-time-axis-text: #4d4d4d;
--sw-drawer-header: #72767b;
--sw-marketplace-border: #dedfe0;
- --sw-grid-item-active: #79bbff;
+ --sw-grid-item-active: #d4d7de;
}
html.dark {
diff --git a/src/views/dashboard/panel/Tool.vue b/src/views/dashboard/panel/Tool.vue
index 2f986a4f..45a6139a 100644
--- a/src/views/dashboard/panel/Tool.vue
+++ b/src/views/dashboard/panel/Tool.vue
@@ -42,11 +42,11 @@ limitations under the License. -->
:isRemote="['EndpointRelation', 'Endpoint'].includes(dashboardStore.entity)"
/>
-