add new gtk style name for "shaded entry", used in web-style search entry

This commit is contained in:
Paul Davis 2023-01-22 17:35:37 -07:00
parent 3b40289740
commit 09acd5f8b4
1 changed files with 11 additions and 0 deletions

View File

@ -163,6 +163,15 @@ style "entry"
text[SELECTED] = @fg_selected
}
style "shaded_entry" = "entry"
{
base[NORMAL] = shade(0.5, @background)
base[PRELIGHT] = shade(0.5, @background)
base[INSENSITIVE] = shade(0.5, @background)
base[ACTIVE] = shade(0.5, @background)
base[SELECTED] = shade(0.5, @background)
}
style "spin_button" = "entry"
{
engine "clearlooks"
@ -1271,3 +1280,5 @@ widget "*VCALabelBar*" style:highest "vca_label_bar"
widget "*TextOnBackground" style:highest "text_on_bg"
widget "*LargeTextEntry" style:highest "large_text"
widget "*LargeTextEntry*" style:highest "large_text"
widget "*ShadedEntry" style:highest "shaded_entry"