mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-12-02 00:55:12 -05:00
Fixes #6
The issue was that QTabBar.drawBase property must be set to False!
This commit is contained in:
parent
ad9b2f8c65
commit
36b6616c0a
@ -47,6 +47,9 @@ QWidget
|
|||||||
background-color: #302F2F;
|
background-color: #302F2F;
|
||||||
selection-background-color:#78879b;
|
selection-background-color:#78879b;
|
||||||
selection-color: black;
|
selection-color: black;
|
||||||
|
background-clip: border;
|
||||||
|
border-image: none;
|
||||||
|
outline: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
QWidget:item:hover
|
QWidget:item:hover
|
||||||
@ -253,7 +256,7 @@ QScrollBar::sub-line:vertical
|
|||||||
|
|
||||||
QScrollBar::add-line:vertical
|
QScrollBar::add-line:vertical
|
||||||
{
|
{
|
||||||
|
|
||||||
border-image: url(:/qss_icons/rc/down_arrow_disabled.png);
|
border-image: url(:/qss_icons/rc/down_arrow_disabled.png);
|
||||||
height: 10px;
|
height: 10px;
|
||||||
width: 10px;
|
width: 10px;
|
||||||
@ -344,7 +347,7 @@ QMainWindow::separator:hover
|
|||||||
color: white;
|
color: white;
|
||||||
padding-left: 4px;
|
padding-left: 4px;
|
||||||
border: 1px solid #3A3939;
|
border: 1px solid #3A3939;
|
||||||
spacing: 2px;
|
spacing: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -522,7 +525,7 @@ QComboBox::drop-down
|
|||||||
border-left-width: 0px;
|
border-left-width: 0px;
|
||||||
border-left-color: darkgray;
|
border-left-color: darkgray;
|
||||||
border-left-style: solid;
|
border-left-style: solid;
|
||||||
border-top-right-radius: 3px;
|
border-top-right-radius: 3px;
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -599,6 +602,11 @@ QTabWidget::pane {
|
|||||||
border: 1px solid #3A3939;
|
border: 1px solid #3A3939;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QTabBar
|
||||||
|
{
|
||||||
|
qproperty-drawBase: 0;
|
||||||
|
}
|
||||||
|
|
||||||
QTabBar:focus
|
QTabBar:focus
|
||||||
{
|
{
|
||||||
border: 0px transparent black;
|
border: 0px transparent black;
|
||||||
@ -754,7 +762,7 @@ QDockWidget::title
|
|||||||
border: 1px solid #3A3939;
|
border: 1px solid #3A3939;
|
||||||
border-bottom: #302F2F;
|
border-bottom: #302F2F;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
spacing: 2px;
|
spacing: 2px;
|
||||||
background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1,
|
background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1,
|
||||||
stop:1 #302F2F, stop:0 #3A3939);;
|
stop:1 #302F2F, stop:0 #3A3939);;
|
||||||
background-image: none;
|
background-image: none;
|
||||||
@ -844,7 +852,7 @@ QTableView::item:selected:active, QTreeView::item:selected:active, QListView::it
|
|||||||
|
|
||||||
QSlider::groove:horizontal {
|
QSlider::groove:horizontal {
|
||||||
border: 1px solid #3A3939;
|
border: 1px solid #3A3939;
|
||||||
height: 8px;
|
height: 8px;
|
||||||
background: #201F1F;
|
background: #201F1F;
|
||||||
margin: 2px 0;
|
margin: 2px 0;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
@ -862,7 +870,7 @@ QSlider::handle:horizontal {
|
|||||||
|
|
||||||
QSlider::groove:vertical {
|
QSlider::groove:vertical {
|
||||||
border: 1px solid #3A3939;
|
border: 1px solid #3A3939;
|
||||||
width: 8px;
|
width: 8px;
|
||||||
background: #201F1F;
|
background: #201F1F;
|
||||||
margin: 0 0px;
|
margin: 0 0px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
@ -874,12 +882,12 @@ QSlider::handle:vertical {
|
|||||||
border: 1px solid #3A3939;
|
border: 1px solid #3A3939;
|
||||||
width: 14px;
|
width: 14px;
|
||||||
height: 14px;
|
height: 14px;
|
||||||
margin: 0 -4px;
|
margin: 0 -4px;
|
||||||
border-radius: 7px;
|
border-radius: 7px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
QToolButton {
|
QToolButton {
|
||||||
background-color: #302F2F;
|
background-color: #302F2F;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user