From ff20f72aaca1cc3a17d186b295fa085826cd44a3 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Fri, 28 May 2021 13:38:42 +0200 Subject: [PATCH] modified header borders --- openpype/style/style.css | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/openpype/style/style.css b/openpype/style/style.css index bbdc051079..e304f9d315 100644 --- a/openpype/style/style.css +++ b/openpype/style/style.css @@ -278,13 +278,19 @@ QHeaderView { QHeaderView::section { background: {color:bg-inputs}; padding: 4px; - border: none; + border-left: 1px solid {color:bg-view}; + border-right: 1px solid {color:bg-view}; border-radius: 0px; text-align: center; color: {color:font}; font-weight: bold; } - +QHeaderView::section:first { + border-left: none; +} +QHeaderView::section:last { + border-right: none; +} /* Views QListView QTreeView QTableView */ QAbstractItemView { border: 1px solid {color:border};