mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-01-16 20:50:33 +00:00
Updated Customize Vaultwarden CSS (markdown)
@@ -96,4 +96,23 @@ app-user-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;
|
||||
}
|
||||
```
|
||||
|
||||
**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);
|
||||
}
|
||||
```
|
||||
Reference in New Issue
Block a user