theme: add separate bar_height setting
This commit is contained in:
parent
3933eba30c
commit
01f9c094ee
12 changed files with 97 additions and 36 deletions
|
|
@ -1907,6 +1907,11 @@
|
|||
"description": "The height of tabs.",
|
||||
"minimum": 0.0
|
||||
},
|
||||
"bar-height": {
|
||||
"type": "integer",
|
||||
"description": "The height of the bar. Defaults to the title-height if not set.",
|
||||
"minimum": 0.0
|
||||
},
|
||||
"font": {
|
||||
"type": "string",
|
||||
"description": "The name of the font to use."
|
||||
|
|
|
|||
|
|
@ -4235,6 +4235,16 @@ The table has the following fields:
|
|||
|
||||
The numbers should be greater than or equal to 0.
|
||||
|
||||
- `bar-height` (optional):
|
||||
|
||||
The height of the bar. Defaults to the title-height if not set.
|
||||
|
||||
The value of this field should be a number.
|
||||
|
||||
The numbers should be integers.
|
||||
|
||||
The numbers should be greater than or equal to 0.
|
||||
|
||||
- `font` (optional):
|
||||
|
||||
The name of the font to use.
|
||||
|
|
|
|||
|
|
@ -2123,6 +2123,12 @@ Theme:
|
|||
minimum: 0
|
||||
required: false
|
||||
description: The height of tabs.
|
||||
bar-height:
|
||||
kind: number
|
||||
integer_only: true
|
||||
minimum: 0
|
||||
required: false
|
||||
description: The height of the bar. Defaults to the title-height if not set.
|
||||
font:
|
||||
kind: string
|
||||
required: false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue