-
Only a bit, though. I want to have a bit more space between menu entries (in other words, making the menu entry a bit larger). I think there could be some CSS tricks. Increasing the UI font size or the scale factor definitely doesn't help. I posted it in the |
Beta Was this translation helpful? Give feedback.
Replies: 12 comments 3 replies
-
You just need to set the height of the menubar in the Example: menubar {
height: 36dp;
} |
Beta Was this translation helpful? Give feedback.
-
Oh I miss-read, between menu entries... let me check... |
Beta Was this translation helpful? Give feedback.
-
Try something like: menubar > menubar::button {
margin-left: 4dp;
margin-right: 4dp;
padding-left: 8dp;
padding-right: 8dp;
} It's hard to make a full documentation for each case, you'll need to read the eepp CSS documentation which is huge: https://eepp.ensoft.dev/page_cssspecification.html |
Beta Was this translation helpful? Give feedback.
-
I'll change the default padding to 8dp instead of the current 4dp, yeah, i makes sense. |
Beta Was this translation helpful? Give feedback.
-
Hi. I'm talking about menu entries, not the menus. For example, |
Beta Was this translation helpful? Give feedback.
-
Consider each menu and each menu entry as a rectangle. I want to know how to make this rectangle a bit larger. |
Beta Was this translation helpful? Give feedback.
-
Sure, follow the same logic (but I won't add padding to these, I think they're OK now, adding space will make the menu less usable in small screens): Menu::Item,
Menu::CheckBox,
Menu::Separator,
Menu::SubMenu,
Menu::RadioButton
{
padding-top: 4dp;
padding-bottom: 4dp;
} |
Beta Was this translation helpful? Give feedback.
-
I want to make the menu bar a bit larger, too. The entries in the left panel should also be larger. And is it possible to add some insulation space between the menu bar and the rest? Currently the menu bar and the tab bar are touching each other. |
Beta Was this translation helpful? Give feedback.
-
Larger how? I already mentioned how to change its height and separate the menu buttons. IDK what you mean. Maybe also add some margin?
Define larger please. Bigger font and more separation between entries? |
Beta Was this translation helpful? Give feedback.
-
I don't want the fonts to be larger. I'm talking about space (more separation). I also want to know if I could add some space between the menu bar and the tab bar. Currently they are touching each other. |
Beta Was this translation helpful? Give feedback.
-
For tree views you need to set the row height. #project_view {
row-height: 24dp;
}
menubar {
margin-bottom: 8dp;
} |
Beta Was this translation helpful? Give feedback.
-
How to make the bottom bar ( |
Beta Was this translation helpful? Give feedback.
Sure, follow the same logic (but I won't add padding to these, I think they're OK now, adding space will make the menu less usable in small screens):