Updated Customize Vaultwarden CSS (markdown)

This commit is contained in:
ZTHawk
2025-06-07 12:17:29 +02:00
parent dff8ef5e1a
commit 889bad981e

View File

@@ -96,4 +96,23 @@ app-user-layout bit-nav-logo bit-icon::before {
app-organization-layout bit-nav-logo bit-icon::before { app-organization-layout bit-nav-logo bit-icon::before {
background-image: url(../images/my-custom-admin-console-logo.png) !important; background-image: url(../images/my-custom-admin-console-logo.png) !important;
} }
```
**Non scrolling search filter: (tested with 'Stylus' browser extension)**
```css
/*
Make the "Filter" box fixed, so only the list of entries is scrolling.
Allow to always see what you filtered for and quickly access the search filter without scrolling back to the top.
*/
#main-content > app-vault > .tw-flex .tw-basis-1\/4
{
position: fixed;
width: calc(25% - 55px);
}
#main-content > app-vault > .tw-flex .tw-basis-3\/4
{
position: relative;
left: calc(25% + 10px);
}
``` ```