forked from aya/aya
91 lines
1.6 KiB
CSS
91 lines
1.6 KiB
CSS
QAbstractItemView {
|
|
selection-color: black;
|
|
selection-background-color: transparent;
|
|
}
|
|
|
|
QAbstractItemView::item {
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
QAbstractItemView::item:hover {
|
|
background: #d1d5db !important;
|
|
}
|
|
|
|
QAbstractItemView::item:selected {
|
|
background: #8540f5 !important;
|
|
color: #fff !important;
|
|
font-weight: bold !important;
|
|
}
|
|
|
|
QAbstractItemView::item:selected:active,
|
|
QAbstractItemView::item:selected:!active {
|
|
}
|
|
|
|
QComboBox QAbstractItemView {
|
|
color: black;
|
|
}
|
|
|
|
QProgressBar {
|
|
border-radius: 5px;
|
|
width: 100%;
|
|
height: 15px;
|
|
border: 1px solid #d1d5db;
|
|
color: #fff !important;
|
|
font-weight: bold !important;
|
|
text-align: center;
|
|
}
|
|
|
|
QProgressBar::chunk {
|
|
background-color: #8540f5;
|
|
border-radius: 5px;
|
|
text-align: center;
|
|
}
|
|
|
|
QDockWidget::title {
|
|
text-align: left;
|
|
font-weight: bold;
|
|
border-top: 1px solid #d1d5db;
|
|
border-bottom: 1px solid #d1d5db;
|
|
padding-top: 4px;
|
|
padding-bottom: 4px;
|
|
padding-left: 8px;
|
|
padding-right: 8px;
|
|
margin-bottom: 2px;
|
|
border-top-left-radius: 4px;
|
|
border-top-right-radius: 4px;
|
|
}
|
|
|
|
QDockWidget {
|
|
background: #fff;
|
|
}
|
|
|
|
QLineEdit {
|
|
background-color: #fff !important;
|
|
border: 1px solid #d1d5db !important;
|
|
border-radius: 6px !important;
|
|
margin: 2px;
|
|
}
|
|
|
|
QComboBox {
|
|
background: #fff;
|
|
color: D1D5DB;
|
|
border: 1px solid #d1d5db;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
QComboBox:focus {
|
|
border: 1px solid #8540f5;
|
|
}
|
|
|
|
QComboBox::drop-down {
|
|
subcontrol-origin: padding;
|
|
subcontrol-position: center;
|
|
width: 16px;
|
|
border: none;
|
|
padding: 3px;
|
|
}
|
|
|
|
QComboBox::down-arrow {
|
|
image: url(/images/icons/arrowdown.png);
|
|
}
|