mirror of
https://github.com/leozide/leocad
synced 2024-12-26 21:58:44 +01:00
99 lines
2.1 KiB
Text
99 lines
2.1 KiB
Text
QToolTip {
|
|
color: rgb(58, 58, 58);
|
|
background-color: rgb(224, 224, 224);
|
|
border: 0px;
|
|
}
|
|
|
|
QMenu::separator {
|
|
height: 1px;
|
|
background: rgb(80, 80, 80);
|
|
margin-left: 10px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
QToolBar {
|
|
border: none;
|
|
}
|
|
|
|
QTreeView::branch {
|
|
background: transparent;
|
|
}
|
|
|
|
QTreeView::branch:has-siblings:!adjoins-item {
|
|
border-image: url(:/stylesheet/branch_vline.png);
|
|
}
|
|
|
|
QTreeView::branch:has-siblings:adjoins-item {
|
|
border-image: url(:/stylesheet/branch_more.png);
|
|
}
|
|
|
|
QTreeView::branch:!has-children:!has-siblings:adjoins-item {
|
|
border-image: url(:/stylesheet/branch_end.png);
|
|
}
|
|
|
|
QTreeView::branch:closed:has-children:has-siblings {
|
|
border-image: url(:/stylesheet/branch_closed.png);
|
|
}
|
|
|
|
QTreeView::branch:has-children:!has-siblings:closed {
|
|
border-image: url(:/stylesheet/branch_closed.png);
|
|
}
|
|
|
|
QTreeView::branch:open:has-children:has-siblings {
|
|
border-image: url(:/stylesheet/branch_open.png);
|
|
}
|
|
|
|
QTreeView::branch:open:has-children:!has-siblings {
|
|
border-image: url(:/stylesheet/branch_open.png);
|
|
}
|
|
|
|
QDockWidget {
|
|
titlebar-close-icon: url(:/stylesheet/close.png);
|
|
titlebar-normal-icon: url(:/stylesheet/undock.png);
|
|
}
|
|
|
|
QDockWidget::close-button,
|
|
QDockWidget::float-button {
|
|
border: none;
|
|
border-radius: 3px;
|
|
subcontrol-origin: padding;
|
|
subcontrol-position: right center;
|
|
}
|
|
|
|
QDockWidget::close-button {
|
|
right: 4px;
|
|
}
|
|
|
|
QDockWidget::float-button {
|
|
right: 22px;
|
|
}
|
|
|
|
QDockWidget::close-button:hover,
|
|
QDockWidget::float-button:hover {
|
|
background-color: rgba(255, 255, 255, 30);
|
|
}
|
|
|
|
QDockWidget::title {
|
|
text-align: center;
|
|
border: 4px solid transparent;
|
|
padding: 4px 0px;
|
|
}
|
|
|
|
QDockWidget::close-button:pressed,
|
|
QDockWidget::float-button:pressed {
|
|
background-color: rgba(255, 255, 255, 40);
|
|
}
|
|
|
|
QTabBar::close-button {
|
|
background-image: url(:/stylesheet/close.png);
|
|
background-position: center center;
|
|
background-repeat: none;
|
|
}
|
|
|
|
QTabBar::close-button:hover {
|
|
background-color: rgba(255, 255, 255, 30);
|
|
}
|
|
|
|
QTabBar::close-button:pressed {
|
|
background-color: rgba(255, 255, 255, 40);
|
|
}
|