Advertisement
Guest User

Untitled

a guest
Sep 27th, 2013
667
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.21 KB | None | 0 0
  1. /***********************
  2. * fallback mode panel *
  3. ***********************/
  4. PanelWidget,
  5. PanelApplet,
  6. PanelToplevel {
  7. background-image: -gtk-gradient (linear, left top, left bottom,
  8. from (shade (@dark_bg_color, 1.5)),
  9. to (shade (@dark_bg_color, 1.05)));
  10. padding: 0;
  11.  
  12. color: @dark_fg_color;
  13. }
  14.  
  15. PanelApplet {
  16. border-width: 0;
  17. }
  18.  
  19. PanelSeparator {
  20. border-width: 0;
  21. background-image: -gtk-gradient (linear, left top, left bottom,
  22. from (shade (@dark_bg_color, 1.5)),
  23. to (shade (@dark_bg_color, 1.05)));
  24.  
  25. color: @dark_fg_color;
  26. }
  27.  
  28. .gnome-panel-menu-bar,
  29. PanelApplet > GtkMenuBar.menubar,
  30. PanelApplet > GtkMenuBar.menubar.menuitem,
  31. PanelMenuBar.menubar,
  32. PanelMenuBar.menubar.menuitem {
  33. -PanelMenuBar-icon-visible: true;
  34.  
  35. background-image: -gtk-gradient (linear, left top, left bottom,
  36. from (shade (@dark_bg_color, 1.5)),
  37. to (shade (@dark_bg_color, 1.05)));
  38. }
  39.  
  40. PanelAppletFrame {
  41. background-color: @dark_bg_color;
  42. background-image: -gtk-gradient (linear, left top, left bottom,
  43. from (shade (@dark_bg_color, 1.5)),
  44. to (shade (@dark_bg_color, 1.05)));
  45. border-width: 0;
  46. }
  47.  
  48. PanelApplet .button {
  49. -GtkButton-inner-border: 2;
  50.  
  51. background-image: -gtk-gradient (linear, left top, left bottom,
  52. from (shade (@dark_bg_color, 1.5)),
  53. to (shade (@dark_bg_color, 1.05)));
  54.  
  55. border-color: shade (@dark_bg_color, 0.7);
  56. border-radius: 0;
  57. border-width: 0 1px 0 1px;
  58.  
  59. color: @dark_fg_color;
  60. text-shadow: none;
  61. box-shadow: none;
  62. }
  63.  
  64. PanelApplet .button:prelight:active,
  65. PanelApplet .button:active {
  66. background-image: -gtk-gradient (linear, left top, left bottom,
  67. from (shade (@dark_bg_color, 0.85)),
  68. to (shade (@dark_bg_color, 1.0)));
  69. border-color: shade (@dark_bg_color, 0.7);
  70. border-radius: 0;
  71. border-width: 0 1px 0 1px;
  72. }
  73.  
  74. PanelApplet .button:prelight {
  75. background-image: -gtk-gradient (linear, left top, left bottom,
  76. from (shade (@dark_bg_color, 1.7)),
  77. to (shade (@dark_bg_color, 1.25)));
  78. border-color: shade (@dark_bg_color, 0.7);
  79. border-radius: 0;
  80. border-width: 0 1px 0 1px;
  81. }
  82.  
  83. ClockBox {
  84. text-shadow: 0 -1 shade (@dark_bg_color, 0.6);
  85. }
  86.  
  87. WnckPager, WnckTasklist {
  88. background-color: @dark_bg_color;
  89. }
  90.  
  91. /************
  92. * nautilus *
  93. ************/
  94. NautilusWindow * {
  95. -GtkPaned-handle-size: 1;
  96. }
  97.  
  98. .nautilus-canvas-item {
  99. border-radius: 2px;
  100. }
  101.  
  102. /* desktop mode */
  103. .nautilus-desktop.nautilus-canvas-item {
  104. color: #ffffff;
  105. text-shadow: 1 1 #000000;
  106. }
  107.  
  108. .nautilus-desktop.nautilus-canvas-item:active {
  109. background-image: none;
  110. background-color: alpha (@theme_bg_color, 0.84);
  111.  
  112. color: @theme_fg_color;
  113. }
  114.  
  115. .nautilus-desktop.nautilus-canvas-item:selected {
  116. background-image: none;
  117. background-color: alpha (@theme_selected_bg_color, 0.84);
  118.  
  119. color: @theme_selected_fg_color;
  120. }
  121.  
  122. .nautilus-desktop.nautilus-canvas-item:active,
  123. .nautilus-desktop.nautilus-canvas-item:prelight,
  124. .nautilus-desktop.nautilus-canvas-item:selected {
  125. text-shadow: none;
  126. }
  127.  
  128. /* browser window */
  129. NautilusTrashBar.info,
  130. NautilusXContentBar.info,
  131. NautilusSearchBar.info,
  132. NautilusQueryEditor.info {
  133. background-image: -gtk-gradient (linear, left top, left bottom,
  134. from (shade (@info_bg_color, 1.09)),
  135. color-stop (0.5, shade (@info_bg_color, 1.01)),
  136. to (shade (@info_bg_color, 0.91)));
  137. border-bottom-color: shade (@info_bg_color, 0.7);
  138. border-radius: 0;
  139. border-style: solid;
  140. border-width: 0 0 1px 0;
  141. }
  142.  
  143. .nautilus-cluebar-label {
  144. font: bold;
  145. color: @info_fg_color;
  146. }
  147.  
  148. NautilusLocationEntry.entry {
  149. padding-left: 3px;
  150. padding-right: 3px;
  151. }
  152.  
  153. NautilusQueryEditor .button,
  154. NautilusQueryEditor .button:focus,
  155. NautilusQueryEditor .button:active,
  156. NautilusQueryEditor .button:active:focus,
  157. NautilusSearchBar .entry,
  158. NautilusSearchBar .entry:focus {
  159. border-color: darker (@info_bg_color);
  160. border-style: solid;
  161. border-width: 1px;
  162. padding-left: 3px;
  163. padding-right: 3px;
  164. }
  165.  
  166. /* inactive pane */
  167. .nautilus-inactive-pane .view,
  168. .nautilus-inactive-pane .notebook {
  169. background-color: shade (@theme_base_color, 0.97);
  170. }
  171.  
  172. /******************
  173. * gnome terminal *
  174. ******************/
  175. TerminalScreen {
  176. background-color: shade (@theme_fg_color, 0.95);
  177. color: #fff;
  178.  
  179. -TerminalScreen-background-darkness: 0.9;
  180. }
  181.  
  182. TerminalWindow GtkNotebook.notebook {
  183. border-bottom-width: 0;
  184. border-right-width: 0;
  185. border-left-width: 0;
  186. }
  187.  
  188. /***********************
  189. * gnome control center *
  190. ***********************/
  191. CcShellItemView.view {
  192. background-color: @theme_bg_color;
  193. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement