Disable focus highlight on tool buttons

This commit is contained in:
Isaiah Odhner 2023-04-10 20:59:59 -04:00
parent b64869eae4
commit cf8acc4f94

View File

@ -26,6 +26,12 @@ Screen {
height: 100%;
}
#tools_box Button:focus {
/* disable focus highlight */
/* in the future it may be important to prevent focus instead */
text-style: none;
}
#tools_box Button.selected {
background: #aaa;
}