[style] fix: max-width for some buttons is not enough

This commit is contained in:
Vinicius Moreira
2022-04-08 12:19:37 -03:00
parent 9b9c437005
commit 3553b4faa4
2 changed files with 3 additions and 1 deletions

View File

@@ -40,6 +40,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- UI - UI
- not displaying the right unit symbol for byte based sizes (kB, MB, TB, ...) [#250](https://github.com/vinifmor/bauh/issues/250) - not displaying the right unit symbol for byte based sizes (kB, MB, TB, ...) [#250](https://github.com/vinifmor/bauh/issues/250)
- some components do not properly adjust the text size [#253](https://github.com/vinifmor/bauh/issues/253)
## [0.10.1] 2022-03-31 ## [0.10.1] 2022-03-31

View File

@@ -49,6 +49,7 @@ QTableWidget QToolButton#bt_task {
QTableWidget QToolButton[text_only = "true"] { QTableWidget QToolButton[text_only = "true"] {
min-width: 80px; min-width: 80px;
max-width: 150px;
} }
QMenu QPushButton { QMenu QPushButton {
@@ -198,7 +199,7 @@ ManageWindow QSearchBar#name_filter QPushButton#search_button {
ManageWindow QWidget#table_filters QPushButton[root = "true"] { ManageWindow QWidget#table_filters QPushButton[root = "true"] {
min-width: 100px; min-width: 100px;
max-width: 100px; max-width: 150px;
min-height: 18px; min-height: 18px;
max-height: 18px; max-height: 18px;
} }