This commit is contained in:
watrabi
2025-09-18 17:55:52 -04:00
commit 977f1ff4b8
15030 changed files with 17324420 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
QAbstractItemView
{
selection-color: black;
selection-background-color: transparent;
}
QAbstractItemView::item
{
border: 1px solid transparent;
}
QAbstractItemView::item:hover
{
border: 1px solid #F1CA58;
background: QLinearGradient(
x1: 0, y1: 0,
x2: 0, y2: 1,
stop: 0 #FDEEB3,
stop: 1 #FDFDEB );
}
QAbstractItemView::item:selected
{
border: 1px solid #FDFDEB;
}
QAbstractItemView::item:selected:active,QAbstractItemView::item:selected:!active
{
background: QLinearGradient(
x1: 0, y1: 0,
x2: 0, y2: 1,
stop: 0 #FFE374,
stop: 1 #FFE574 );
}
QComboBox QAbstractItemView
{
color: black;
selection-background-color: QLinearGradient(
x1: 0, y1: 0,
x2: 0, y2: 1,
stop: 0 #FFE374,
stop: 1 #FFE574 );
}