This organization was marked as archived by an administrator on Aug 14, 2024. It is no longer maintained.
|
Is it or will it be possible to change the buttons and their colors with AdwCustomizer? |
Answered by
ArtyIF
Jul 26, 2022
Replies: 3 comments 2 replies
|
You can use the custom CSS field to change how they look.18:48, July 26, 2022, Caio Lima de Oliveira ***@***.***>:
Is it or will it be possible to change the buttons and their colors with AdwCustomizer?
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
-- Sent from Yandex Mail for mobile
|
0 replies
|
In particular, if you want to hide the circles from the window controls, use: windowcontrols image {
background-color: transparent;
}
/* If you want to keep the circles when you hover: */
windowcontrols image:hover {
background-color: alpha(@headerbar_fg_color, 0.07);
}
/* When the buttons are pushed down: */
windowcontrols image:active {
background-color: alpha(@headerbar_fg_color, 0.16);
}The alpha values are based on values the flat buttons use. |
2 replies
Answer selected by
caioolivv
|
edit: I just found new builds have option to add custom css. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In particular, if you want to hide the circles from the window controls, use:
The alpha values are based on values the flat buttons use.