38 lines
630 B
Text
38 lines
630 B
Text
/* QTabWidget::pane, QTabWidget::tab-bar { background-color: black; } */
|
|
|
|
QTabBar,
|
|
QTabBar::tab
|
|
{
|
|
font-family: "0xProto Nerd Font Mono";
|
|
font-size: 11px;
|
|
height: 20px;
|
|
margin-right: 5px;
|
|
border: 0px;
|
|
background-color: #000000;
|
|
color: white;
|
|
}
|
|
|
|
QTabWidget::pane, QTabWidget::tab-bar {
|
|
border-bottom: 0px;
|
|
border-right: 0px;
|
|
margin-right: 0px;
|
|
alignment: center;
|
|
}
|
|
|
|
/* QTabBar::tab { */
|
|
|
|
/* } */
|
|
|
|
QTabBar::tab:hover
|
|
{
|
|
text-decoration: underline;
|
|
}
|
|
|
|
QTabBar::tab:selected
|
|
{
|
|
font-weight: bold;
|
|
color: yellow;
|
|
padding: 0px 3px 0px 3px;
|
|
border: 0px;
|
|
background-color: #444444;
|
|
}
|