diff --git a/resources/themes/Blend of Gray/style.qss b/resources/themes/Blend of Gray/style.qss index cb5a12b3d90b..85ac8590eca4 100644 --- a/resources/themes/Blend of Gray/style.qss +++ b/resources/themes/Blend of Gray/style.qss @@ -758,6 +758,12 @@ QAbstractItemView::selected, QListView::selected { outline: none; } +QAbstractItemView::indicator:checked, QListView::indicator:checked { + image: url(@theme_path/icons/qcheckbox-checked.svg) !important; +} +QAbstractItemView::indicator:unchecked, QListView::indicator:unchecked { + image: url(@theme_path/icons/qcheckbox-unchecked.svg); +} /* ==================================================================================== */ /* TREE VIEW */ diff --git a/resources/themes/Night Mapping/style.qss b/resources/themes/Night Mapping/style.qss index f5ed17546580..b6c2c3eae998 100644 --- a/resources/themes/Night Mapping/style.qss +++ b/resources/themes/Night Mapping/style.qss @@ -762,6 +762,15 @@ QAbstractItemView::selected, QListView::selected { outline: none; } +QAbstractItemView::indicator:checked, QListView::indicator:checked { + border: 1px solid @background; + image: url(@theme_path/icons/qcheckbox-checked.svg) !important; +} +QAbstractItemView::indicator:unchecked, QListView::indicator:unchecked { + border: 1px solid @background; + image: url(@theme_path/icons/qcheckbox-unchecked.svg); +} + /* ==================================================================================== */ /* TREE VIEW */ /* ==================================================================================== */