46 lines
688 B
CSS
46 lines
688 B
CSS
|
|
QTabBar{
|
|
background: rgb(22,155,213);
|
|
}
|
|
QTabBar::tab {
|
|
border: none;
|
|
border-top-left-radius: 4px;
|
|
color: white;
|
|
background: rgb(239,242,245);
|
|
color: black;
|
|
|
|
height: 28px;
|
|
min-width: 85px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
QTabBar::tab:hover {
|
|
background: rgb(51,101,177);
|
|
}
|
|
|
|
QTabBar::tab:selected {
|
|
color: white;
|
|
background: rgb(51,101,177);
|
|
}
|
|
|
|
|
|
|
|
QPushButton:enabled {
|
|
background: rgb(22,155,213);
|
|
color: white;
|
|
border-radius:3px;
|
|
}
|
|
|
|
QPushButton:!enabled {
|
|
background: white;
|
|
color: black;
|
|
}
|
|
|
|
QPushButton:enabled:hover {
|
|
background: rgb(100, 160, 220);
|
|
}
|
|
|
|
QPushButton:enabled:pressed {
|
|
background: rgb(120, 170, 220);
|
|
}
|