You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.5 KiB
66 lines
1.5 KiB
ComboBox {
|
|
border: 1px solid rgba(0, 0, 0, 0.073);
|
|
border-radius: 5px;
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.183);
|
|
padding: 5px 31px 6px 11px;
|
|
font: 14px 'Segoe UI', 'Microsoft YaHei';
|
|
color: black;
|
|
background-color: rgba(255, 255, 255, 0.7);
|
|
text-align: left;
|
|
}
|
|
|
|
ComboBox:hover {
|
|
background-color: rgba(249, 249, 249, 0.5);
|
|
}
|
|
|
|
ComboBox:pressed {
|
|
background-color: rgba(249, 249, 249, 0.3);
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.073);
|
|
color: rgba(0, 0, 0, 0.63);
|
|
}
|
|
|
|
ComboBox:disabled {
|
|
color: rgba(0, 0, 0, 0.36);
|
|
background: rgba(249, 249, 249, 0.3);
|
|
border: 1px solid rgba(0, 0, 0, 0.06);
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
|
|
}
|
|
|
|
|
|
ComboBoxMenu>MenuActionListWidget {
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
border-radius: 9px;
|
|
background-color: rgb(249, 249, 249);
|
|
outline: none;
|
|
font: 14px 'Segoe UI', 'Microsoft YaHei';
|
|
}
|
|
|
|
ComboBoxMenu>MenuActionListWidget::item {
|
|
margin-top: 4px;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
border-radius: 5px;
|
|
border: none;
|
|
}
|
|
|
|
ComboBoxMenu>MenuActionListWidget::item:disabled {
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
border-radius: 5px;
|
|
border: none;
|
|
color: black;
|
|
}
|
|
|
|
ComboBoxMenu>MenuActionListWidget::item:hover {
|
|
background-color: rgba(0, 0, 0, 9);
|
|
}
|
|
|
|
ComboBoxMenu>MenuActionListWidget::item:selected {
|
|
background-color: rgba(0, 0, 0, 7);
|
|
color: black;
|
|
}
|
|
|
|
ComboBoxMenu>MenuActionListWidget::item:selected:active {
|
|
background-color: rgba(0, 0, 0, 0.06);
|
|
color: rgba(0, 0, 0, 0.7);
|
|
} |