Version upgrade 4.00 #45

Merged
elB4RTO merged 113 commits from devel into main 2024-02-17 16:13:26 +01:00
Showing only changes of commit 3d53591281 - Show all commits

View file

@ -96,7 +96,7 @@ enum StyleId : uint32_t {
using StyleMap = std::unordered_map<StyleId, QString>;
const StyleMap makeStyleMap()
StyleMap makeStyleMap()
{
switch ( GlobalConfigs::window_theme ) {
case WindowTheme::Light:
@ -509,6 +509,15 @@ void getStyleSheet( QString& stylesheet )
"QPushButton::disabled {"
" background-color: "+style.at(BUTTONS_BASE_DISABLED)+";"
"}"
// tool buttons
"QToolButton {"
" border: 1px solid "+style.at(BORDER_PRIMARY)+";"
" border-radius: 16px;"
" background-color: transparent;"
"}"
"QToolButton:hover {"
" border: 1px solid "+style.at(BORDER_SECONDARY)+";"
"}"
// line edits
"QLineEdit {"
" padding-left: 4px;"