Advertisement
Guest User

bigbuttons

a guest
Jan 10th, 2012
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1. gtk-icon-sizes = "mini-commander-icon=32,32:print-manager=32,32:panel-button=32,32:gtk-dnd=32,32:gtk-menu=16,16:panel-menu=22,22:gtk-large-toolbar=16,16:gtk-small-toolbar=16,16:gtk-button=16,16:gtk-dialog=32,32"
  2.  
  3. style "standard-default"
  4. {
  5. GtkWidget::interior_focus = 2
  6. GtkButton::default_border = { 1, 1, 1, 1 }
  7. GtkButton::default_outside_border = { 0, 0, 0, 0 }
  8. GtkOptionMenu::indicator_size = { 9, 5 }
  9. GtkOptionMenu::indicator_spacing = { 7, 5, 2, 2 }
  10. GtkComboBox::appears-as-list = 1
  11. GtkNotebook::tab-overlap = 4
  12.  
  13. GtkButton::child_displacement_x = 1
  14. GtkButton::child_displacement_y = 1
  15.  
  16. GtkMenu::horizontal-padding = 1
  17. GtkMenu::vertical-padding = 1
  18. GtkMenu::horizontal-offset = -6
  19.  
  20. GtkScrolledWindow::scrollbar-spacing = 0
  21. GtkScrolledWindow::scrollbars-within-bevel = 1
  22.  
  23. fg[ACTIVE] = { 0.0, 0.0, 0.0 }
  24. fg[INSENSITIVE] = { 0.5, 0.5, 0.5 }
  25. fg[NORMAL] = { 0.0, 0.0, 0.0 }
  26. fg[PRELIGHT] = { 0.0, 0.0, 0.0 }
  27. fg[SELECTED] = { 1.0, 1.0, 1.0 }
  28.  
  29. bg[ACTIVE] = { 0.83, 0.81, 0.78 }
  30. bg[INSENSITIVE] = { 0.83, 0.81, 0.78 }
  31. bg[NORMAL] = { 0.83, 0.81, 0.78 }
  32. bg[PRELIGHT] = { 0.83, 0.81, 0.78 }
  33. bg[SELECTED] = { 0.04, 0.14, 0.41 }
  34.  
  35. base[ACTIVE] = { 0.04, 0.14, 0.41 }
  36. base[INSENSITIVE] = { 0.83, 0.81, 0.78 }
  37. base[NORMAL] = { 1.0, 1.0, 1.0 }
  38. base[PRELIGHT] = { 0.04, 0.14, 0.41 }
  39. base[SELECTED] = { 0.04, 0.14, 0.41 }
  40.  
  41. text[ACTIVE] = { 1.0, 1.0, 1.0 }
  42. text[INSENSITIVE] = { 0.5, 0.5, 0.5 }
  43. text[NORMAL] = { 0.0, 0.0, 0.0 }
  44. text[PRELIGHT] = { 1.0, 1.0, 1.0 }
  45. text[SELECTED] = { 1.0, 1.0, 1.0 }
  46.  
  47. engine "redmond95" {}
  48. }
  49.  
  50. class "GtkWidget" style "standard-default"
  51.  
  52. style "standard-menu"
  53. {
  54. bg[PRELIGHT] = { 0.04, 0.14, 0.41 }
  55. fg[PRELIGHT] = { 1.0, 1.0, 1.0 }
  56. }
  57.  
  58. widget_class "*MenuItem*" style "standard-menu"
  59.  
  60. style "standard-menubar-item"
  61. {
  62. bg[PRELIGHT] = { 0.83, 0.81, 0.78 }
  63. fg[PRELIGHT] = { 0.0, 0.0, 0.0 }
  64. }
  65.  
  66. class "*MenuBar.*MenuItem*" style "standard-menubar-item"
  67. widget_class "*MenuBar.*MenuItem*" style "standard-menubar-item"
  68.  
  69. style "standard-list"
  70. {
  71. bg[NORMAL] = { 0.9, 0.9, 0.9 }
  72. bg[PRELIGHT] = { 0.0, 0.0, 0.0 }
  73. }
  74.  
  75. class "GtkList" style "standard-list"
  76.  
  77. style "standard-scrollbar"
  78. {
  79. GtkRange::trough_border = 0
  80. GtkRange::slider_width = 16
  81. GtkRange::stepper_size = 16
  82. GtkRange::stepper_spacing = 0
  83. }
  84.  
  85. class "GtkScrollbar" style "standard-scrollbar"
  86.  
  87.  
  88. style "standard-scales"
  89. {
  90. GtkRange::slider-width = 21
  91. GtkScale::slider-length = 11
  92. }
  93.  
  94. class "*Scale*" style "standard-scales"
  95.  
  96. style "standard-option-menu"
  97. {
  98. GtkOptionMenu::indicator_width = 7
  99. GtkOptionMenu::indicator_left_spacing = 6
  100. GtkOptionMenu::indicator_right_spacing = 4
  101. }
  102.  
  103. class "GtkOptionMenu" style "standard-option-menu"
  104.  
  105. style "standard-progressbar" {
  106. fg[PRELIGHT] = { 1.0, 1.0, 1.0 }
  107. }
  108. class "GtkProgressBar" style "standard-progressbar"
  109.  
  110.  
  111. style "standard-entry"
  112. {
  113. bg[SELECTED] = "#1C40A8"
  114. fg[SELECTED] = { 1.0, 1.0, 1.0 }
  115. }
  116. class "GtkEntry" style "standard-entry"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement