Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. #toolbar {
  2. background:qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 rgba(63, 62, 58, 255), stop:1 rgba(88, 86, 78, 255));
  3. }
  4.  
  5. #toolbar QPushButton {
  6. color: #DFDBD2;
  7. background-color: transparent;
  8. border-image: url(ui/themes/Ambiance/button-toolbar.png) 8;
  9. border-top: 8px;
  10. border-bottom: 8px;
  11. border-right: 8px;
  12. border-left: 8px;
  13. }
  14.  
  15. #toolbar QPushButton:hover {
  16. border-image: url(ui/themes/Ambiance/button-toolbar-hover.png) 8;
  17. }
  18.  
  19. #toolbar QPushButton:pressed {
  20. border-image: url(ui/themes/Ambiance/button-toolbar-pressed.png) 8;
  21. }
  22.  
  23. #toolbar QLineEdit {
  24. background-color: transparent;
  25. border-image: url(ui/themes/Ambiance/entry-toolbar.png) 8;
  26. border-top: 8px transparent;
  27. border-bottom: 8px transparent;
  28. border-right: 8px transparent;
  29. border-left: 8px transparent;
  30. color: grey;
  31. }
  32.  
  33. #toolbar QLineEdit:focus { /* shift the text when the popup opens */
  34. color:#4C4C4C;
  35. border-image: url(ui/themes/Ambiance/entry-toolbar-focused.png) 8;
  36. }
  37.  
  38.  
  39. #toolbar QComboBox {
  40. color: #DFDBD2;
  41. padding: 0px;
  42. min-width: 6em;
  43. background-color: transparent;
  44. border-image: url(ui/themes/Ambiance/button-toolbar.png) 8;
  45. border-top: 8px;
  46. border-bottom: 8px;
  47. border-right: 8px;
  48. border-left: 8px;
  49. }
  50. #toolbar QComboBox:hover {
  51. border-image: url(ui/themes/Ambiance/button-toolbar-hover.png) 8;
  52. }
  53.  
  54.  
  55. QComboBox::drop-down {
  56. border: none;
  57. }
  58.  
  59.  
  60.  
  61. QComboBox::down-arrow {
  62. image: url(ui/themes/Ambiance/combobox-arrow.png);
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement