menu: [wip] support borders, rounded corners and padding around items

Following theme configurations are added:

menu.padding.width: 0
menu.padding.height: 0
menu.corner-radius: 0
menu.border.width: 1
menu.border.color: #a8a5a2
menu.bg.color: #fcfbfa
menu.items.corner-radius: 0
menu.items.border.width: 0
menu.items.border.color: #fcfbfa
menu.items.active.border.color: #a8a5a2
This commit is contained in:
tokyo4j 2024-11-15 19:19:54 +09:00
parent d7b5eb037a
commit 9d2dc87a2a
6 changed files with 206 additions and 36 deletions

View file

@ -164,6 +164,24 @@ all are supported.
A fixed width can be achieved by setting .min and .max to the same
value.
*menu.padding.width*
Horizontal padding of menu in pixels. Default is 0.
*menu.padding.height*
Vertical padding of menu in pixels. Default is 0.
*menu.corner-radius*
Corner radisu of menus in pixels. Default is 0.
*menu.border.width*
Border width of menus in pixels. Default is 1.
*menu.border.color*
Border color of menus. Default is #a8a5a2.
*menu.bg.color*
Background color of menus. Inherits *menu.items.bg.color* if not set.
*menu.items.padding.x*
Horizontal padding of menu text entries in pixels.
Default is 7.
@ -172,12 +190,25 @@ all are supported.
Vertical padding of menu text entries in pixels.
Default is 4.
*menu.items.corner-radius*
Corner radius of menu items. Default is 0.
*menu.items.border.width*
Border width of menu items. Default is 0.
*menu.items.border.color*
Border color of inactive menu items. Inherits *menu.border.color* if not
set.
*menu.items.bg.color*
Background color of inactive menu items.
*menu.items.text.color*
Text color of inactive menu item.
*menu.items.active.border.color*
Border color of active menu items. Inherits *menu.border.color* if not set.
*menu.items.active.bg.color*
Background color of active menu items.

View file

@ -59,8 +59,18 @@ menu.overlap.x: 0
menu.overlap.y: 0
menu.width.min: 20
menu.width.max: 200
menu.padding.width: 0
menu.padding.height: 0
menu.corner-radius: 0
menu.border.width: 1
menu.border.color: #a8a5a2
menu.bg.color: #fcfbfa
menu.items.corner-radius: 0
menu.items.border.width: 1
menu.items.border.color: #a8a5a2
menu.items.bg.color: #fcfbfa
menu.items.text.color: #000000
menu.items.active.border.color: #a8a5a2
menu.items.active.bg.color: #e1dedb
menu.items.active.text.color: #000000
menu.items.padding.x: 7