@luetage said in -Experiment- to move bookmarks editor on bottom:
What bookmark editor are we talking about
Bookmark editor at vivaldi://bookmark page (not the one in panel)
The one in the panel, it's already in the bottom, actually 🙂
this picture just made me go a little blind lol
Yes, I know, I have some "brutal" themes to see differences in css mods which changes colours 😃
Known issue: The code above has some problems rendering history infos; consider this code variant below - small box on bottom-right - as a clumsy workaround:
/* Hide thumbnails in Bookmark Panel & Manager */
.manager-editor .preview {
display: none !important;
}
.preview-folder {
display: none !important;
}
/* Move bookmark editor/history info to bottom-right */
.manager .manager-editor {
position: absolute;
opacity: .8 !important;
bottom: 0px;
/* left: 50px; */
right: 21px;
border: 1px dotted transparent;
}
/* Workaround for history info */
.more-info {
position: relative;
width: auto;
}
Known issue: The calendar is a mess with this code