1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- ComboBox {
- border: 1px solid rgb(238, 239, 238);
- border-radius: 5px;
- border-bottom: 1px solid rgb(212, 213, 212);
- padding: 5px 31px 6px 11px;
- font: 14px 'Segoe UI', 'Microsoft YaHei';
- color: black;
- background-color: rgb(254, 254, 254);
- text-align: left;
- }
- ComboBox:hover {
- background-color: rgb(251, 251, 251);
- }
- ComboBox:pressed {
- background-color: rgb(252, 252, 252);
- border-bottom: 1px solid rgb(238, 239, 238);
- color: rgba(0, 0, 0, 0.63);
- }
- 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:disbaled {
- 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);
- }
|