Before this change, buttons with the outlines "altline", "wide" and "special" were not showing visual feedback when those were pressed. After this change, the visual feedback is similar to the default style. Part-of: <https://gitlab.gnome.org/World/Phosh/squeekboard/-/merge_requests/634>
48 lines
742 B
CSS
48 lines
742 B
CSS
/* Adwaita-dark style keyboard */
|
|
sq_view {
|
|
background-color: rgba(0, 0, 0, 255);
|
|
color: #ffffff;
|
|
}
|
|
|
|
sq_view sq_button {
|
|
color: #deddda;
|
|
background: #464448;
|
|
}
|
|
|
|
sq_button:active {
|
|
background: #747077;
|
|
}
|
|
|
|
sq_button.altline,
|
|
sq_button.special,
|
|
sq_button.wide {
|
|
background: #2b292f;
|
|
}
|
|
|
|
sq_button.altline:active,
|
|
sq_button.special:active,
|
|
sq_button.wide:active {
|
|
background: #37353c;
|
|
}
|
|
|
|
sq_button.latched {
|
|
background: #ffffff;
|
|
color: #2b292f;
|
|
}
|
|
|
|
sq_button.locked {
|
|
background: #ffffff;
|
|
color: #1c71d8;
|
|
}
|
|
|
|
#Return {
|
|
background: #1c71d8;
|
|
}
|
|
|
|
#Return:active {
|
|
background: mix(#1c71d8, black, 0.2);
|
|
color: mix(#1c71d8, black, 0.2);
|
|
}
|
|
|
|
@import url("resource:///sm/puri/squeekboard/common.css");
|