-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do I adjust the panel divider size and color #10
Comments
Unfortunately this is nothing which is caused by the plugin. It is the Apps default behavior. Which places between each panel an empty white space (splitter) for resizing the panel widths and heights. You could only try to change the background color of this splitter by with custom css. |
As a workaround the following code could be pasted into /* remove white border (~5px, right) from columns with one panel */
.rli-root > .resizableLayoutItem > div {
width: 100% !important;
}
/* remove white border (~5px, right, below) from columns with two or more panels */
.rli-root > .resizableLayoutItem > .resizableLayoutItem > div {
height: 100% !important;
width: 100% !important;
}
/* remove small border (1px, below) plugin iframes */
div.resizableLayoutItem iframe {
border-bottom: none !important;
} |
Just remove .rli-root > .resizableLayoutItem > .resizableLayoutItem > div {
height: 100% !important;
} |
I have moved the Favorites to the left, and changed the background and font color to match the default notebooks/tags panel. Somehow this has created a thick divider between the Favorites.
The text was updated successfully, but these errors were encountered: