mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-07-04 23:31:19 +01:00
fix: Added padding to buttons
Some buttons did not have enough padding, now they do!
This commit is contained in:
parent
ef61d129d3
commit
0e443dcb05
4 changed files with 20 additions and 0 deletions
5
dist/qt_themes/default/style.qss
vendored
5
dist/qt_themes/default/style.qss
vendored
|
@ -315,6 +315,11 @@ QWidget#controllerPlayer8 {
|
|||
background: transparent;
|
||||
}
|
||||
|
||||
QDialog QPushButton {
|
||||
min-width: 57px;
|
||||
padding: 4px 8px;
|
||||
}
|
||||
|
||||
QDialog#QtSoftwareKeyboardDialog,
|
||||
QStackedWidget#topOSK {
|
||||
background: rgba(51, 51, 51, .9);
|
||||
|
|
5
dist/qt_themes/default_dark/style.qss
vendored
5
dist/qt_themes/default_dark/style.qss
vendored
|
@ -319,6 +319,11 @@ QWidget#controllerPlayer8 {
|
|||
background: transparent;
|
||||
}
|
||||
|
||||
QDialog QPushButton {
|
||||
min-width: 57px;
|
||||
padding: 4px 8px;
|
||||
}
|
||||
|
||||
QDialog#QtSoftwareKeyboardDialog,
|
||||
QStackedWidget#topOSK {
|
||||
background: rgba(51, 51, 51, .9);
|
||||
|
|
5
dist/qt_themes/qdarkstyle/style.qss
vendored
5
dist/qt_themes/qdarkstyle/style.qss
vendored
|
@ -1338,6 +1338,11 @@ QSpinBox#vibrationSpinPlayer8 {
|
|||
min-width: 68px;
|
||||
}
|
||||
|
||||
QDialog QPushButton {
|
||||
min-width: 57px;
|
||||
padding: 4px 8px;
|
||||
}
|
||||
|
||||
QDialog#ConfigureVibration QGroupBox::indicator,
|
||||
QGroupBox#motionGroup::indicator,
|
||||
QGroupBox#vibrationGroup::indicator {
|
||||
|
|
|
@ -2241,6 +2241,11 @@ QSpinBox#vibrationSpinPlayer8 {
|
|||
min-width: 68px;
|
||||
}
|
||||
|
||||
QDialog QPushButton {
|
||||
min-width: 57px;
|
||||
padding: 4px 8px;
|
||||
}
|
||||
|
||||
QDialog#ConfigureVibration QGroupBox::indicator,
|
||||
QGroupBox#motionGroup::indicator,
|
||||
QGroupBox#vibrationGroup::indicator {
|
||||
|
|
Loading…
Reference in a new issue