diff --git a/core/core-frontend/src/store/modules/appearance.ts b/core/core-frontend/src/store/modules/appearance.ts index eecf692e0f..c40ef4aa8c 100644 --- a/core/core-frontend/src/store/modules/appearance.ts +++ b/core/core-frontend/src/store/modules/appearance.ts @@ -300,6 +300,12 @@ export const useAppearanceStore = defineStore('appearanceStore', { .mix(new colorTree('ffffff'), new colorTree(this.customColor.substr(1)), { value: 15 }) .toRGB() ) + document.documentElement.style.setProperty( + '--ed-color-primary-dark-20', + colorFunctions + .mix(new colorTree('000000'), new colorTree(this.customColor.substr(1)), { value: 20 }) + .toRGB() + ) document.documentElement.style.setProperty('--ed-color-primary-1a', `${this.customColor}1a`) document.documentElement.style.setProperty('--ed-color-primary-33', `${this.customColor}33`) document.documentElement.style.setProperty('--ed-color-primary-99', `${this.customColor}99`) @@ -317,6 +323,7 @@ export const useAppearanceStore = defineStore('appearanceStore', { document.documentElement.style.removeProperty('--ed-color-primary-33') document.documentElement.style.removeProperty('--ed-color-primary-99') document.documentElement.style.removeProperty('--ed-color-primary-dark-2') + document.documentElement.style.removeProperty('--ed-color-primary-dark-20') } this.bg = data.bg this.login = data.login diff --git a/core/core-frontend/src/style/index.less b/core/core-frontend/src/style/index.less index b2e9398017..ffdb3d3662 100644 --- a/core/core-frontend/src/style/index.less +++ b/core/core-frontend/src/style/index.less @@ -725,3 +725,36 @@ strong { .ed-menu--vertical.ed-menu--light .ed-menu-item.is-active.is-active.is-active { background-color: var(--ed-color-primary-1a, #3370ff1a) !important; } + +.utree-popover { + padding-bottom: 0 !important; + .pagination-count { + height: auto !important; + } + .ed-pager li.number { + &:hover { + background-color: #1f23291a; + } + + &:active { + background-color: #1f232933; + } + } + .btn-quicknext, + .btn-quickprev { + svg { + path[fill='#245BDB'], + path[fill='currentColor'] { + fill: var(--ed-color-primary, #3370ff); + } + } + + &:active { + svg { + path { + fill: var(--ed-color-primary-dark-20, #245bdb); + } + } + } + } +} diff --git a/core/core-frontend/src/views/common/DeResourceCreateOptV2.vue b/core/core-frontend/src/views/common/DeResourceCreateOptV2.vue index 73945aefd6..27d9e415a6 100644 --- a/core/core-frontend/src/views/common/DeResourceCreateOptV2.vue +++ b/core/core-frontend/src/views/common/DeResourceCreateOptV2.vue @@ -37,6 +37,7 @@ defineExpose({