combo_box.qss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. ComboBox {
  2. border: 1px solid rgb(238, 239, 238);
  3. border-radius: 5px;
  4. border-bottom: 1px solid rgb(212, 213, 212);
  5. padding: 5px 31px 6px 11px;
  6. font: 14px 'Segoe UI', 'Microsoft YaHei';
  7. color: black;
  8. background-color: rgb(254, 254, 254);
  9. text-align: left;
  10. }
  11. ComboBox:hover {
  12. background-color: rgb(251, 251, 251);
  13. }
  14. ComboBox:pressed {
  15. background-color: rgb(252, 252, 252);
  16. border-bottom: 1px solid rgb(238, 239, 238);
  17. color: rgba(0, 0, 0, 0.63);
  18. }
  19. ComboBoxMenu>MenuActionListWidget {
  20. border: 1px solid rgba(0, 0, 0, 0.1);
  21. border-radius: 9px;
  22. background-color: rgb(249, 249, 249);
  23. outline: none;
  24. font: 14px 'Segoe UI', 'Microsoft YaHei';
  25. }
  26. ComboBoxMenu>MenuActionListWidget::item {
  27. margin-top: 4px;
  28. padding-left: 10px;
  29. padding-right: 10px;
  30. border-radius: 5px;
  31. border: none;
  32. }
  33. ComboBoxMenu>MenuActionListWidget::item:disbaled {
  34. padding-left: 10px;
  35. padding-right: 10px;
  36. border-radius: 5px;
  37. border: none;
  38. color: black;
  39. }
  40. ComboBoxMenu>MenuActionListWidget::item:hover {
  41. background-color: rgba(0, 0, 0, 9);
  42. }
  43. ComboBoxMenu>MenuActionListWidget::item:selected {
  44. background-color: rgba(0, 0, 0, 7);
  45. color: black;
  46. }
  47. ComboBoxMenu>MenuActionListWidget::item:selected:active {
  48. background-color: rgba(0, 0, 0, 0.06);
  49. color: rgba(0, 0, 0, 0.7);
  50. }