diff options
author | Yuri Sizov <yuris@humnom.net> | 2021-10-26 17:28:12 +0300 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2021-10-26 17:42:40 +0300 |
commit | 12838bd99dbb784ace55e4537eaebabeb435880a (patch) | |
tree | 2ec8f063567eaa68782517db98774b455597f4cf /doc/classes/CheckButton.xml | |
parent | d020c6851ad5bc1c6155602930fa4fdfa56dd26a (diff) |
Add focus font color to Button and derivatives
Diffstat (limited to 'doc/classes/CheckButton.xml')
-rw-r--r-- | doc/classes/CheckButton.xml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/classes/CheckButton.xml b/doc/classes/CheckButton.xml index 12bd493ae1..c86fadb6b0 100644 --- a/doc/classes/CheckButton.xml +++ b/doc/classes/CheckButton.xml @@ -32,6 +32,9 @@ <theme_item name="font_disabled_color" data_type="color" type="Color" default="Color(0.9, 0.9, 0.9, 0.2)"> The [CheckButton] text's font color when it's disabled. </theme_item> + <theme_item name="font_focus_color" data_type="color" type="Color" default="Color(0.94, 0.94, 0.94, 1)"> + The [CheckButton] text's font color when it's focused. Only replaces the normal text color of the button. Disabled, hovered, and pressed states take precedence over this color. + </theme_item> <theme_item name="font_hover_color" data_type="color" type="Color" default="Color(0.94, 0.94, 0.94, 1)"> The [CheckButton] text's font color when it's hovered. </theme_item> |