add icons for system_overlay
All checks were successful
Code and build check / Check code (pull_request) Successful in 1m26s
Code and build check / Build with uv (pull_request) Successful in 47s

This commit is contained in:
2025-06-13 10:55:01 +07:00
parent bff5e456cf
commit 568120fb0e
7 changed files with 10 additions and 3 deletions

View File

@ -252,21 +252,23 @@ ACTION_BUTTON_STYLE = """
OVERLAY_BUTTON_STYLE = """
QPushButton {
background: #3f424d;
border: 1px solid rgba(255, 255, 255, 0.20);
border: 2px solid rgba(255, 255, 255, 0.01);
border-radius: 10px;
color: #ffffff;
font-size: 16px;
font-family: 'Play';
padding: 8px 16px;
}
QPushButton:hover {
background: #282a33;
background: #409EFF;
border: 2px solid #409EFF;
}
QPushButton:pressed {
background: #282a33;
}
QPushButton:focus {
border: 2px solid #409EFF;
background-color: #404554;
background-color: #409EFF;
}
"""