diff --git a/files/styles/style-dark.css b/files/styles/style-dark.css index 9716a8594e5ad03668c554b8c9e5d56b09b5127a..4e30e7c358fc64e8fff8e648a9193e0bf15b6455 100644 --- a/files/styles/style-dark.css +++ b/files/styles/style-dark.css @@ -261,6 +261,13 @@ QGroupBox::title { color: #DDD; } +QHeaderView::section { + border: none; + border-right: 1px solid #969696; + padding: 2px 0 2px 4px; + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #4B4B4B, stop: 0.3 #404040, stop: 0.34 #383838, stop:1 #181818); +} + QLabel { background-color: transparent; } diff --git a/files/styles/style-light.css b/files/styles/style-light.css index 74ab01cb9dccc5e76aacfe9d3be2898ec162c00f..60c15e27456f2bd2bfaa24e0dc74956d7ebadc2a 100644 --- a/files/styles/style-light.css +++ b/files/styles/style-light.css @@ -230,6 +230,13 @@ QGroupBox::title { color: #000; } +QHeaderView::section { + border: none; + border-right: 1px solid #969696; + padding: 2px 0 2px 4px; + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #DDD, stop: 1 #999); +} + QLabel { background-color: transparent; }