59 lines
846 B
CSS
59 lines
846 B
CSS
QtDirectoryListBox {
|
|
background-color: rgba(255, 255, 255, 200);
|
|
border: 1px solid lightgray;
|
|
border-radius: 12px;
|
|
}
|
|
|
|
QListWidget {
|
|
background: transparent;
|
|
border: none;
|
|
margin: 2px 0 2px 0;
|
|
}
|
|
|
|
QListWidget::item {
|
|
border-bottom: 1px solid lightgray;
|
|
height: 20px;
|
|
}
|
|
|
|
QListWidget::item:selected {
|
|
background-color: #EEE;
|
|
}
|
|
|
|
|
|
QtListItemWidget #field {
|
|
background-color: transparent;
|
|
border: none;
|
|
font-size: 12px;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
QtListItemWidget #button {
|
|
border: 1px solid lightgray;
|
|
border-radius: 8px;
|
|
font-size: 12px;
|
|
margin-top: 2px;
|
|
margin-right: 2px;
|
|
width: 20px;
|
|
}
|
|
|
|
QtListItemWidget #button:hover {
|
|
color: white;
|
|
background: #2D3F85;
|
|
}
|
|
|
|
#bar {
|
|
border-top: 1px solid lightgray;
|
|
}
|
|
|
|
#roundedButton {
|
|
color: white;
|
|
height: 16px;
|
|
margin-right: 3px;
|
|
width: 16px;
|
|
border: none;
|
|
}
|
|
|
|
#dropInfo {
|
|
color: lightgray;
|
|
}
|