bright.qss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. * {
  2. outline: none;
  3. }
  4. QColorDialog {
  5. background: #F5F6F6;
  6. /*border: 1px solid transparent;*/
  7. border-radius: 8px;
  8. }
  9. QColorDialog QLabel {
  10. color:#27264D;
  11. }
  12. QColorDialog QPushButton {
  13. border: 1px solid rgba(39,38,77,0.2);
  14. color: #27264D;
  15. min-height: 32px;
  16. min-width: 60px;
  17. border-radius: 4px;
  18. }
  19. QColorDialog QPushButton::hover {
  20. background: #ffffff;
  21. }
  22. QColorDialog QLineEdit {
  23. border: 1px solid rgba(39,38,77,0.2);
  24. border-radius: 4px;
  25. color: #27264D;
  26. font-size: 14px;
  27. padding-left: 8px;
  28. min-height: 24px;
  29. background: #ffffff;
  30. }
  31. QColorDialog QLineEdit:focus {
  32. border: 1px solid #438Eff;
  33. }
  34. QColorDialog QSpinBox {
  35. border: 1px solid rgba(39,38,77,0.2);
  36. border-radius: 4px;
  37. padding-left: 8px;
  38. color: #27264D;
  39. font-size: 14px;
  40. min-height: 24px;
  41. }
  42. QColorDialog QSpinBox:focus {
  43. border: 1px solid #438Eff;
  44. }
  45. QPushButton#btn_ok {
  46. border-radius: 16px;
  47. border: none;
  48. color: #ffffff;
  49. /*margin-left: 10px;*/
  50. background: #438EFF;
  51. }
  52. QPushButton#btn_ok:hover {
  53. border-radius: 16px;
  54. background: #5F9EFF;
  55. }
  56. QPushButton#btn_cancel {
  57. border-radius: 16px;
  58. }
  59. QPushButton#btn_cancel:hover {
  60. background: #ffffff;
  61. }
  62. QPushButton#empty {
  63. border: none;
  64. border-radius: 0px;
  65. background: transparent;
  66. max-width: 0px;
  67. min-width: 0px;
  68. }
  69. QWellArray {
  70. outline: 2px solid #E9A112;
  71. outline-radius: 4px;
  72. }