mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-27 19:45:43 +03:00
42 lines
1.3 KiB
CSS
42 lines
1.3 KiB
CSS
|
|
|
|
|
|
/*Выделение Групп при наведении курсора
|
|
QTreeWidget::item:has-children:hover {
|
|
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #88cc88, stop: 1 #88cc88);
|
|
}*/
|
|
/*Выделение Обучаемых/Инструкторов при наведении курсора
|
|
QTreeWidget::item:!has-children:hover {
|
|
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #e7effd, stop: 1 #cbdaf1);
|
|
}*/
|
|
|
|
|
|
/*Выделение Групп
|
|
QTreeWidget::item:has-children,
|
|
QTreeWidget::branch:has-children {
|
|
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #88aa88, stop: 1 #88bb88);
|
|
}
|
|
QTreeWidget::item:has-children:selected {
|
|
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #55aa55, stop: 1 #55bb55);
|
|
}*/
|
|
|
|
/*Выделение Обучаемых/Инструкторов
|
|
QTreeWidget::branch:!has-children {
|
|
background: transparent;
|
|
}
|
|
QTreeWidget::branch:!has-children:selected{
|
|
background: transparent;
|
|
}
|
|
QTreeWidget::item:!has-children:selected{
|
|
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #6ea1f1, stop: 1 #567dbc);
|
|
color: #ffffff;
|
|
|
|
}*/
|
|
|
|
/*Разделение ячеек Обучаемых
|
|
QTreeWidget::item:!has-children:has-siblings {
|
|
border-bottom: 1px solid #bfcde4;
|
|
}*/
|
|
|
|
|