Skip to content
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

Open
kendoori opened this issue Jun 28, 2021 · 4 comments
Open

How do I adjust the panel divider size and color #10

kendoori opened this issue Jun 28, 2021 · 4 comments
Labels
wontfix This will not be worked on

Comments

@kendoori
Copy link

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.

Selection_212

@benji300
Copy link
Owner

benji300 commented Jul 5, 2021

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.
In the "Change application layout" view you can see where these splitters are added by the app.

image

You could only try to change the background color of this splitter by with custom css.

@benji300 benji300 added the wontfix This will not be worked on label Jul 5, 2021
@benji300
Copy link
Owner

benji300 commented Nov 4, 2021

As a workaround the following code could be pasted into userchrome.css:

/* 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;
}

@lohau
Copy link

lohau commented Apr 7, 2023

That got rid of the dividers, but now the favorites panel is only half as wide as the notebook panel:
Bildschirmfoto von 2023-04-07 10-06-36

@mygithubdevaccount
Copy link

That got rid of the dividers, but now the favorites panel is only half as wide as the notebook panel:

Just remove width: 100% !important; in the second rule to be:

.rli-root > .resizableLayoutItem > .resizableLayoutItem > div {
  height: 100% !important;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
wontfix This will not be worked on
Projects
None yet
Development

No branches or pull requests

4 participants