-
-
Notifications
You must be signed in to change notification settings - Fork 236
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add normal qstyle (better for sizes)
- Loading branch information
Showing
3 changed files
with
45 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* Specific styles for QComboBox */ | ||
QComboBox { | ||
width: 370px; | ||
} | ||
|
||
/* Styles for toolbar handles */ | ||
QToolBar::handle { | ||
background: url("dtt4all_data/icons/handle.png"); /* Handle icon */ | ||
} | ||
|
||
/* Styles for progress bars */ | ||
QProgressBar { | ||
border: 2px solid gray; /* Border */ | ||
border-radius: 5px; /* Rounded border */ | ||
text-align: center; /* Text alignment */ | ||
} | ||
|
||
/* Styles for progress bar chunks */ | ||
QProgressBar::chunk { | ||
background-color: green; /* Chunk color */ | ||
width: 5px; /* Width */ | ||
margin: 0.5px; /* Margin */ | ||
} | ||
|
||
/* Styles for QCheckBox */ | ||
QCheckBox::indicator { | ||
width: 15px; /* Width */ | ||
height: 15px; /* Height */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters