adjust modal bg

This commit is contained in:
hezhendong 2025-03-14 22:51:44 +08:00
parent d5c64b7173
commit 9347fad1ca

View file

@ -494,20 +494,20 @@ body.is-mobile .nav-file-title {
}
.popover {
background-color: transparent !important;
background-color: var(--app-model-bg-color) !important;
backdrop-filter: blur(5px);
}
.popover::before{
content: '';
z-index: -1;
filter: blur(20px);
filter: blur(8px);
background-color: var(--app-model-bg-color) !important;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
}
/* 隐藏库名 */
@ -1735,14 +1735,26 @@ body:not(.is-mobile):not(.composer--DisableNavHeaderAutoHide) .mod-sidedock .wor
border-radius: 14px;
}
.suggestion-container.mod-search-suggestion::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--app-model-bg-color) !important;
backdrop-filter: blur(5px);
z-index: -1;
}
.suggestion-container.mod-search-suggestion {
background-color: var(--suggestion-bg-color) !important;
backdrop-filter: blur(25px) !important;
backdrop-filter: blur(5px) !important;
}
.suggestion-container.mod-search-suggestion .suggestion {
background-color: var(--suggestion-bg-color) !important;
backdrop-filter: blur(25px) !important;
backdrop-filter: blur(5px) !important;
}
}