From 3553b4faa4e79d6cd813aa1bfb96e69b8ebb97d5 Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Fri, 8 Apr 2022 12:19:37 -0300 Subject: [PATCH] [style] fix: max-width for some buttons is not enough --- CHANGELOG.md | 1 + bauh/view/resources/style/default/default.qss | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 35fe24a0..e6297526 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,6 +40,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - UI - 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 diff --git a/bauh/view/resources/style/default/default.qss b/bauh/view/resources/style/default/default.qss index 6c71d578..48dd1fc9 100644 --- a/bauh/view/resources/style/default/default.qss +++ b/bauh/view/resources/style/default/default.qss @@ -49,6 +49,7 @@ QTableWidget QToolButton#bt_task { QTableWidget QToolButton[text_only = "true"] { min-width: 80px; + max-width: 150px; } QMenu QPushButton { @@ -198,7 +199,7 @@ ManageWindow QSearchBar#name_filter QPushButton#search_button { ManageWindow QWidget#table_filters QPushButton[root = "true"] { min-width: 100px; - max-width: 100px; + max-width: 150px; min-height: 18px; max-height: 18px; }