@@ -1701,8 +1724,10 @@ defineExpose({
border-radius: 4px;
border: 1px solid #dee0e3;
display: flex;
- .ed-checkbox__label:hover {
- color: #1f2329;
+ .ed-checkbox:not(.is-disabled) {
+ .ed-checkbox__label:hover {
+ color: #1f2329;
+ }
}
.query-condition-list {
height: 100%;
diff --git a/core/core-frontend/src/layout/components/AiComponent.vue b/core/core-frontend/src/layout/components/AiComponent.vue
index 04b240c7d7..7d7937dafc 100644
--- a/core/core-frontend/src/layout/components/AiComponent.vue
+++ b/core/core-frontend/src/layout/components/AiComponent.vue
@@ -62,5 +62,6 @@ onMounted(() => {
height: 50%;
min-height: 450px;
max-height: 600px;
+ box-shadow: 0px 6px 24px 0px #1f232914;
}
diff --git a/core/core-frontend/src/layout/components/Header.vue b/core/core-frontend/src/layout/components/Header.vue
index f05f7b2cba..8d66874dfa 100644
--- a/core/core-frontend/src/layout/components/Header.vue
+++ b/core/core-frontend/src/layout/components/Header.vue
@@ -96,7 +96,7 @@ onMounted(() => {
-
+
diff --git a/core/core-frontend/src/views/share/share/ShareGrid.vue b/core/core-frontend/src/views/share/share/ShareGrid.vue
index 1729e041bf..b01fd82c8f 100644
--- a/core/core-frontend/src/views/share/share/ShareGrid.vue
+++ b/core/core-frontend/src/views/share/share/ShareGrid.vue
@@ -225,6 +225,10 @@ watch(
margin-top: 16px;
height: calc(100% - 110px);
+ :deep(.ed-table__row):hover {
+ cursor: pointer;
+ }
+
.name-content {
display: flex;
align-items: center;
diff --git a/core/core-frontend/src/views/workbranch/ShortcutTable.vue b/core/core-frontend/src/views/workbranch/ShortcutTable.vue
index 543ee1f115..e459f8b840 100644
--- a/core/core-frontend/src/views/workbranch/ShortcutTable.vue
+++ b/core/core-frontend/src/views/workbranch/ShortcutTable.vue
@@ -432,6 +432,10 @@ const getEmptyDesc = (): string => {
margin-top: 16px;
height: calc(100% - 110px);
+ :deep(.ed-table__row):hover {
+ cursor: pointer;
+ }
+
.name-content {
display: flex;
align-items: center;