Advertisement
Guest User

Untitled

a guest
Dec 17th, 2017
673
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 179.41 KB | None | 0 0
  1. * {
  2. background-clip: padding-box;
  3. -GtkToolButton-icon-spacing: 4;
  4. -GtkTextView-error-underline-color: #FC4138;
  5. -GtkCheckButton-indicator-size: 16;
  6. -GtkCheckMenuItem-indicator-size: 16;
  7. -GtkScrolledWindow-scrollbar-spacing: 0;
  8. -GtkScrolledWindow-scrollbars-within-bevel: 1;
  9. -GtkToolItemGroup-expander-size: 11;
  10. -GtkExpander-expander-size: 16;
  11. -GtkTreeView-expander-size: 11;
  12. -GtkTreeView-horizontal-separator: 4;
  13. -GtkMenu-horizontal-padding: 0;
  14. -GtkMenu-vertical-padding: 0;
  15. -GtkWidget-link-color: #c2d0b4;
  16. -GtkWidget-visited-link-color: #a9bc95;
  17. -GtkWidget-focus-padding: 2;
  18. -GtkWidget-focus-line-width: 1;
  19. -GtkWidget-text-handle-width: 20;
  20. -GtkWidget-text-handle-height: 20;
  21. -GtkDialog-button-spacing: 4;
  22. -GtkDialog-action-area-border: 6;
  23. -GtkStatusbar-shadow-type: none;
  24. outline-color: rgba(218, 218, 218, 0.3);
  25. outline-style: dashed;
  26. outline-offset: -3px;
  27. outline-width: 1px;
  28. outline-radius: 2px; }
  29.  
  30. .background {
  31. color: #DADADA;
  32. background-color: rgba(56, 56, 56, 0.999); }
  33.  
  34. *:insensitive {
  35. -gtk-image-effect: dim; }
  36.  
  37. .gtkstyle-fallback {
  38. background-color: #383838;
  39. color: #DADADA; }
  40. .gtkstyle-fallback:prelight {
  41. background-color: #525252;
  42. color: #DADADA; }
  43. .gtkstyle-fallback:active {
  44. background-color: #1f1f1f;
  45. color: #DADADA; }
  46. .gtkstyle-fallback:insensitive {
  47. background-color: #3d3d3d;
  48. color: rgba(218, 218, 218, 0.55); }
  49. .gtkstyle-fallback:selected {
  50. background-color: #8fa876;
  51. color: #ffffff; }
  52.  
  53. .view {
  54. color: #DADADA;
  55. background-color: #404040; }
  56. .view.dim-label, .view.label.separator, .header-bar .view.subtitle {
  57. color: rgba(218, 218, 218, 0.55); }
  58. .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus {
  59. color: rgba(255, 255, 255, 0.65);
  60. text-shadow: none; }
  61.  
  62. .rubberband, GtkTreeView.view.rubberband, .content-view.rubberband {
  63. border: 1px solid #76905b;
  64. background-color: rgba(118, 144, 91, 0.2); }
  65.  
  66. .label.separator, .popover .label.separator, .sidebar .label.view.separator {
  67. color: #DADADA; }
  68. .label:insensitive {
  69. color: rgba(218, 218, 218, 0.55); }
  70.  
  71. .dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle {
  72. opacity: 0.55; }
  73.  
  74. GtkAssistant .sidebar {
  75. background-color: #404040;
  76. border-top: 1px solid #292929; }
  77. GtkAssistant .sidebar:dir(ltr) {
  78. border-right: 1px solid #292929; }
  79. GtkAssistant .sidebar:dir(rtl) {
  80. border-left: 1px solid #292929; }
  81. GtkAssistant.csd .sidebar {
  82. border-top-style: none; }
  83. GtkAssistant .sidebar .label {
  84. padding: 6px 12px; }
  85. GtkAssistant .sidebar .label.highlight {
  86. background-color: #8fa876;
  87. color: #ffffff; }
  88.  
  89. GtkTextView {
  90. background-color: #3c3c3c;
  91. color: #DADADA; }
  92.  
  93. .grid-child {
  94. padding: 3px;
  95. border-radius: 3px; }
  96. .grid-child:selected {
  97. outline-offset: -2px; }
  98.  
  99. .popover.osd, .osd {
  100. color: #C3C3C3;
  101. border: none;
  102. background-color: #353535;
  103. background-clip: padding-box;
  104. outline-color: rgba(195, 195, 195, 0.3);
  105. box-shadow: none; }
  106.  
  107. @keyframes spin {
  108. to {
  109. -gtk-icon-transform: rotate(1turn); } }
  110. .spinner {
  111. background-image: none;
  112. background-color: blue;
  113. opacity: 0;
  114. -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); }
  115. .spinner:active {
  116. opacity: 1;
  117. animation: spin 1s linear infinite; }
  118. .spinner:active:insensitive {
  119. opacity: 0.5; }
  120.  
  121. .entry {
  122. border: 1px solid;
  123. padding: 5px 8px;
  124. border-radius: 3px;
  125. transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  126. color: #DADADA;
  127. border-color: #292929;
  128. background-color: #404040;
  129. background-image: linear-gradient(to bottom, #404040); }
  130. .entry.image.left {
  131. padding-left: 0; }
  132. .entry.image.right {
  133. padding-right: 0; }
  134. .entry.flat, .entry.flat:focus {
  135. padding: 2px;
  136. color: #DADADA;
  137. border-color: #292929;
  138. background-color: #404040;
  139. background-image: linear-gradient(to bottom, #404040);
  140. border: none;
  141. border-radius: 0; }
  142. .entry:focus {
  143. background-clip: border-box;
  144. color: #DADADA;
  145. border-color: #292929;
  146. background-color: #404040;
  147. background-image: linear-gradient(to bottom, #404040);
  148. box-shadow: inset 1px 0 #8fa876, inset -1px 0 #8fa876, inset 0 1px #8fa876, inset 0 -1px #8fa876; }
  149. .entry:insensitive {
  150. color: rgba(218, 218, 218, 0.55);
  151. border-color: rgba(41, 41, 41, 0.55);
  152. background-color: rgba(64, 64, 64, 0.55);
  153. background-image: linear-gradient(to bottom, rgba(64, 64, 64, 0.55)); }
  154. .entry:selected, .entry:selected:focus {
  155. background-color: #8fa876;
  156. color: #ffffff; }
  157. .entry.progressbar {
  158. margin: 2px 12px;
  159. border-radius: 0;
  160. border-width: 0 0 2px;
  161. border-color: #8fa876;
  162. border-style: solid;
  163. background-image: none;
  164. background-color: transparent;
  165. box-shadow: none; }
  166. .entry.warning {
  167. color: #ffffff;
  168. border-color: #292929;
  169. background-image: linear-gradient(to bottom, #ab6239); }
  170. .entry.warning:focus {
  171. color: #ffffff;
  172. background-image: linear-gradient(to bottom, #f27835);
  173. box-shadow: none; }
  174. .entry.warning:selected, .entry.warning:selected:focus {
  175. background-color: #ffffff;
  176. color: #f27835; }
  177. .entry.error {
  178. color: #ffffff;
  179. border-color: #292929;
  180. background-image: linear-gradient(to bottom, #b1413b); }
  181. .entry.error:focus {
  182. color: #ffffff;
  183. background-image: linear-gradient(to bottom, #FC4138);
  184. box-shadow: none; }
  185. .entry.error:selected, .entry.error:selected:focus {
  186. background-color: #ffffff;
  187. color: #FC4138; }
  188. .entry.image {
  189. color: #bbbbbb; }
  190. .osd .entry {
  191. color: #C3C3C3;
  192. border-color: rgba(22, 22, 22, 0.4);
  193. background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4));
  194. background-color: transparent; }
  195. .osd .entry.image, .osd .entry.image:hover {
  196. color: inherit; }
  197. .osd .entry:focus {
  198. color: #ffffff;
  199. border-color: rgba(22, 22, 22, 0.4);
  200. background-image: linear-gradient(to bottom, #8fa876); }
  201. .osd .entry:insensitive {
  202. color: rgba(195, 195, 195, 0.55);
  203. background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); }
  204.  
  205. GtkSearchEntry.entry {
  206. border-radius: 4px; }
  207.  
  208. @keyframes needs_attention {
  209. from {
  210. background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#8fa876), to(transparent)); }
  211. to {
  212. background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#8fa876), to(transparent)); } }
  213. .button {
  214. transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  215. border: 1px solid;
  216. border-radius: 3px;
  217. padding: 5px 8px;
  218. color: #DADADA;
  219. outline-color: rgba(218, 218, 218, 0.3);
  220. border-color: #292929;
  221. background-color: #454545; }
  222. .button.flat, .sidebar-button.button {
  223. border-color: transparent;
  224. background-color: transparent;
  225. background-image: none;
  226. background-color: rgba(69, 69, 69, 0);
  227. border-color: rgba(41, 41, 41, 0);
  228. transition: none; }
  229. .button.flat:hover, .sidebar-button.button:hover {
  230. transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  231. transition-duration: 350ms; }
  232. .button.flat:hover:active, .sidebar-button.button:hover:active {
  233. transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  234. .button:hover {
  235. color: #DADADA;
  236. outline-color: rgba(218, 218, 218, 0.3);
  237. border-color: #292929;
  238. background-color: #525252;
  239. -gtk-image-effect: highlight; }
  240. .button:active, .button:checked {
  241. background-clip: padding-box;
  242. color: #ffffff;
  243. outline-color: rgba(255, 255, 255, 0.3);
  244. border-color: #292929;
  245. background-color: #8fa876;
  246. transition-duration: 50ms; }
  247. .button:active {
  248. color: #DADADA; }
  249. .button:active:hover, .button:checked {
  250. color: #ffffff; }
  251. .button.flat:insensitive, .sidebar-button.button:insensitive {
  252. border-color: transparent;
  253. background-color: transparent;
  254. background-image: none; }
  255. .button:insensitive {
  256. color: rgba(218, 218, 218, 0.55);
  257. border-color: rgba(41, 41, 41, 0.55);
  258. background-color: rgba(69, 69, 69, 0.55); }
  259. .button:insensitive > GtkLabel {
  260. color: inherit; }
  261. .button:insensitive:active, .button:insensitive:checked {
  262. color: rgba(255, 255, 255, 0.8);
  263. border-color: rgba(143, 168, 118, 0.75);
  264. background-color: rgba(143, 168, 118, 0.75);
  265. opacity: 0.6; }
  266. .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel {
  267. color: inherit; }
  268. .button.osd {
  269. color: #C3C3C3;
  270. outline-color: rgba(195, 195, 195, 0.3);
  271. background-color: #353535;
  272. border-color: #212121; }
  273. .button.osd.image-button, .header-bar .button.osd.titlebutton,
  274. .titlebar .button.osd.titlebutton {
  275. padding: 10px; }
  276. .button.osd:hover {
  277. color: #8fa876; }
  278. .button.osd:active, .button.osd:checked {
  279. color: #ffffff;
  280. outline-color: rgba(255, 255, 255, 0.3);
  281. border-color: rgba(22, 22, 22, 0.4);
  282. background-color: #8fa876; }
  283. .button.osd:insensitive {
  284. color: #606060;
  285. border-color: rgba(22, 22, 22, 0.4);
  286. background-color: rgba(109, 109, 109, 0.25); }
  287. .osd .button {
  288. color: #C3C3C3;
  289. outline-color: rgba(195, 195, 195, 0.3);
  290. border-color: rgba(22, 22, 22, 0.4);
  291. background-color: rgba(109, 109, 109, 0.4);
  292. border-radius: 0;
  293. border-left-style: none;
  294. border-right-style: none; }
  295. .osd .button:dir(rtl) {
  296. border-radius: 0;
  297. border-right-style: none;
  298. border-left-style: none; }
  299. .osd .button:first-child {
  300. border-radius: 3px 0 0 3px;
  301. border-left-style: solid; }
  302. .osd .button:last-child {
  303. border-radius: 0 3px 3px 0;
  304. border-right-style: solid; }
  305. .osd .button:last-child:dir(rtl) {
  306. border-left-style: solid; }
  307. .osd .button:only-child {
  308. border-radius: 3px;
  309. border-style: solid; }
  310. .osd .button:hover {
  311. color: #C3C3C3;
  312. outline-color: rgba(195, 195, 195, 0.3);
  313. border-color: rgba(22, 22, 22, 0.4);
  314. background-color: rgba(127, 127, 127, 0.5); }
  315. .osd .button:active, .osd .button:checked {
  316. background-clip: padding-box;
  317. color: #ffffff;
  318. outline-color: rgba(255, 255, 255, 0.3);
  319. border-color: rgba(22, 22, 22, 0.4);
  320. background-color: #8fa876; }
  321. .osd .button:insensitive {
  322. color: #606060;
  323. border-color: rgba(22, 22, 22, 0.4);
  324. background-color: rgba(109, 109, 109, 0.25); }
  325. .osd .button.flat, .osd .sidebar-button.button {
  326. border-color: transparent;
  327. background-color: transparent;
  328. background-image: none;
  329. box-shadow: none; }
  330. .osd .button.flat:hover, .osd .sidebar-button.button:hover {
  331. color: #C3C3C3;
  332. outline-color: rgba(195, 195, 195, 0.3);
  333. border-color: rgba(22, 22, 22, 0.4);
  334. background-color: rgba(127, 127, 127, 0.5); }
  335. .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive {
  336. color: #606060;
  337. border-color: rgba(22, 22, 22, 0.4);
  338. background-color: rgba(109, 109, 109, 0.25);
  339. background-image: none; }
  340. .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked {
  341. color: #ffffff;
  342. outline-color: rgba(255, 255, 255, 0.3);
  343. border-color: rgba(22, 22, 22, 0.4);
  344. background-color: #8fa876; }
  345. .button.suggested-action {
  346. background-clip: border-box;
  347. color: #ffffff;
  348. outline-color: rgba(255, 255, 255, 0.3);
  349. background-color: #6db442;
  350. border-color: #6db442; }
  351. .button.suggested-action.flat, .suggested-action.sidebar-button.button {
  352. border-color: transparent;
  353. background-color: transparent;
  354. background-image: none;
  355. color: #6db442;
  356. outline-color: rgba(109, 180, 66, 0.3); }
  357. .button.suggested-action:hover {
  358. background-clip: border-box;
  359. color: #ffffff;
  360. outline-color: rgba(255, 255, 255, 0.3);
  361. background-color: #88c663;
  362. border-color: #88c663; }
  363. .button.suggested-action:active, .button.suggested-action:checked {
  364. background-clip: border-box;
  365. color: #ffffff;
  366. outline-color: rgba(255, 255, 255, 0.3);
  367. background-color: #568f34;
  368. border-color: #568f34; }
  369. .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive {
  370. border-color: transparent;
  371. background-color: transparent;
  372. background-image: none;
  373. color: rgba(218, 218, 218, 0.55); }
  374. .button.suggested-action:insensitive {
  375. color: rgba(218, 218, 218, 0.55);
  376. border-color: rgba(41, 41, 41, 0.55);
  377. background-color: rgba(69, 69, 69, 0.55); }
  378. .button.suggested-action:insensitive > GtkLabel {
  379. color: inherit; }
  380. .button.destructive-action {
  381. background-clip: border-box;
  382. color: #ffffff;
  383. outline-color: rgba(255, 255, 255, 0.3);
  384. background-color: #F04A50;
  385. border-color: #F04A50; }
  386. .button.destructive-action.flat, .destructive-action.sidebar-button.button {
  387. border-color: transparent;
  388. background-color: transparent;
  389. background-image: none;
  390. color: #F04A50;
  391. outline-color: rgba(240, 74, 80, 0.3); }
  392. .button.destructive-action:hover {
  393. background-clip: border-box;
  394. color: #ffffff;
  395. outline-color: rgba(255, 255, 255, 0.3);
  396. background-color: #f4797e;
  397. border-color: #f4797e; }
  398. .button.destructive-action:active, .button.destructive-action:checked {
  399. background-clip: border-box;
  400. color: #ffffff;
  401. outline-color: rgba(255, 255, 255, 0.3);
  402. background-color: #ec1b22;
  403. border-color: #ec1b22; }
  404. .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive {
  405. border-color: transparent;
  406. background-color: transparent;
  407. background-image: none;
  408. color: rgba(218, 218, 218, 0.55); }
  409. .button.destructive-action:insensitive {
  410. color: rgba(218, 218, 218, 0.55);
  411. border-color: rgba(41, 41, 41, 0.55);
  412. background-color: rgba(69, 69, 69, 0.55); }
  413. .button.destructive-action:insensitive > GtkLabel {
  414. color: inherit; }
  415. .button.image-button, .header-bar .button.titlebutton,
  416. .titlebar .button.titlebutton {
  417. padding: 7px; }
  418. .header-bar .button.image-button, .header-bar .button.titlebutton {
  419. padding: 7px 10px; }
  420. .button.text-button {
  421. padding-left: 16px;
  422. padding-right: 16px; }
  423. .button.text-button.image-button, .header-bar .button.text-button.titlebutton,
  424. .titlebar .button.text-button.titlebutton {
  425. padding: 5px 8px; }
  426. .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child,
  427. .titlebar .button.text-button.titlebutton GtkLabel:first-child {
  428. padding-left: 8px; }
  429. .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child,
  430. .titlebar .button.text-button.titlebutton GtkLabel:last-child {
  431. padding-right: 8px; }
  432. .stack-switcher > .button {
  433. outline-offset: -3px; }
  434. .stack-switcher > .button > GtkLabel {
  435. padding-left: 6px;
  436. padding-right: 6px; }
  437. .stack-switcher > .button > GtkImage {
  438. padding-left: 6px;
  439. padding-right: 6px;
  440. padding-top: 3px;
  441. padding-bottom: 3px; }
  442. .stack-switcher > .button.text-button {
  443. padding: 5px 10px; }
  444. .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton,
  445. .titlebar .stack-switcher > .button.titlebutton {
  446. padding: 2px 4px; }
  447. .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage {
  448. animation: none;
  449. background-image: none; }
  450. .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel {
  451. animation: needs_attention 150ms ease-in;
  452. background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#8fa876), to(transparent));
  453. background-size: 6px 6px, 6px 6px;
  454. background-repeat: no-repeat;
  455. background-position: right 3px, right 2px; }
  456. .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) {
  457. background-position: left 3px, left 2px; }
  458. .inline-toolbar .button, .inline-toolbar .button:backdrop {
  459. border-radius: 2px;
  460. border-width: 1px; }
  461.  
  462. .inline-toolbar GtkToolButton > .button {
  463. color: #DADADA;
  464. outline-color: rgba(218, 218, 218, 0.3);
  465. border-color: #292929;
  466. background-color: #454545; }
  467. .inline-toolbar GtkToolButton > .button:hover {
  468. color: #DADADA;
  469. outline-color: rgba(218, 218, 218, 0.3);
  470. border-color: #292929;
  471. background-color: #525252; }
  472. .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked {
  473. color: #ffffff;
  474. outline-color: rgba(255, 255, 255, 0.3);
  475. border-color: #292929;
  476. background-color: #8fa876; }
  477. .inline-toolbar GtkToolButton > .button:insensitive {
  478. color: rgba(218, 218, 218, 0.55);
  479. border-color: rgba(41, 41, 41, 0.55);
  480. background-color: rgba(69, 69, 69, 0.55); }
  481. .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel {
  482. color: inherit; }
  483. .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked {
  484. color: rgba(255, 255, 255, 0.8);
  485. border-color: rgba(143, 168, 118, 0.75);
  486. background-color: rgba(143, 168, 118, 0.75);
  487. opacity: 0.6; }
  488. .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel {
  489. color: inherit; }
  490.  
  491. .linked:not(.vertical):not(.pathbar) > .entry + .entry {
  492. border-left-color: rgba(41, 41, 41, 0.3); }
  493. .linked:not(.vertical):not(.pathbar) > .entry.error + .entry,
  494. .linked:not(.vertical):not(.pathbar) > .entry + .entry.error {
  495. border-left-color: rgba(41, 41, 41, 0.3); }
  496. .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry,
  497. .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning {
  498. border-left-color: rgba(41, 41, 41, 0.3); }
  499. .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning {
  500. border-left-color: rgba(41, 41, 41, 0.3); }
  501. .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child),
  502. .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child {
  503. border-left-color: #292929; }
  504. .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child),
  505. .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child {
  506. border-left-color: #292929; }
  507. .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child),
  508. .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child {
  509. border-left-color: #292929; }
  510. .linked:not(.vertical):not(.pathbar) > .entry + .button,
  511. .linked:not(.vertical):not(.pathbar) > .entry + .button:hover,
  512. .linked:not(.vertical):not(.pathbar) > .entry + .button:active,
  513. .linked:not(.vertical):not(.pathbar) > .entry + .button:checked,
  514. .linked:not(.vertical):not(.pathbar) > .entry + .button:insensitive {
  515. border-left-style: solid; }
  516. .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry,
  517. .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button,
  518. .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox,
  519. .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox {
  520. border-left-color: #292929; }
  521. .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry,
  522. .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button,
  523. .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox,
  524. .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox {
  525. border-left-color: #292929; }
  526. .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry,
  527. .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button,
  528. .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox,
  529. .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox {
  530. border-left-color: #292929; }
  531. .linked:not(.vertical):not(.pathbar) > .button:first-child:hover:not(:checked):not(:active) {
  532. box-shadow: none; }
  533. .linked:not(.vertical):not(.pathbar) > .button:checked + .button:not(:checked):not(:active):hover {
  534. box-shadow: none; }
  535. .linked:not(.vertical):not(.pathbar) > .button:checked + .entry {
  536. border-left-color: #292929; }
  537. .linked:not(.vertical):not(.pathbar) > .entry + .button:not(:checked):not(:active):hover {
  538. box-shadow: none; }
  539.  
  540. .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child) {
  541. border-left-color: rgba(41, 41, 41, 0.5); }
  542. .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child {
  543. border-left-color: rgba(41, 41, 41, 0.5); }
  544.  
  545. .linked.vertical > .entry + .entry {
  546. border-top-color: rgba(41, 41, 41, 0.3); }
  547. .linked.vertical > .entry.error + .entry,
  548. .linked.vertical > .entry + .entry.error {
  549. border-top-color: rgba(41, 41, 41, 0.3); }
  550. .linked.vertical > .entry.warning + .entry,
  551. .linked.vertical > .entry + .entry.warning {
  552. border-top-color: rgba(41, 41, 41, 0.3); }
  553. .linked.vertical > .entry.error + .entry.warning {
  554. border-top-color: rgba(41, 41, 41, 0.3); }
  555. .linked.vertical > .entry + .entry:focus:not(:last-child),
  556. .linked.vertical > .entry + .entry:focus:last-child {
  557. border-top-color: #292929; }
  558. .linked.vertical > .entry + .entry.warning:focus:not(:last-child),
  559. .linked.vertical > .entry + .entry.warning:focus:last-child {
  560. border-top-color: #292929; }
  561. .linked.vertical > .entry + .entry.error:focus:not(:last-child),
  562. .linked.vertical > .entry + .entry.error:focus:last-child {
  563. border-top-color: #292929; }
  564. .linked.vertical > .entry + .button,
  565. .linked.vertical > .entry + .button:hover,
  566. .linked.vertical > .entry + .button:active,
  567. .linked.vertical > .entry + .button:checked,
  568. .linked.vertical > .entry + .button:insensitive {
  569. border-top-style: solid; }
  570. .linked.vertical > .entry:focus:not(:only-child) + .entry,
  571. .linked.vertical > .entry:focus:not(:only-child) + .button,
  572. .linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox,
  573. .linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox {
  574. border-top-color: #292929; }
  575. .linked.vertical > .entry.warning:focus:not(:only-child) + .entry,
  576. .linked.vertical > .entry.warning:focus:not(:only-child) + .button,
  577. .linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox,
  578. .linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox {
  579. border-top-color: #292929; }
  580. .linked.vertical > .entry.error:focus:not(:only-child) + .entry,
  581. .linked.vertical > .entry.error:focus:not(:only-child) + .button,
  582. .linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox,
  583. .linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox {
  584. border-top-color: #292929; }
  585. .linked.vertical > .button:hover:not(:checked):not(:active):not(:only-child),
  586. .linked.vertical > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) {
  587. box-shadow: 0 -1px #292929; }
  588. .linked.vertical > .button:first-child:hover:not(:checked):not(:active) {
  589. box-shadow: none; }
  590. .linked.vertical > .button:checked + .button:not(:checked):not(:active):hover {
  591. box-shadow: none; }
  592. .linked.vertical > .button:checked + .entry {
  593. border-top-color: #292929; }
  594. .linked.vertical > .entry + .button:not(:checked):not(:active):hover {
  595. box-shadow: none; }
  596.  
  597. .inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, .linked:not(.vertical) > .button:hover, .linked:not(.vertical) > .button:active, .linked:not(.vertical) > .button:checked, .linked:not(.vertical):not(.pathbar) > .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button,
  598. .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button,
  599. .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button,
  600. .primary-toolbar .linked:not(.vertical).path-bar > .button,
  601. .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button,
  602. .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button,
  603. .header-bar .linked:not(.vertical).path-bar > .button,
  604. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover,
  605. .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover,
  606. .primary-toolbar .linked:not(.vertical).path-bar > .button:hover,
  607. .header-bar .linked:not(.vertical).path-bar > .button:hover,
  608. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active,
  609. .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active,
  610. .primary-toolbar .linked:not(.vertical).path-bar > .button:active,
  611. .header-bar .linked:not(.vertical).path-bar > .button:active,
  612. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked,
  613. .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked,
  614. .primary-toolbar .linked:not(.vertical).path-bar > .button:checked,
  615. .header-bar .linked:not(.vertical).path-bar > .button:checked,
  616. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive,
  617. .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive,
  618. .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive,
  619. .header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button,
  620. NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover,
  621. NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active,
  622. NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked,
  623. NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl),
  624. .linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr),
  625. .linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) {
  626. border-radius: 0;
  627. border-right-style: none; }
  628.  
  629. .osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox,
  630. .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child,
  631. .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child,
  632. .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child,
  633. .primary-toolbar .linked:not(.vertical).path-bar > .button:first-child,
  634. .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:first-child,
  635. .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:first-child,
  636. .header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child {
  637. border-top-left-radius: 3px;
  638. border-bottom-left-radius: 3px; }
  639. .osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox,
  640. .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child,
  641. .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child,
  642. .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child,
  643. .primary-toolbar .linked:not(.vertical).path-bar > .button:last-child,
  644. .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:last-child,
  645. .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:last-child,
  646. .header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child {
  647. border-top-right-radius: 3px;
  648. border-bottom-right-radius: 3px;
  649. border-right-style: solid; }
  650. .osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox,
  651. .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child,
  652. .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child,
  653. .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child,
  654. .primary-toolbar .linked:not(.vertical).path-bar > .button:only-child,
  655. .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:only-child,
  656. .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:only-child,
  657. .header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child {
  658. border-radius: 3px;
  659. border-style: solid; }
  660.  
  661. .linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .entry, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox,
  662. .linked.vertical > GtkComboBox > .the-button-in-the-combobox {
  663. border-radius: 0;
  664. border-bottom-style: none; }
  665.  
  666. .linked.vertical > .button:first-child, .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox,
  667. .linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox {
  668. border-top-left-radius: 3px;
  669. border-top-right-radius: 3px; }
  670. .linked.vertical > .button:last-child, .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox,
  671. .linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox {
  672. border-bottom-left-radius: 3px;
  673. border-bottom-right-radius: 3px;
  674. border-bottom-style: solid; }
  675. .linked.vertical > .button:only-child, .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox,
  676. .linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox {
  677. border-radius: 3px;
  678. border-style: solid; }
  679.  
  680. .linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked {
  681. border-top-style: none; }
  682. .linked.vertical > .button:first-child {
  683. border-top-style: solid; }
  684.  
  685. .menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button,
  686. .app-notification.frame .button.flat,
  687. .app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive,
  688. .app-notification.frame .button.flat:insensitive,
  689. .app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active {
  690. border-color: transparent;
  691. background-color: transparent;
  692. background-image: none;
  693. box-shadow: none; }
  694.  
  695. .menuitem.button.flat, .menuitem.sidebar-button.button {
  696. transition: none;
  697. outline-offset: -1px;
  698. border-radius: 2px; }
  699. .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover {
  700. background-color: #484848; }
  701. .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked {
  702. color: #DADADA; }
  703.  
  704. *:link, .button:link, .button:visited {
  705. color: #c2d0b4; }
  706. *:link:visited, .button:visited {
  707. color: #a9bc95; }
  708. *:selected *:link:visited, *:selected .button:visited {
  709. color: #d2dcc8; }
  710. *:link:hover, .button:hover:link, .button:hover:visited {
  711. color: #dce3d4; }
  712. *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited {
  713. color: #f4f6f1; }
  714. *:link:active, .button:active:link, .button:active:visited {
  715. color: #c2d0b4; }
  716. *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited {
  717. color: #e9eee4; }
  718. *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
  719. color: #e9eee4; }
  720.  
  721. .button:link > .label, .button:visited > .label {
  722. text-decoration-line: underline; }
  723.  
  724. .spinbutton {
  725. border-radius: 3px; }
  726. .spinbutton .button {
  727. background-image: none;
  728. border: 1px solid rgba(41, 41, 41, 0.6);
  729. border-style: none none none solid;
  730. color: #d2d2d2;
  731. border-radius: 0;
  732. box-shadow: none; }
  733. .spinbutton .button:dir(rtl) {
  734. border-style: none solid none none; }
  735. .spinbutton .button:first-child {
  736. color: red; }
  737. .spinbutton .button:insensitive {
  738. color: rgba(218, 218, 218, 0.55); }
  739. .spinbutton .button:active {
  740. background-color: #8fa876;
  741. color: #ffffff; }
  742. .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child {
  743. color: #DADADA;
  744. outline-color: rgba(218, 218, 218, 0.3);
  745. border-color: #292929;
  746. background-color: #454545; }
  747. .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active {
  748. color: #ffffff;
  749. outline-color: rgba(255, 255, 255, 0.3);
  750. border-color: #292929;
  751. background-color: #8fa876; }
  752. .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover {
  753. color: #DADADA;
  754. outline-color: rgba(218, 218, 218, 0.3);
  755. border-color: #292929;
  756. background-color: #525252; }
  757. .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive {
  758. color: rgba(218, 218, 218, 0.55);
  759. border-color: rgba(41, 41, 41, 0.55);
  760. background-color: rgba(69, 69, 69, 0.55); }
  761. .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel {
  762. color: inherit; }
  763. .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child {
  764. color: #DADADA;
  765. outline-color: rgba(218, 218, 218, 0.3);
  766. border-color: #292929;
  767. background-color: #454545; }
  768. .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active {
  769. color: #ffffff;
  770. outline-color: rgba(255, 255, 255, 0.3);
  771. border-color: #292929;
  772. background-color: #8fa876; }
  773. .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover {
  774. color: #DADADA;
  775. outline-color: rgba(218, 218, 218, 0.3);
  776. border-color: #292929;
  777. background-color: #525252; }
  778. .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive {
  779. color: rgba(218, 218, 218, 0.55);
  780. border-color: rgba(41, 41, 41, 0.55);
  781. background-color: rgba(69, 69, 69, 0.55); }
  782. .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel {
  783. color: inherit; }
  784. .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry {
  785. border-radius: 0;
  786. padding-left: 5px;
  787. padding-right: 5px; }
  788. .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive {
  789. border-radius: 2px 2px 0 0;
  790. border-style: solid solid none solid; }
  791. .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive {
  792. border-radius: 0 0 2px 2px;
  793. border-style: none solid solid solid; }
  794. GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus {
  795. padding: 1px;
  796. border-width: 1px 0;
  797. border-color: #8fa876;
  798. border-radius: 0;
  799. box-shadow: none; }
  800.  
  801. GtkComboBox {
  802. -GtkComboBox-arrow-scaling: 0.5;
  803. -GtkComboBox-shadow-type: none; }
  804. GtkComboBox > .the-button-in-the-combobox {
  805. padding-top: 3px;
  806. padding-bottom: 3px; }
  807. GtkComboBox:insensitive {
  808. color: rgba(218, 218, 218, 0.55); }
  809. GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator {
  810. -GtkWidget-wide-separators: true; }
  811. GtkComboBox.combobox-entry .entry:dir(ltr) {
  812. border-top-right-radius: 0;
  813. border-bottom-right-radius: 0;
  814. border-right-style: none; }
  815. GtkComboBox.combobox-entry .entry:dir(rtl) {
  816. border-top-left-radius: 0;
  817. border-bottom-left-radius: 0;
  818. border-left-style: none; }
  819. GtkComboBox.combobox-entry .button:dir(ltr) {
  820. border-top-left-radius: 0;
  821. border-bottom-left-radius: 0; }
  822. GtkComboBox.combobox-entry .button:dir(rtl) {
  823. border-top-right-radius: 0;
  824. border-bottom-right-radius: 0; }
  825.  
  826. .toolbar, .inline-toolbar {
  827. -GtkWidget-window-dragging: true;
  828. padding: 4px;
  829. background-color: #383838; }
  830. .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar {
  831. padding: 7px;
  832. border: 1px solid rgba(0, 0, 0, 0.5);
  833. border-radius: 3px;
  834. background-color: rgba(53, 53, 53, 0.9); }
  835.  
  836. .primary-toolbar,
  837. .primary-toolbar .toolbar,
  838. .primary-toolbar .inline-toolbar {
  839. color: #ded6d6;
  840. background-color: #2f2f2f;
  841. box-shadow: none;
  842. border-width: 0 0 1px 0;
  843. border-style: solid;
  844. border-image: linear-gradient(to bottom, #2f2f2f, #1d1d1d) 1 0 1 0; }
  845. .primary-toolbar .label:insensitive,
  846. .primary-toolbar .toolbar .label:insensitive,
  847. .primary-toolbar .inline-toolbar .label:insensitive {
  848. color: rgba(218, 218, 218, 0.55); }
  849.  
  850. .inline-toolbar {
  851. background-color: #303030;
  852. border-style: solid;
  853. border-color: #292929;
  854. border-width: 0 1px 1px;
  855. padding: 3px;
  856. border-radius: 0 0 3px 3px; }
  857.  
  858. .search-bar {
  859. background-color: #383838;
  860. border-style: solid;
  861. border-color: #292929;
  862. border-width: 0 0 1px;
  863. padding: 3px; }
  864.  
  865. .action-bar {
  866. background-color: #303030; }
  867.  
  868. .header-bar {
  869. padding: 5px 5px 4px 5px;
  870. border-width: 0 0 1px;
  871. border-style: solid;
  872. border-radius: 0;
  873. border-color: #252525;
  874. color: #ded6d6;
  875. background-color: #2f2f2f; }
  876. .csd .header-bar {
  877. background-color: #2f2f2f;
  878. border-color: #252525; }
  879. .header-bar:backdrop {
  880. color: rgba(222, 214, 214, 0.7); }
  881. .header-bar .title {
  882. padding-left: 12px;
  883. padding-right: 12px; }
  884. .header-bar .subtitle {
  885. font-size: smaller;
  886. padding-left: 12px;
  887. padding-right: 12px; }
  888. .header-bar.selection-mode, .header-bar.titlebar.selection-mode {
  889. color: #ffffff;
  890. background-color: #8fa876;
  891. border-color: #85a06a;
  892. box-shadow: none; }
  893. .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop {
  894. background-color: #8fa876;
  895. color: rgba(255, 255, 255, 0.6); }
  896. .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button {
  897. color: #ffffff;
  898. outline-color: rgba(255, 255, 255, 0.3);
  899. background-color: rgba(255, 255, 255, 0);
  900. border-color: rgba(255, 255, 255, 0); }
  901. .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button {
  902. border-color: transparent;
  903. background-color: transparent;
  904. background-image: none;
  905. color: #ffffff;
  906. background-color: rgba(255, 255, 255, 0); }
  907. .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover {
  908. color: #ffffff;
  909. outline-color: rgba(255, 255, 255, 0.3);
  910. background-color: rgba(255, 255, 255, 0.05);
  911. border-color: rgba(255, 255, 255, 0.5); }
  912. .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked {
  913. color: #8fa876;
  914. outline-color: rgba(143, 168, 118, 0.3);
  915. background-color: #ffffff;
  916. border-color: #ffffff; }
  917. .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive {
  918. color: rgba(255, 255, 255, 0.4);
  919. background-color: rgba(255, 255, 255, 0);
  920. border-color: rgba(255, 255, 255, 0); }
  921. .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked {
  922. color: rgba(143, 168, 118, 0.4);
  923. background-color: rgba(255, 255, 255, 0.15);
  924. border-color: rgba(255, 255, 255, 0.15); }
  925. .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu {
  926. box-shadow: none;
  927. padding-left: 10px;
  928. padding-right: 10px; }
  929. .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow {
  930. -GtkArrow-arrow-scaling: 1; }
  931. .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow {
  932. -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
  933. .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode {
  934. background-color: #8fa876; }
  935. .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop {
  936. border-radius: 0; }
  937. .maximized .header-bar {
  938. background-color: #2f2f2f;
  939. border-color: #252525; }
  940. .header-bar.default-decoration, .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, .csd .header-bar.default-decoration:backdrop {
  941. padding-top: 5px;
  942. padding-bottom: 5px;
  943. background-color: #2f2f2f;
  944. border-bottom-width: 0; }
  945. .maximized .header-bar.default-decoration, .maximized .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized .csd .header-bar.default-decoration:backdrop {
  946. background-color: #2f2f2f; }
  947.  
  948. .titlebar {
  949. padding-left: 7px;
  950. padding-right: 7px;
  951. border-radius: 3px 3px 0 0;
  952. color: #ded6d6;
  953. background-color: #2f2f2f;
  954. box-shadow: inset 0 1px #373737; }
  955. .csd .titlebar {
  956. background-color: #2f2f2f; }
  957. .titlebar:backdrop {
  958. color: rgba(222, 214, 214, 0.7);
  959. background-color: #333333; }
  960. .csd .titlebar:backdrop {
  961. background-color: #333333; }
  962. .maximized .titlebar {
  963. background-color: #2f2f2f; }
  964. .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop {
  965. background-color: #333333; }
  966.  
  967. .titlebar .titlebar,
  968. .titlebar .titlebar:backdrop {
  969. background-color: transparent; }
  970.  
  971. .primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator,
  972. .primary-toolbar .toolbar .separator,
  973. .primary-toolbar .inline-toolbar .separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical {
  974. -GtkWidget-wide-separators: true;
  975. -GtkWidget-separator-width: 1px;
  976. border-width: 0 1px;
  977. border-image: linear-gradient(to bottom, rgba(222, 214, 214, 0) 25%, rgba(222, 214, 214, 0.35) 25%, rgba(222, 214, 214, 0.35) 75%, rgba(222, 214, 214, 0) 75%) 0 1/0 1px stretch; }
  978. .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop {
  979. opacity: 0.6; }
  980.  
  981. .primary-toolbar .entry, .header-bar .entry {
  982. color: #ded6d6;
  983. border-color: rgba(16, 16, 16, 0.4);
  984. background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4));
  985. background-color: transparent; }
  986. .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover {
  987. color: inherit; }
  988. .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop {
  989. opacity: 0.85; }
  990. .primary-toolbar .entry:focus, .header-bar .entry:focus {
  991. color: #ded6d6;
  992. border-color: #8fa876;
  993. background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4));
  994. background-clip: padding-box; }
  995. .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image {
  996. color: rgba(222, 214, 214, 0.85); }
  997. .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive {
  998. color: rgba(222, 214, 214, 0.55);
  999. background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); }
  1000. .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus {
  1001. background-color: #8fa876;
  1002. color: #ffffff; }
  1003. .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar {
  1004. border-color: #8fa876;
  1005. background-image: none;
  1006. background-color: transparent; }
  1007. .primary-toolbar .entry.warning, .header-bar .entry.warning {
  1008. color: #ffffff;
  1009. border-color: rgba(16, 16, 16, 0.4);
  1010. background-image: linear-gradient(to bottom, #a45b33); }
  1011. .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus {
  1012. color: #ffffff;
  1013. background-image: linear-gradient(to bottom, #f27835); }
  1014. .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus {
  1015. background-color: #ffffff;
  1016. color: #f27835; }
  1017. .primary-toolbar .entry.error, .header-bar .entry.error {
  1018. color: #ffffff;
  1019. border-color: rgba(16, 16, 16, 0.4);
  1020. background-image: linear-gradient(to bottom, #aa3a34); }
  1021. .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus {
  1022. color: #ffffff;
  1023. background-image: linear-gradient(to bottom, #FC4138); }
  1024. .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus {
  1025. background-color: #ffffff;
  1026. color: #FC4138; }
  1027. .primary-toolbar .button, .header-bar .button {
  1028. color: #ded6d6;
  1029. outline-color: rgba(222, 214, 214, 0.3);
  1030. outline-offset: -3px;
  1031. background-color: rgba(47, 47, 47, 0);
  1032. border-color: rgba(47, 47, 47, 0); }
  1033. .primary-toolbar .button:backdrop, .header-bar .button:backdrop {
  1034. opacity: 0.7; }
  1035. .primary-toolbar .button:hover, .header-bar .button:hover {
  1036. color: #ded6d6;
  1037. outline-color: rgba(222, 214, 214, 0.3);
  1038. border-color: rgba(16, 16, 16, 0.4);
  1039. background-color: rgba(103, 103, 103, 0.4); }
  1040. .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked {
  1041. color: #ffffff;
  1042. outline-color: rgba(255, 255, 255, 0.3);
  1043. border-color: transparent;
  1044. background-color: #8fa876;
  1045. background-clip: padding-box; }
  1046. .primary-toolbar .button:insensitive, .header-bar .button:insensitive {
  1047. color: rgba(222, 214, 214, 0.55);
  1048. background-color: rgba(47, 47, 47, 0);
  1049. border-color: rgba(47, 47, 47, 0); }
  1050. .primary-toolbar .button:insensitive > GtkLabel,
  1051. .primary-toolbar .toolbar .button:insensitive > GtkLabel,
  1052. .primary-toolbar .inline-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel {
  1053. color: inherit; }
  1054. .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked {
  1055. color: rgba(255, 255, 255, 0.75);
  1056. border-color: rgba(143, 168, 118, 0.65);
  1057. background-color: rgba(143, 168, 118, 0.65); }
  1058. .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button,
  1059. .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button,
  1060. .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button,
  1061. .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover,
  1062. .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover,
  1063. .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover,
  1064. .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover,
  1065. .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active,
  1066. .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:active,
  1067. .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:active,
  1068. .header-bar .linked:not(.vertical):not(.path-bar) > .button:active,
  1069. .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked,
  1070. .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:checked,
  1071. .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked,
  1072. .header-bar .linked:not(.vertical):not(.path-bar) > .button:checked,
  1073. .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive,
  1074. .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive,
  1075. .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive,
  1076. .header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive {
  1077. border-radius: 3px;
  1078. border-style: solid; }
  1079. .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child),
  1080. .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child),
  1081. .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child),
  1082. .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active),
  1083. .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active),
  1084. .primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child),
  1085. .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child),
  1086. .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child),
  1087. .header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child),
  1088. .primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active),
  1089. .header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) {
  1090. box-shadow: none; }
  1091. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button,
  1092. .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button,
  1093. .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button,
  1094. .primary-toolbar .linked:not(.vertical).path-bar > .button,
  1095. .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button,
  1096. .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button,
  1097. .header-bar .linked:not(.vertical).path-bar > .button {
  1098. color: #ded6d6;
  1099. outline-color: rgba(222, 214, 214, 0.3);
  1100. border-color: rgba(16, 16, 16, 0.4);
  1101. background-color: rgba(103, 103, 103, 0.4); }
  1102. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover,
  1103. .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover,
  1104. .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover,
  1105. .primary-toolbar .linked:not(.vertical).path-bar > .button:hover,
  1106. .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover,
  1107. .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover,
  1108. .header-bar .linked:not(.vertical).path-bar > .button:hover {
  1109. background-color: rgba(141, 141, 141, 0.4); }
  1110. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active,
  1111. .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active,
  1112. .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked,
  1113. .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked,
  1114. .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked,
  1115. .primary-toolbar .linked:not(.vertical).path-bar > .button:active,
  1116. .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:active,
  1117. .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:active,
  1118. .header-bar .linked:not(.vertical).path-bar > .button:active,
  1119. .primary-toolbar .linked:not(.vertical).path-bar > .button:checked,
  1120. .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:checked,
  1121. .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:checked,
  1122. .header-bar .linked:not(.vertical).path-bar > .button:checked {
  1123. color: #ffffff;
  1124. outline-color: rgba(255, 255, 255, 0.3);
  1125. border-color: transparent;
  1126. background-color: #8fa876; }
  1127. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive,
  1128. .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive,
  1129. .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive,
  1130. .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive,
  1131. .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:insensitive,
  1132. .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:insensitive,
  1133. .header-bar .linked:not(.vertical).path-bar > .button:insensitive {
  1134. color: rgba(222, 214, 214, 0.6); }
  1135. .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child),
  1136. .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child),
  1137. .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child),
  1138. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child),
  1139. .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child),
  1140. .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child),
  1141. .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child) {
  1142. border-left-color: rgba(16, 16, 16, 0); }
  1143. .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child,
  1144. .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child,
  1145. .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child,
  1146. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child,
  1147. .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child,
  1148. .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child,
  1149. .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child {
  1150. border-left-color: rgba(16, 16, 16, 0); }
  1151. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry {
  1152. border-left-color: rgba(16, 16, 16, 0); }
  1153. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry,
  1154. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error,
  1155. .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error {
  1156. border-left-color: rgba(16, 16, 16, 0); }
  1157. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry,
  1158. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning,
  1159. .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning {
  1160. border-left-color: rgba(16, 16, 16, 0); }
  1161. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning {
  1162. border-left-color: rgba(16, 16, 16, 0); }
  1163. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child),
  1164. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child,
  1165. .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child {
  1166. border-left-color: rgba(16, 16, 16, 0.4); }
  1167. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child),
  1168. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child,
  1169. .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child {
  1170. border-left-color: rgba(16, 16, 16, 0.4); }
  1171. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child),
  1172. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child,
  1173. .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child {
  1174. border-left-color: rgba(16, 16, 16, 0.4); }
  1175. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry,
  1176. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button,
  1177. .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button,
  1178. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox,
  1179. .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox,
  1180. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox,
  1181. .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox {
  1182. border-left-color: rgba(16, 16, 16, 0.4); }
  1183. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry,
  1184. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button,
  1185. .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button,
  1186. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox,
  1187. .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox,
  1188. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox,
  1189. .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox {
  1190. border-left-color: rgba(16, 16, 16, 0.4); }
  1191. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry,
  1192. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button,
  1193. .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button,
  1194. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox,
  1195. .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox,
  1196. .primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox,
  1197. .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox {
  1198. border-left-color: rgba(16, 16, 16, 0.4); }
  1199. .primary-toolbar .button.suggested-action, .header-bar .button.suggested-action {
  1200. background-clip: border-box;
  1201. color: #ffffff;
  1202. outline-color: rgba(255, 255, 255, 0.3);
  1203. background-color: #6db442;
  1204. border-color: #6db442; }
  1205. .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button {
  1206. border-color: transparent;
  1207. background-color: transparent;
  1208. background-image: none;
  1209. color: #6db442;
  1210. outline-color: rgba(109, 180, 66, 0.3); }
  1211. .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover {
  1212. background-clip: border-box;
  1213. color: #ffffff;
  1214. outline-color: rgba(255, 255, 255, 0.3);
  1215. background-color: #88c663;
  1216. border-color: #88c663; }
  1217. .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked {
  1218. background-clip: border-box;
  1219. color: #ffffff;
  1220. outline-color: rgba(255, 255, 255, 0.3);
  1221. background-color: #568f34;
  1222. border-color: #568f34; }
  1223. .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive {
  1224. color: rgba(222, 214, 214, 0.55);
  1225. background-color: rgba(47, 47, 47, 0);
  1226. border-color: rgba(47, 47, 47, 0); }
  1227. .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel,
  1228. .primary-toolbar .toolbar .button.suggested-action.flat:insensitive > GtkLabel,
  1229. .primary-toolbar .inline-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel,
  1230. .primary-toolbar .toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel,
  1231. .primary-toolbar .inline-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel,
  1232. .primary-toolbar .toolbar .button.suggested-action:insensitive > GtkLabel,
  1233. .primary-toolbar .inline-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel {
  1234. color: inherit; }
  1235. .primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop,
  1236. .primary-toolbar .button.suggested-action:backdrop,
  1237. .header-bar .button.suggested-action:backdrop {
  1238. opacity: 0.8; }
  1239. .primary-toolbar .button.destructive-action, .header-bar .button.destructive-action {
  1240. background-clip: border-box;
  1241. color: #ffffff;
  1242. outline-color: rgba(255, 255, 255, 0.3);
  1243. background-color: #F04A50;
  1244. border-color: #F04A50; }
  1245. .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button {
  1246. border-color: transparent;
  1247. background-color: transparent;
  1248. background-image: none;
  1249. color: #F04A50;
  1250. outline-color: rgba(240, 74, 80, 0.3); }
  1251. .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover {
  1252. background-clip: border-box;
  1253. color: #ffffff;
  1254. outline-color: rgba(255, 255, 255, 0.3);
  1255. background-color: #f4797e;
  1256. border-color: #f4797e; }
  1257. .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked {
  1258. background-clip: border-box;
  1259. color: #ffffff;
  1260. outline-color: rgba(255, 255, 255, 0.3);
  1261. background-color: #ec1b22;
  1262. border-color: #ec1b22; }
  1263. .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive {
  1264. color: rgba(222, 214, 214, 0.55);
  1265. background-color: rgba(47, 47, 47, 0);
  1266. border-color: rgba(47, 47, 47, 0); }
  1267. .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel,
  1268. .primary-toolbar .toolbar .button.destructive-action.flat:insensitive > GtkLabel,
  1269. .primary-toolbar .inline-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel,
  1270. .primary-toolbar .toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel,
  1271. .primary-toolbar .inline-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel,
  1272. .primary-toolbar .toolbar .button.destructive-action:insensitive > GtkLabel,
  1273. .primary-toolbar .inline-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel {
  1274. color: inherit; }
  1275. .primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop,
  1276. .primary-toolbar .button.destructive-action:backdrop,
  1277. .header-bar .button.destructive-action:backdrop {
  1278. opacity: 0.8; }
  1279. .primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button {
  1280. color: #ffffff; }
  1281. .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover {
  1282. background-color: rgba(255, 255, 255, 0.1);
  1283. border-color: transparent; }
  1284. .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive {
  1285. color: rgba(255, 255, 255, 0.4); }
  1286. .primary-toolbar .spinbutton .button, .header-bar .spinbutton .button {
  1287. color: #ded6d6; }
  1288. .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover {
  1289. background-color: rgba(222, 214, 214, 0.25);
  1290. border-color: transparent; }
  1291. .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive {
  1292. color: rgba(222, 214, 214, 0.7); }
  1293. .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active {
  1294. background-color: rgba(0, 0, 0, 0.1); }
  1295. .primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive {
  1296. color: rgba(222, 214, 214, 0.4); }
  1297. .primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button {
  1298. color: #ded6d6;
  1299. border-color: rgba(16, 16, 16, 0.4);
  1300. background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4));
  1301. background-color: transparent; }
  1302. .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover {
  1303. color: inherit; }
  1304. .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover {
  1305. color: #ded6d6;
  1306. border-color: #8fa876;
  1307. background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4));
  1308. box-shadow: none; }
  1309. .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive {
  1310. color: rgba(222, 214, 214, 0.55);
  1311. background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); }
  1312. .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) {
  1313. border-right-style: none; }
  1314. .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus {
  1315. box-shadow: none; }
  1316. .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) {
  1317. border-left-style: none; }
  1318. .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus {
  1319. box-shadow: none; }
  1320. .primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop {
  1321. opacity: 0.75; }
  1322. .primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough {
  1323. background-color: rgba(16, 16, 16, 0.4); }
  1324. .primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop {
  1325. opacity: 0.75; }
  1326. .primary-toolbar .scale:backdrop, .header-bar .scale:backdrop {
  1327. opacity: 0.75; }
  1328. .primary-toolbar .scale.trough, .header-bar .scale.trough {
  1329. background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.4)); }
  1330. .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive {
  1331. background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.3)); }
  1332. .primary-toolbar .scale.slider, .header-bar .scale.slider {
  1333. background-image: linear-gradient(to bottom, #494949);
  1334. border-color: rgba(16, 16, 16, 0.7); }
  1335. .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover {
  1336. background-image: linear-gradient(to bottom, #555555);
  1337. border-color: rgba(16, 16, 16, 0.7); }
  1338. .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active {
  1339. background-image: linear-gradient(to bottom, #8fa876);
  1340. border-color: #8fa876; }
  1341. .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive {
  1342. background-image: linear-gradient(to bottom, #414141);
  1343. border-color: rgba(16, 16, 16, 0.7); }
  1344.  
  1345. .path-bar .button {
  1346. padding: 5px 10px; }
  1347. .path-bar .button:first-child {
  1348. padding-left: 10px; }
  1349. .path-bar .button:last-child {
  1350. padding-right: 10px; }
  1351. .path-bar .button:only-child {
  1352. padding-left: 14px;
  1353. padding-right: 14px; }
  1354. .path-bar .button GtkLabel:last-child {
  1355. padding-left: 4px; }
  1356. .path-bar .button GtkLabel:first-child {
  1357. padding-right: 4px; }
  1358. .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel {
  1359. padding-right: 0;
  1360. padding-left: 0; }
  1361. .path-bar .button GtkImage {
  1362. padding-top: 2px;
  1363. padding-bottom: 1px; }
  1364.  
  1365. GtkTreeView.view {
  1366. -GtkTreeView-grid-line-width: 1;
  1367. -GtkTreeView-grid-line-pattern: '';
  1368. -GtkTreeView-tree-line-width: 1;
  1369. -GtkTreeView-tree-line-pattern: '';
  1370. -GtkTreeView-expander-size: 16;
  1371. border-left-color: rgba(218, 218, 218, 0.15);
  1372. border-top-color: rgba(0, 0, 0, 0.1); }
  1373. GtkTreeView.view:selected {
  1374. border-radius: 0;
  1375. border-left-color: #c7d4bb;
  1376. border-top-color: rgba(218, 218, 218, 0.1); }
  1377. GtkTreeView.view:insensitive {
  1378. color: rgba(218, 218, 218, 0.55); }
  1379. GtkTreeView.view:insensitive:selected {
  1380. color: #bccbad; }
  1381. GtkTreeView.view.dnd {
  1382. border-style: solid none;
  1383. border-width: 1px;
  1384. border-color: #b5c1a8; }
  1385. GtkTreeView.view.expander {
  1386. -gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
  1387. color: #8d8d8d; }
  1388. GtkTreeView.view.expander:dir(rtl) {
  1389. -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); }
  1390. GtkTreeView.view.expander:hover {
  1391. color: #DADADA; }
  1392. GtkTreeView.view.expander:selected {
  1393. color: #dde5d6; }
  1394. GtkTreeView.view.expander:selected:hover {
  1395. color: #ffffff; }
  1396. GtkTreeView.view.expander:checked {
  1397. -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
  1398. GtkTreeView.view.progressbar {
  1399. color: #ffffff;
  1400. border-radius: 3px;
  1401. background-image: linear-gradient(to bottom, #8fa876); }
  1402. GtkTreeView.view.progressbar:selected {
  1403. color: #8fa876;
  1404. box-shadow: none;
  1405. background-image: linear-gradient(to bottom, #ffffff); }
  1406. GtkTreeView.view.trough, GtkTreeView.view.trough:selected {
  1407. color: #DADADA;
  1408. background-image: linear-gradient(to bottom, #292929);
  1409. border-radius: 3px;
  1410. border-width: 0; }
  1411.  
  1412. column-header .button {
  1413. color: #bbbbbb;
  1414. background-color: #353535; }
  1415. column-header .button:hover {
  1416. color: #8fa876;
  1417. box-shadow: none;
  1418. transition: none; }
  1419. column-header .button:active {
  1420. color: #DADADA;
  1421. transition: none; }
  1422. column-header:last-child .button, column-header:last-child.button {
  1423. border-right-style: none;
  1424. border-image: none; }
  1425.  
  1426. column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover {
  1427. transition: none;
  1428. color: #8fa876;
  1429. box-shadow: inset 1px 1px 0 1px #8fa876, inset -1px 0 0 1px #8fa876, inset 1px 1px #404040, inset -1px 0 #404040; }
  1430.  
  1431. column-header .button, column-header .button:hover, column-header .button:active {
  1432. font-weight: bold;
  1433. padding: 3px 6px;
  1434. background-image: none;
  1435. border-style: none solid solid none;
  1436. border-radius: 0;
  1437. border-color: #292929;
  1438. /*border-image: linear-gradient(to bottom,
  1439. transparentize(if($variant == 'light', black, white), 1) 20%,
  1440. transparentize(if($variant == 'light', black, white), 0.89) 20%,
  1441. transparentize(if($variant == 'light', black, white), 0.89) 80%,
  1442. transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch;*/ }
  1443. column-header .button:active, column-header .button:hover {
  1444. background-color: #3d3d3d; }
  1445. column-header .button:active:hover {
  1446. color: #DADADA; }
  1447. column-header .button:insensitive {
  1448. border-color: #383838;
  1449. background-image: none; }
  1450.  
  1451. .menubar {
  1452. -GtkWidget-window-dragging: true;
  1453. padding: 0px;
  1454. background-color: #2f2f2f;
  1455. color: #ded6d6; }
  1456. .menubar:backdrop {
  1457. color: rgba(222, 214, 214, 0.7); }
  1458. .menubar > .menuitem {
  1459. padding: 6px 8px;
  1460. border: solid transparent;
  1461. border-width: 0; }
  1462. .menubar > .menuitem:hover {
  1463. background-color: #8fa876;
  1464. color: #ffffff; }
  1465. .menubar > .menuitem:insensitive {
  1466. color: rgba(222, 214, 214, 0.4);
  1467. border-color: transparent; }
  1468.  
  1469. .menu {
  1470. margin: 4px;
  1471. padding: 0;
  1472. border-radius: 0;
  1473. background-color: #383838;
  1474. border: 1px solid #292929; }
  1475. .csd .menu {
  1476. padding: 4px 0px;
  1477. border-radius: 2px;
  1478. border: none; }
  1479. .menu .menuitem {
  1480. padding: 5px; }
  1481. .menu .menuitem:hover {
  1482. color: #DADADA;
  1483. background-color: rgba(255, 255, 255, 0.06);
  1484. border: solid rgba(255, 255, 255, 0.11);
  1485. border-width: 1px 0 1px 0; }
  1486. .menu .menuitem:insensitive {
  1487. color: rgba(218, 218, 218, 0.55); }
  1488. .menu .menuitem.separator {
  1489. color: rgba(64, 64, 64, 0); }
  1490. .menu .menuitem.arrow {
  1491. -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
  1492. .menu .menuitem.arrow:dir(rtl) {
  1493. -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); }
  1494. .menu.button {
  1495. border-style: none;
  1496. border-radius: 0; }
  1497. .menu.button.top {
  1498. border-bottom: 1px solid #4f4f4f; }
  1499. .menu.button.bottom {
  1500. border-top: 1px solid #4f4f4f; }
  1501. .menu.button:hover {
  1502. background-color: #4f4f4f; }
  1503. .menu.button:insensitive {
  1504. color: transparent;
  1505. background-color: transparent;
  1506. border-color: transparent; }
  1507.  
  1508. .csd .popup {
  1509. border-radius: 2px; }
  1510.  
  1511. .menuitem .accelerator {
  1512. color: alpha(currentColor,0.55); }
  1513.  
  1514. .popover {
  1515. padding: 2px;
  1516. border: 1px solid #1c1c1c;
  1517. border-radius: 3px;
  1518. background-clip: border-box;
  1519. background-color: #383838;
  1520. box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); }
  1521. .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator {
  1522. color: rgba(64, 64, 64, 0); }
  1523. .popover > .list,
  1524. .popover > .view,
  1525. .popover > .toolbar,
  1526. .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar {
  1527. border-style: none;
  1528. background-color: transparent; }
  1529.  
  1530. .entry.cursor-handle,
  1531. .cursor-handle {
  1532. background-color: transparent;
  1533. background-image: none;
  1534. box-shadow: none;
  1535. border-style: none; }
  1536. .entry.cursor-handle.top,
  1537. .cursor-handle.top {
  1538. -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); }
  1539. .entry.cursor-handle.bottom,
  1540. .cursor-handle.bottom {
  1541. -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); }
  1542.  
  1543. .notebook {
  1544. padding: 0;
  1545. background-color: #404040;
  1546. -GtkNotebook-initial-gap: 4;
  1547. -GtkNotebook-arrow-spacing: 5;
  1548. -GtkNotebook-tab-curvature: 0;
  1549. -GtkNotebook-tab-overlap: 1;
  1550. -GtkNotebook-has-tab-gap: false;
  1551. -GtkWidget-focus-padding: 0;
  1552. -GtkWidget-focus-line-width: 0;
  1553. transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  1554. .notebook.frame {
  1555. border: 1px solid #292929; }
  1556. .notebook.frame.top {
  1557. border-top-width: 0; }
  1558. .notebook.frame.bottom {
  1559. border-bottom-width: 0; }
  1560. .notebook.frame.right {
  1561. border-right-width: 0; }
  1562. .notebook.frame.left {
  1563. border-left-width: 0; }
  1564. .notebook.header {
  1565. background-color: #383838; }
  1566. .notebook.header.frame {
  1567. border: 0px solid #292929; }
  1568. .notebook.header.frame.top {
  1569. border-bottom-width: 0; }
  1570. .notebook.header.frame.bottom {
  1571. border-top-width: 0; }
  1572. .notebook.header.frame.right {
  1573. border-left-width: 0; }
  1574. .notebook.header.frame.left {
  1575. border-right-width: 0; }
  1576. .notebook.header.top {
  1577. box-shadow: inset 0 -1px #292929; }
  1578. .notebook.header.bottom {
  1579. box-shadow: inset 0 1px #292929; }
  1580. .notebook.header.right {
  1581. box-shadow: inset 1px 0 #292929; }
  1582. .notebook.header.left {
  1583. box-shadow: inset -1px 0 #292929; }
  1584. .notebook tab {
  1585. border-width: 0;
  1586. border-style: solid;
  1587. border-color: transparent;
  1588. background-color: transparent;
  1589. outline-color: transparent;
  1590. outline-offset: 0; }
  1591. .notebook tab.top, .notebook tab.bottom {
  1592. padding: 4px 15px; }
  1593. .notebook tab.left, .notebook tab.right {
  1594. padding: 4px 15px; }
  1595. .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom {
  1596. padding-left: 12px;
  1597. padding-right: 12px; }
  1598. .notebook tab.reorderable-page.top, .notebook tab.top {
  1599. padding-top: 6px;
  1600. border-radius: 3.5px 2px 0 0;
  1601. border-width: 0;
  1602. border-top-width: 2px;
  1603. border-color: transparent;
  1604. background-color: rgba(64, 64, 64, 0); }
  1605. .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page {
  1606. background-color: rgba(64, 64, 64, 0.5);
  1607. box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; }
  1608. .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover {
  1609. background-color: #404040;
  1610. box-shadow: inset 0 1px #292929, inset 0 -1px #404040, inset 1px 0 #292929, inset -1px 0 #292929; }
  1611. .notebook tab.reorderable-page.bottom, .notebook tab.bottom {
  1612. padding-bottom: 6px;
  1613. border-radius: 0 0 2px 3.5px;
  1614. border-width: 0;
  1615. border-bottom-width: 2px;
  1616. border-color: transparent;
  1617. background-color: rgba(64, 64, 64, 0); }
  1618. .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page {
  1619. background-color: rgba(64, 64, 64, 0.5);
  1620. box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; }
  1621. .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover {
  1622. background-color: #404040;
  1623. box-shadow: inset 0 -1px #404040, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; }
  1624. .notebook tab.reorderable-page.right, .notebook tab.right {
  1625. padding-right: 17px;
  1626. border-radius: 0 3.5px 3.5px 0;
  1627. border-width: 0;
  1628. border-right-width: 2px;
  1629. border-color: transparent;
  1630. background-color: rgba(64, 64, 64, 0); }
  1631. .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page {
  1632. background-color: rgba(64, 64, 64, 0.5);
  1633. box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; }
  1634. .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover {
  1635. background-color: #404040;
  1636. box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #404040, inset -1px 0 #292929; }
  1637. .notebook tab.reorderable-page.left, .notebook tab.left {
  1638. padding-left: 17px;
  1639. border-radius: 3.5px 0 0 3.5px;
  1640. border-width: 0;
  1641. border-left-width: 2px;
  1642. border-color: transparent;
  1643. background-color: rgba(64, 64, 64, 0); }
  1644. .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page {
  1645. background-color: rgba(64, 64, 64, 0.5);
  1646. box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; }
  1647. .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover {
  1648. background-color: #404040;
  1649. box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #404040; }
  1650. .notebook tab GtkLabel {
  1651. padding: 0 2px;
  1652. color: rgba(218, 218, 218, 0.55); }
  1653. .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page {
  1654. color: rgba(218, 218, 218, 0.775); }
  1655. .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page {
  1656. color: #DADADA; }
  1657. .notebook tab .button {
  1658. padding: 0;
  1659. color: #a1a1a1; }
  1660. .notebook tab .button:hover {
  1661. color: #ff4d4d; }
  1662. .notebook tab .button:active {
  1663. color: #8fa876; }
  1664. .notebook tab .button > GtkImage {
  1665. padding: 2px; }
  1666. .notebook.arrow {
  1667. color: rgba(218, 218, 218, 0.55); }
  1668. .notebook.arrow:hover {
  1669. color: rgba(218, 218, 218, 0.775); }
  1670. .notebook.arrow:active {
  1671. color: #DADADA; }
  1672. .notebook.arrow:insensitive {
  1673. color: rgba(218, 218, 218, 0.25); }
  1674.  
  1675. .scrollbar {
  1676. -GtkRange-slider-width: 13;
  1677. -GtkRange-trough-border: 0;
  1678. -GtkScrollbar-has-backward-stepper: false;
  1679. -GtkScrollbar-has-forward-stepper: false;
  1680. -GtkScrollbar-min-slider-length: 42;
  1681. -GtkRange-stepper-spacing: 0;
  1682. -GtkRange-trough-under-steppers: 1; }
  1683. .scrollbar .button {
  1684. border: none; }
  1685. .scrollbar.overlay-indicator:not(.dragging):not(.hovering) {
  1686. opacity: 0.4;
  1687. -GtkRange-slider-width: 6px; }
  1688. .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider {
  1689. margin: 0;
  1690. background-color: darkgray;
  1691. border: 1px solid rgba(0, 0, 0, 0.3);
  1692. background-clip: padding-box; }
  1693. .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough {
  1694. border-style: none;
  1695. background-color: transparent; }
  1696. .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider {
  1697. margin-top: 2px;
  1698. margin-bottom: 2px; }
  1699. .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider {
  1700. margin-left: 2px;
  1701. margin-right: 2px; }
  1702. .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering {
  1703. opacity: 0.99; }
  1704. .scrollbar .trough {
  1705. background-color: #3d3d3d;
  1706. border: 1px none #292929; }
  1707. .scrollbar .slider {
  1708. background-color: #797979; }
  1709. .scrollbar .slider:hover {
  1710. background-color: dimgray; }
  1711. .scrollbar .slider:prelight:active {
  1712. background-color: #8fa876; }
  1713. .scrollbar .slider:insensitive {
  1714. background-color: transparent; }
  1715. .scrollbar .slider {
  1716. border-radius: 100px;
  1717. margin: 3px; }
  1718. .scrollbar.fine-tune .slider {
  1719. margin: 4px; }
  1720. .scrollbar.vertical .slider {
  1721. margin-left: 4px; }
  1722. .scrollbar.vertical .slider:dir(rtl) {
  1723. margin-left: 3px;
  1724. margin-right: 4px; }
  1725. .scrollbar.vertical.fine-tune .slider {
  1726. margin-left: 5px; }
  1727. .scrollbar.vertical.fine-tune .slider:dir(rtl) {
  1728. margin-left: 4px;
  1729. margin-right: 5px; }
  1730. .scrollbar.vertical .trough {
  1731. border-left-style: solid; }
  1732. .scrollbar.vertical .trough:dir(rtl) {
  1733. border-left-style: none;
  1734. border-right-style: solid; }
  1735. .scrollbar.horizontal .slider {
  1736. margin-top: 4px; }
  1737. .scrollbar.horizontal.fine-tune .slider {
  1738. margin-top: 5px; }
  1739. .scrollbar.horizontal .trough {
  1740. border-top-style: solid; }
  1741.  
  1742. .scrollbars-junction,
  1743. .scrollbars-junction.frame {
  1744. border-color: transparent;
  1745. border-image: linear-gradient(to bottom, #292929 1px, transparent 1px) 0 0 0 1/0 1px stretch;
  1746. background-color: #3d3d3d; }
  1747. .scrollbars-junction:dir(rtl),
  1748. .scrollbars-junction.frame:dir(rtl) {
  1749. border-image-slice: 0 1 0 0; }
  1750.  
  1751. GtkSwitch {
  1752. font: 1;
  1753. -GtkSwitch-slider-width: 52;
  1754. -GtkSwitch-slider-height: 24;
  1755. outline-color: transparent; }
  1756. GtkSwitch.trough, GtkSwitch.slider {
  1757. background-size: 52px 24px;
  1758. background-repeat: no-repeat;
  1759. background-position: right center;
  1760. color: transparent;
  1761. border-color: transparent;
  1762. border-image: none;
  1763. border-style: none;
  1764. box-shadow: none; }
  1765. GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) {
  1766. background-position: left center; }
  1767.  
  1768. GtkSwitch.trough {
  1769. background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); }
  1770.  
  1771. .list-row:selected GtkSwitch.trough,
  1772. GtkInfoBar GtkSwitch.trough {
  1773. background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); }
  1774.  
  1775. .header-bar GtkSwitch.trough,
  1776. .primary-toolbar GtkSwitch.trough,
  1777. .primary-toolbar .toolbar GtkSwitch.trough,
  1778. .primary-toolbar .inline-toolbar GtkSwitch.trough {
  1779. background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); }
  1780.  
  1781. GtkSwitch.trough:active {
  1782. background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); }
  1783.  
  1784. .list-row:selected GtkSwitch.trough:active,
  1785. GtkInfoBar GtkSwitch.trough:active {
  1786. background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); }
  1787.  
  1788. .header-bar GtkSwitch.trough:active,
  1789. .primary-toolbar GtkSwitch.trough:active,
  1790. .primary-toolbar .toolbar GtkSwitch.trough:active,
  1791. .primary-toolbar .inline-toolbar GtkSwitch.trough:active {
  1792. background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); }
  1793.  
  1794. GtkSwitch.trough:insensitive {
  1795. background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); }
  1796.  
  1797. .list-row:selected GtkSwitch.trough:insensitive,
  1798. GtkInfoBar GtkSwitch.trough:insensitive {
  1799. background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); }
  1800.  
  1801. .header-bar GtkSwitch.trough:insensitive,
  1802. .primary-toolbar GtkSwitch.trough:insensitive,
  1803. .primary-toolbar .toolbar GtkSwitch.trough:insensitive,
  1804. .primary-toolbar .inline-toolbar GtkSwitch.trough:insensitive {
  1805. background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); }
  1806.  
  1807. GtkSwitch.trough:active:insensitive {
  1808. background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); }
  1809.  
  1810. .list-row:selected GtkSwitch.trough:active:insensitive,
  1811. GtkInfoBar GtkSwitch.trough:active:insensitive {
  1812. background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); }
  1813.  
  1814. .header-bar GtkSwitch.trough:active:insensitive,
  1815. .primary-toolbar GtkSwitch.trough:active:insensitive,
  1816. .primary-toolbar .toolbar GtkSwitch.trough:active:insensitive,
  1817. .primary-toolbar .inline-toolbar GtkSwitch.trough:active:insensitive {
  1818. background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); }
  1819.  
  1820. .check {
  1821. -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); }
  1822.  
  1823. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check,
  1824. GtkFileChooserDialog .dialog-vbox > .frame .check {
  1825. -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); }
  1826.  
  1827. GtkTreeView.view.check:selected,
  1828. .list-row:selected .check,
  1829. GtkInfoBar .check {
  1830. -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); }
  1831.  
  1832. .check:insensitive {
  1833. -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); }
  1834.  
  1835. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive,
  1836. GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive {
  1837. -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); }
  1838.  
  1839. GtkTreeView.view.check:insensitive:selected,
  1840. .list-row:selected .check:insensitive,
  1841. GtkInfoBar .check:insensitive {
  1842. -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); }
  1843.  
  1844. .check:inconsistent {
  1845. -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); }
  1846.  
  1847. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent,
  1848. GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent {
  1849. -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); }
  1850.  
  1851. GtkTreeView.view.check:inconsistent:selected,
  1852. .list-row:selected .check:inconsistent,
  1853. GtkInfoBar .check:inconsistent {
  1854. -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); }
  1855.  
  1856. .check:inconsistent:insensitive {
  1857. -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); }
  1858.  
  1859. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive,
  1860. GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive {
  1861. -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); }
  1862.  
  1863. GtkTreeView.view.check:inconsistent:insensitive:selected,
  1864. .list-row:selected .check:inconsistent:insensitive,
  1865. GtkInfoBar .check:inconsistent:insensitive {
  1866. -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); }
  1867.  
  1868. .check:checked {
  1869. -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); }
  1870.  
  1871. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked,
  1872. GtkFileChooserDialog .dialog-vbox > .frame .check:checked {
  1873. -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); }
  1874.  
  1875. GtkTreeView.view.check:checked:selected,
  1876. .list-row:selected .check:checked,
  1877. GtkInfoBar .check:checked {
  1878. -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); }
  1879.  
  1880. .check:checked:insensitive {
  1881. -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); }
  1882.  
  1883. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive,
  1884. GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive {
  1885. -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); }
  1886.  
  1887. GtkTreeView.view.check:checked:insensitive:selected,
  1888. .list-row:selected .check:checked:insensitive,
  1889. GtkInfoBar .check:checked:insensitive {
  1890. -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); }
  1891.  
  1892. .radio {
  1893. -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); }
  1894.  
  1895. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio,
  1896. GtkFileChooserDialog .dialog-vbox > .frame .radio {
  1897. -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); }
  1898.  
  1899. GtkTreeView.view.radio:selected,
  1900. .list-row:selected .radio,
  1901. GtkInfoBar .radio {
  1902. -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); }
  1903.  
  1904. .radio:insensitive {
  1905. -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); }
  1906.  
  1907. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive,
  1908. GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive {
  1909. -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); }
  1910.  
  1911. GtkTreeView.view.radio:insensitive:selected,
  1912. .list-row:selected .radio:insensitive,
  1913. GtkInfoBar .radio:insensitive {
  1914. -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); }
  1915.  
  1916. .radio:inconsistent {
  1917. -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); }
  1918.  
  1919. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent,
  1920. GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent {
  1921. -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); }
  1922.  
  1923. GtkTreeView.view.radio:inconsistent:selected,
  1924. .list-row:selected .radio:inconsistent,
  1925. GtkInfoBar .radio:inconsistent {
  1926. -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); }
  1927.  
  1928. .radio:inconsistent:insensitive {
  1929. -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); }
  1930.  
  1931. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive,
  1932. GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive {
  1933. -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); }
  1934.  
  1935. GtkTreeView.view.radio:inconsistent:insensitive:selected,
  1936. .list-row:selected .radio:inconsistent:insensitive,
  1937. GtkInfoBar .radio:inconsistent:insensitive {
  1938. -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); }
  1939.  
  1940. .radio:checked {
  1941. -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); }
  1942.  
  1943. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked,
  1944. GtkFileChooserDialog .dialog-vbox > .frame .radio:checked {
  1945. -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); }
  1946.  
  1947. GtkTreeView.view.radio:checked:selected,
  1948. .list-row:selected .radio:checked,
  1949. GtkInfoBar .radio:checked {
  1950. -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); }
  1951.  
  1952. .radio:checked:insensitive {
  1953. -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); }
  1954.  
  1955. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive,
  1956. GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive {
  1957. -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); }
  1958.  
  1959. GtkTreeView.view.radio:checked:insensitive:selected,
  1960. .list-row:selected .radio:checked:insensitive,
  1961. GtkInfoBar .radio:checked:insensitive {
  1962. -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); }
  1963.  
  1964. .view.content-view.check:not(.list) {
  1965. -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png"));
  1966. background-color: transparent; }
  1967.  
  1968. .view.content-view.check:checked:not(.list) {
  1969. -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@2.png"));
  1970. background-color: transparent; }
  1971.  
  1972. GtkCheckButton.text-button, GtkRadioButton.text-button {
  1973. padding: 1px 2px 4px;
  1974. outline-offset: 0; }
  1975. GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent {
  1976. color: rgba(218, 218, 218, 0.55); }
  1977.  
  1978. .scale {
  1979. -GtkScale-slider-length: 15;
  1980. -GtkRange-slider-width: 15;
  1981. -GtkRange-trough-border: 0;
  1982. outline-offset: -1px;
  1983. outline-radius: 2px;
  1984. color: alpha(currentColor,0.7); }
  1985. .scale.trough {
  1986. margin: 5px; }
  1987. .scale.fine-tune.trough {
  1988. border-radius: 5px;
  1989. margin: 3px; }
  1990. .scale.slider {
  1991. background-clip: border-box;
  1992. background-image: linear-gradient(to bottom, #454545);
  1993. border: 1px solid #242424;
  1994. border-radius: 50%;
  1995. box-shadow: none; }
  1996. .scale.slider:insensitive {
  1997. background-image: linear-gradient(to bottom, #3c3c3c);
  1998. border-color: rgba(36, 36, 36, 0.8); }
  1999. .scale.slider:active {
  2000. background-image: linear-gradient(to bottom, #8fa876);
  2001. border-color: #8fa876; }
  2002. .osd .scale.slider {
  2003. background-image: linear-gradient(to bottom, #353535);
  2004. border-color: #8fa876; }
  2005. .osd .scale.slider:hover {
  2006. background-image: linear-gradient(to bottom, #8fa876); }
  2007. .osd .scale.slider:active {
  2008. background-image: linear-gradient(to bottom, #76905b);
  2009. border-color: #76905b; }
  2010. .list-row:selected .scale.slider, GtkInfoBar .scale.slider {
  2011. background-image: linear-gradient(to bottom, #ffffff);
  2012. border-color: #ffffff; }
  2013. .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover {
  2014. background-image: linear-gradient(to bottom, #eef2ea);
  2015. border-color: #eef2ea; }
  2016. .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active {
  2017. background-image: linear-gradient(to bottom, #c7d4bb);
  2018. border-color: #c7d4bb; }
  2019. .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive {
  2020. background-image: linear-gradient(to bottom, #cdd8c1);
  2021. border-color: #cdd8c1; }
  2022. .scale.trough {
  2023. border: none;
  2024. border-radius: 2.5px;
  2025. background-image: linear-gradient(to bottom, #2b2b2b); }
  2026. .scale.trough.highlight {
  2027. background-image: linear-gradient(to bottom, #8fa876); }
  2028. .scale.trough.highlight:insensitive {
  2029. background-image: linear-gradient(to bottom, rgba(143, 168, 118, 0.55)); }
  2030. .scale.trough:insensitive {
  2031. background-image: linear-gradient(to bottom, rgba(43, 43, 43, 0.55)); }
  2032. .osd .scale.trough {
  2033. background-image: linear-gradient(to bottom, #474747);
  2034. outline-color: rgba(195, 195, 195, 0.2); }
  2035. .osd .scale.trough.highlight {
  2036. background-image: none;
  2037. background-image: linear-gradient(to bottom, #8fa876); }
  2038. .list-row:selected .scale.trough, GtkInfoBar .scale.trough {
  2039. background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); }
  2040. .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight {
  2041. background-image: linear-gradient(to bottom, #ffffff); }
  2042. .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive {
  2043. background-image: linear-gradient(to bottom, #cdd8c1); }
  2044. .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive {
  2045. background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); }
  2046.  
  2047. GtkProgressBar {
  2048. padding: 0;
  2049. font-size: smaller;
  2050. color: rgba(218, 218, 218, 0.7); }
  2051. GtkProgressBar.osd {
  2052. -GtkProgressBar-xspacing: 0;
  2053. -GtkProgressBar-yspacing: 0;
  2054. -GtkProgressBar-min-horizontal-bar-height: 3; }
  2055.  
  2056. .progressbar {
  2057. background-color: #8fa876;
  2058. border: none;
  2059. border-radius: 3px;
  2060. box-shadow: none; }
  2061. .progressbar.osd {
  2062. background-color: #8fa876; }
  2063. .list-row:selected .progressbar, GtkInfoBar .progressbar {
  2064. background-color: #ffffff; }
  2065.  
  2066. .osd .scale.progressbar {
  2067. background-color: #8fa876; }
  2068.  
  2069. GtkProgressBar.trough, .level-bar.trough {
  2070. border: none;
  2071. border-radius: 3px;
  2072. background-color: #2b2b2b; }
  2073. GtkProgressBar.trough.osd, .osd.level-bar.trough {
  2074. border-style: none;
  2075. background-color: transparent;
  2076. box-shadow: none; }
  2077. .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, GtkInfoBar GtkProgressBar.trough, GtkInfoBar .level-bar.trough {
  2078. background-color: rgba(0, 0, 0, 0.2); }
  2079.  
  2080. GtkLevelBar {
  2081. -GtkLevelBar-min-block-width: 34;
  2082. -GtkLevelBar-min-block-height: 3; }
  2083. GtkLevelBar.vertical {
  2084. -GtkLevelBar-min-block-width: 3;
  2085. -GtkLevelBar-min-block-height: 34; }
  2086.  
  2087. .level-bar.trough {
  2088. padding: 3px;
  2089. border-radius: 4px; }
  2090. .level-bar.fill-block {
  2091. border: 1px solid #8fa876;
  2092. background-color: #8fa876;
  2093. border-radius: 2px; }
  2094. .level-bar.fill-block.indicator-discrete.horizontal {
  2095. margin: 0 1px; }
  2096. .level-bar.fill-block.indicator-discrete.vertical {
  2097. margin: 1px 0; }
  2098. .level-bar.fill-block.level-high {
  2099. border-color: #73d216;
  2100. background-color: #73d216; }
  2101. .level-bar.fill-block.level-low {
  2102. border-color: #f27835;
  2103. background-color: #f27835; }
  2104. .level-bar.fill-block.empty-fill-block {
  2105. background-color: #404040;
  2106. border-color: #404040; }
  2107.  
  2108. .frame {
  2109. border: 1px solid #292929;
  2110. padding: 0; }
  2111. .frame.flat {
  2112. border-style: none; }
  2113. .frame.action-bar {
  2114. padding: 6px;
  2115. border-width: 1px 0 0; }
  2116.  
  2117. GtkScrolledWindow GtkViewport.frame {
  2118. border-style: none; }
  2119.  
  2120. .separator, .sidebar.separator, .sidebar .view.separator {
  2121. color: rgba(0, 0, 0, 0.1); }
  2122. GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton .sidebar.separator, GtkFontButton .sidebar .view.separator, .sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton .sidebar .vertical.view.separator, .sidebar GtkFontButton .vertical.view.separator {
  2123. -GtkWidget-wide-separators: true; }
  2124.  
  2125. .list {
  2126. background-color: #404040;
  2127. border-color: #292929; }
  2128.  
  2129. .list-row,
  2130. .grid-child {
  2131. padding: 2px; }
  2132.  
  2133. .list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup {
  2134. background-color: rgba(255, 255, 255, 0.03); }
  2135. .list-row.activatable:active {
  2136. color: #DADADA; }
  2137. .list-row.activatable:selected:active {
  2138. color: #ffffff; }
  2139. .list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected {
  2140. background-color: #81976a; }
  2141. .list-row.activatable:selected:insensitive {
  2142. color: rgba(255, 255, 255, 0.7);
  2143. background-color: rgba(143, 168, 118, 0.7); }
  2144. .list-row.activatable:selected:insensitive .label {
  2145. color: inherit; }
  2146.  
  2147. .list-row, list-row.activatable {
  2148. transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  2149. .list-row:hover, list-row.activatable:hover {
  2150. transition: none; }
  2151.  
  2152. .app-notification,
  2153. .app-notification.frame {
  2154. padding: 10px;
  2155. color: #C3C3C3;
  2156. background-color: #353535;
  2157. background-clip: border-box;
  2158. border-radius: 0 0 2px 2px;
  2159. border-width: 0 1px 1px 1px;
  2160. border-style: solid;
  2161. border-color: #1c1c1c; }
  2162. .app-notification .button,
  2163. .app-notification.frame .button {
  2164. color: #C3C3C3;
  2165. outline-color: rgba(195, 195, 195, 0.3);
  2166. border-color: rgba(22, 22, 22, 0.4);
  2167. background-color: rgba(109, 109, 109, 0.4); }
  2168. .app-notification .button.flat, .app-notification .sidebar-button.button,
  2169. .app-notification.frame .button.flat,
  2170. .app-notification.frame .sidebar-button.button {
  2171. border-color: rgba(143, 168, 118, 0); }
  2172. .app-notification .button:hover,
  2173. .app-notification.frame .button:hover {
  2174. color: #C3C3C3;
  2175. outline-color: rgba(195, 195, 195, 0.3);
  2176. border-color: rgba(22, 22, 22, 0.4);
  2177. background-color: rgba(127, 127, 127, 0.5); }
  2178. .app-notification .button:active, .app-notification .button:checked,
  2179. .app-notification.frame .button:active,
  2180. .app-notification.frame .button:checked {
  2181. color: #ffffff;
  2182. outline-color: rgba(255, 255, 255, 0.3);
  2183. border-color: rgba(22, 22, 22, 0.4);
  2184. background-color: #8fa876;
  2185. background-clip: padding-box; }
  2186. .app-notification .button:insensitive,
  2187. .app-notification.frame .button:insensitive {
  2188. color: #606060;
  2189. border-color: rgba(22, 22, 22, 0.4);
  2190. background-color: rgba(109, 109, 109, 0.25); }
  2191.  
  2192. .expander {
  2193. -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
  2194. .expander:dir(rtl) {
  2195. -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); }
  2196. .expander:hover {
  2197. color: white; }
  2198. .expander:checked {
  2199. -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
  2200.  
  2201. GtkCalendar {
  2202. color: #DADADA;
  2203. border: 1px solid #292929;
  2204. border-radius: 3px;
  2205. padding: 2px; }
  2206. GtkCalendar:selected {
  2207. background-color: #8fa876;
  2208. color: #ffffff;
  2209. border-radius: 1.5px; }
  2210. GtkCalendar.header {
  2211. color: #DADADA;
  2212. border: none;
  2213. border-radius: 0; }
  2214. GtkCalendar.button, GtkCalendar.button:focus {
  2215. color: rgba(218, 218, 218, 0.45);
  2216. border-color: transparent;
  2217. background-color: transparent;
  2218. background-image: none; }
  2219. GtkCalendar.button:hover, GtkCalendar.button:focus:hover {
  2220. color: #DADADA; }
  2221. GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive {
  2222. color: rgba(218, 218, 218, 0.55);
  2223. background-color: transparent;
  2224. background-image: none; }
  2225. GtkCalendar:inconsistent {
  2226. color: alpha(currentColor,0.55); }
  2227. GtkCalendar.highlight {
  2228. color: #DADADA; }
  2229.  
  2230. .dialog-action-area .button.text-button {
  2231. padding: 6px 16px; }
  2232.  
  2233. .message-dialog .dialog-action-area .button {
  2234. padding: 8px; }
  2235.  
  2236. .message-dialog {
  2237. -GtkDialog-button-spacing: 0; }
  2238. .message-dialog .titlebar {
  2239. background-color: #2f2f2f;
  2240. border-bottom: 1px solid #1d1d1d; }
  2241. .message-dialog.csd.background {
  2242. border-bottom-left-radius: 3px;
  2243. border-bottom-right-radius: 3px;
  2244. border: none; }
  2245. .message-dialog.csd .dialog-action-area .button {
  2246. padding: 8px;
  2247. border-radius: 0; }
  2248. .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive {
  2249. border-right-style: none;
  2250. border-bottom-style: none; }
  2251. .message-dialog.csd .dialog-action-area .button:last-child {
  2252. border-bottom-right-radius: 3px; }
  2253. .message-dialog.csd .dialog-action-area .button:first-child {
  2254. border-left-style: none;
  2255. border-bottom-left-radius: 3px; }
  2256.  
  2257. GtkFileChooserDialog .search-bar {
  2258. background-color: #383838;
  2259. border-color: #292929;
  2260. box-shadow: none; }
  2261. GtkFileChooserDialog .dialog-action-box {
  2262. border-top: 1px solid #292929; }
  2263.  
  2264. .sidebar, .sidebar .view {
  2265. border: none;
  2266. background-color: #383838; }
  2267.  
  2268. GtkSidebarRow.list-row {
  2269. padding: 0px; }
  2270. GtkSidebarRow .sidebar-revealer {
  2271. padding: 3px 14px 3px 12px; }
  2272. GtkSidebarRow .sidebar-icon:dir(ltr) {
  2273. padding-right: 8px; }
  2274. GtkSidebarRow .sidebar-icon:dir(rtl) {
  2275. padding-left: 8px; }
  2276. GtkSidebarRow .sidebar-label:dir(ltr) {
  2277. padding-right: 2px; }
  2278. GtkSidebarRow .sidebar-label:dir(rtl) {
  2279. padding-left: 2px; }
  2280.  
  2281. GtkPlacesSidebar.sidebar .sidebar-placeholder-row {
  2282. border: solid 1px #8fa876; }
  2283. GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row {
  2284. background-color: #1f1f1f; }
  2285. GtkPlacesSidebar.sidebar .list-row.activatable {
  2286. color: rgba(218, 218, 218, 0.8);
  2287. border-width: 0;
  2288. border-style: solid; }
  2289. .sidebar-button.button {
  2290. outline-radius: 50%;
  2291. border-radius: 50%; }
  2292. .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton,
  2293. .titlebar .sidebar-button.button.titlebutton {
  2294. padding: 3px; }
  2295. .sidebar-button.button:not(:hover):not(:active) > GtkImage {
  2296. opacity: 0.5; }
  2297.  
  2298. .sidebar-item {
  2299. padding: 10px 4px; }
  2300. .sidebar-item > GtkLabel {
  2301. padding-left: 6px;
  2302. padding-right: 6px; }
  2303. .sidebar-item.needs-attention > GtkLabel {
  2304. background-size: 6px 6px, 0 0; }
  2305.  
  2306. GtkPlacesView .server-list-button > GtkImage {
  2307. transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  2308. -gtk-icon-transform: rotate(0turn); }
  2309. GtkPlacesView .server-list-button:checked > GtkImage {
  2310. transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  2311. -gtk-icon-transform: rotate(-0.5turn); }
  2312. GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup {
  2313. background-color: transparent; }
  2314.  
  2315. GtkPaned {
  2316. -GtkPaned-handle-size: 1;
  2317. -gtk-icon-source: none;
  2318. margin: 0 8px 8px 0; }
  2319. GtkPaned:dir(rtl) {
  2320. margin-right: 0;
  2321. margin-left: 8px; }
  2322. GtkPaned .pane-separator {
  2323. background-color: #292929; }
  2324.  
  2325. GtkPaned.wide {
  2326. -GtkPaned-handle-size: 5;
  2327. margin: 0; }
  2328. GtkPaned.wide .pane-separator {
  2329. background-color: transparent;
  2330. border-style: none;
  2331. background-image: -gtk-scaled(url("assets/pane-separator-vertical.png"), url("assets/pane-separator-vertical@2.png"));
  2332. background-repeat: no-repeat;
  2333. background-position: center; }
  2334. GtkPaned.wide.vertical .pane-separator {
  2335. color: #DADADA;
  2336. background-color: transparent;
  2337. border-style: none;
  2338. background-image: -gtk-scaled(url("assets/pane-separator.png"), url("assets/pane-separator@2.png"));
  2339. background-repeat: no-repeat;
  2340. background-position: center; }
  2341.  
  2342. GtkInfoBar {
  2343. border-style: none; }
  2344.  
  2345. .info,
  2346. .question,
  2347. .warning,
  2348. .error {
  2349. background-color: #8fa876;
  2350. color: #ffffff; }
  2351.  
  2352. .warning {
  2353. background-color: #f27835; }
  2354.  
  2355. .error {
  2356. background-color: #F04A50; }
  2357.  
  2358. .question {
  2359. background-color: #55c1ec; }
  2360.  
  2361. .list-row:selected .button, GtkInfoBar .button {
  2362. color: #ffffff;
  2363. outline-color: rgba(255, 255, 255, 0.3);
  2364. background-color: rgba(255, 255, 255, 0);
  2365. border-color: rgba(255, 255, 255, 0.5); }
  2366. .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button {
  2367. border-color: transparent;
  2368. background-color: transparent;
  2369. background-image: none;
  2370. color: #ffffff;
  2371. background-color: rgba(255, 255, 255, 0); }
  2372. .list-row:selected .button:hover, GtkInfoBar .button:hover {
  2373. color: #ffffff;
  2374. outline-color: rgba(255, 255, 255, 0.3);
  2375. background-color: rgba(255, 255, 255, 0.2);
  2376. border-color: rgba(255, 255, 255, 0.8); }
  2377. .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked {
  2378. color: #8fa876;
  2379. outline-color: rgba(143, 168, 118, 0.3);
  2380. background-color: #ffffff;
  2381. border-color: #ffffff; }
  2382. .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive {
  2383. color: rgba(255, 255, 255, 0.4);
  2384. background-color: rgba(255, 255, 255, 0);
  2385. border-color: rgba(255, 255, 255, 0.2); }
  2386. .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked {
  2387. color: rgba(143, 168, 118, 0.4);
  2388. background-color: rgba(255, 255, 255, 0.2);
  2389. border-color: rgba(255, 255, 255, 0.2); }
  2390.  
  2391. .tooltip {
  2392. color: #4a4a4a;
  2393. border-radius: 2px;
  2394. border: 1px solid #d0d0d0; }
  2395. .tooltip.background {
  2396. background-color: #fbeaa0;
  2397. background-clip: padding-box; }
  2398. .tooltip.window-frame.csd {
  2399. background-color: transparent; }
  2400.  
  2401. .tooltip * {
  2402. padding: 4px;
  2403. background-color: transparent;
  2404. color: inherit; }
  2405.  
  2406. :selected GtkColorSwatch {
  2407. box-shadow: none; }
  2408. :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover {
  2409. border-color: #ffffff; }
  2410. GtkColorSwatch.top {
  2411. border-top-left-radius: 3px;
  2412. border-top-right-radius: 3px; }
  2413. GtkColorSwatch.bottom {
  2414. border-bottom-left-radius: 3px;
  2415. border-bottom-right-radius: 3px; }
  2416. GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay {
  2417. border-top-left-radius: 3px;
  2418. border-bottom-left-radius: 3px; }
  2419. GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay {
  2420. border-top-right-radius: 3px;
  2421. border-bottom-right-radius: 3px; }
  2422. GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay {
  2423. border-radius: 3px; }
  2424. GtkColorSwatch:hover, GtkColorSwatch:hover:selected {
  2425. background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); }
  2426. GtkColorEditor GtkColorSwatch {
  2427. border-radius: 3px; }
  2428. GtkColorEditor GtkColorSwatch:hover {
  2429. background-image: none; }
  2430. GtkColorSwatch.color-dark {
  2431. color: white;
  2432. outline-color: rgba(0, 0, 0, 0.3); }
  2433. GtkColorSwatch.color-light {
  2434. color: black;
  2435. outline-color: rgba(255, 255, 255, 0.5); }
  2436. GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected {
  2437. border: 1px solid rgba(0, 0, 0, 0.15); }
  2438. GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover {
  2439. border-color: rgba(0, 0, 0, 0.25); }
  2440. GtkColorSwatch#add-color-button {
  2441. border-style: solid;
  2442. border-width: 1px;
  2443. color: #DADADA;
  2444. outline-color: rgba(218, 218, 218, 0.3);
  2445. border-color: #292929;
  2446. background-color: #454545; }
  2447. GtkColorSwatch#add-color-button:hover {
  2448. color: #DADADA;
  2449. outline-color: rgba(218, 218, 218, 0.3);
  2450. border-color: #292929;
  2451. background-color: #525252; }
  2452. GtkColorSwatch#add-color-button .overlay {
  2453. border-color: transparent;
  2454. background-color: transparent;
  2455. background-image: none; }
  2456.  
  2457. GtkColorButton.button {
  2458. padding: 5px; }
  2459. GtkColorButton.button GtkColorSwatch {
  2460. border-radius: 0; }
  2461.  
  2462. .content-view {
  2463. background-color: #404040; }
  2464. .content-view:hover {
  2465. -gtk-image-effect: highlight; }
  2466.  
  2467. .scale-popup .button {
  2468. padding: 6px; }
  2469. .scale-popup .button:hover {
  2470. color: #DADADA;
  2471. outline-color: rgba(218, 218, 218, 0.3);
  2472. border-color: #292929;
  2473. background-color: #525252; }
  2474.  
  2475. GtkVolumeButton.button {
  2476. padding: 8px; }
  2477.  
  2478. .touch-selection,
  2479. .context-menu {
  2480. font: initial; }
  2481.  
  2482. .monospace {
  2483. font: Monospace; }
  2484.  
  2485. .overshoot.top {
  2486. background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0)));
  2487. background-size: 100% 60%;
  2488. background-repeat: no-repeat;
  2489. background-position: center top;
  2490. background-color: transparent;
  2491. border: none;
  2492. box-shadow: none; }
  2493. .overshoot.bottom {
  2494. background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0)));
  2495. background-size: 100% 60%;
  2496. background-repeat: no-repeat;
  2497. background-position: center bottom;
  2498. background-color: transparent;
  2499. border: none;
  2500. box-shadow: none; }
  2501. .overshoot.left {
  2502. background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0)));
  2503. background-size: 60% 100%;
  2504. background-repeat: no-repeat;
  2505. background-position: left center;
  2506. background-color: transparent;
  2507. border: none;
  2508. box-shadow: none; }
  2509. .overshoot.right {
  2510. background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0)));
  2511. background-size: 60% 100%;
  2512. background-repeat: no-repeat;
  2513. background-position: right center;
  2514. background-color: transparent;
  2515. border: none;
  2516. box-shadow: none; }
  2517.  
  2518. .undershoot.top {
  2519. background-color: transparent;
  2520. background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%);
  2521. padding-top: 1px;
  2522. background-size: 10px 1px;
  2523. background-repeat: repeat-x;
  2524. background-origin: content-box;
  2525. background-position: center top; }
  2526. .undershoot.bottom {
  2527. background-color: transparent;
  2528. background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%);
  2529. padding-bottom: 1px;
  2530. background-size: 10px 1px;
  2531. background-repeat: repeat-x;
  2532. background-origin: content-box;
  2533. background-position: center bottom; }
  2534. .undershoot.left {
  2535. background-color: transparent;
  2536. background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%);
  2537. padding-left: 1px;
  2538. background-size: 1px 10px;
  2539. background-repeat: repeat-y;
  2540. background-origin: content-box;
  2541. background-position: left center; }
  2542. .undershoot.right {
  2543. background-color: transparent;
  2544. background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%);
  2545. padding-right: 1px;
  2546. background-size: 1px 10px;
  2547. background-repeat: repeat-y;
  2548. background-origin: content-box;
  2549. background-position: right center; }
  2550.  
  2551. .window-frame {
  2552. border-radius: 3px 3px 0 0;
  2553. border-width: 0px;
  2554. box-shadow: 0 0 0 1px #1d1d1d, 0 8px 8px 0 rgba(0, 0, 0, 0.35);
  2555. margin: 10px; }
  2556. .window-frame:backdrop {
  2557. box-shadow: 0 0 0 1px rgba(29, 29, 29, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.35); }
  2558. .window-frame.tiled {
  2559. border-radius: 0; }
  2560. .window-frame.popup {
  2561. box-shadow: none;
  2562. border-radius: 0; }
  2563. .window-frame.ssd {
  2564. border-radius: 3px 3px 0 0;
  2565. box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); }
  2566. .window-frame.ssd.maximized {
  2567. border-radius: 0; }
  2568. .window-frame.csd.popup {
  2569. border-radius: 2px;
  2570. box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #1f1f1f; }
  2571. .window-frame.csd.tooltip {
  2572. border-radius: 2px;
  2573. box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.55); }
  2574. .window-frame.csd.message-dialog {
  2575. border-radius: 3px; }
  2576. .window-frame.solid-csd {
  2577. border-radius: 0;
  2578. margin: 1px;
  2579. background-color: #2f2f2f;
  2580. box-shadow: none; }
  2581.  
  2582. .header-bar.default-decoration .button.titlebutton,
  2583. .titlebar.default-decoration .button.titlebutton {
  2584. padding-top: 0px;
  2585. padding-bottom: 0px; }
  2586. .header-bar .button.titlebutton,
  2587. .titlebar .button.titlebutton {
  2588. padding: 8px 4px;
  2589. border-color: transparent;
  2590. background-color: transparent;
  2591. background-image: none;
  2592. background-color: rgba(47, 47, 47, 0); }
  2593. .header-bar .button.titlebutton:hover,
  2594. .titlebar .button.titlebutton:hover {
  2595. color: #ded6d6;
  2596. outline-color: rgba(222, 214, 214, 0.3);
  2597. border-color: rgba(16, 16, 16, 0.4);
  2598. background-color: rgba(103, 103, 103, 0.4); }
  2599. .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked,
  2600. .titlebar .button.titlebutton:active,
  2601. .titlebar .button.titlebutton:checked {
  2602. color: #ffffff;
  2603. outline-color: rgba(255, 255, 255, 0.3);
  2604. border-color: transparent;
  2605. background-color: #8fa876; }
  2606. .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize,
  2607. .titlebar .button.titlebutton.close,
  2608. .titlebar .button.titlebutton.maximize,
  2609. .titlebar .button.titlebutton.minimize {
  2610. color: transparent;
  2611. background-color: transparent;
  2612. background-position: center;
  2613. background-repeat: no-repeat;
  2614. border-width: 0; }
  2615. .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop,
  2616. .titlebar .button.titlebutton.close:backdrop,
  2617. .titlebar .button.titlebutton.maximize:backdrop,
  2618. .titlebar .button.titlebutton.minimize:backdrop {
  2619. opacity: 1; }
  2620. .header-bar .button.titlebutton.close,
  2621. .titlebar .button.titlebutton.close {
  2622. background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); }
  2623. .header-bar .button.titlebutton.close:backdrop,
  2624. .titlebar .button.titlebutton.close:backdrop {
  2625. background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); }
  2626. .header-bar .button.titlebutton.close:hover,
  2627. .titlebar .button.titlebutton.close:hover {
  2628. background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); }
  2629. .header-bar .button.titlebutton.close:active,
  2630. .titlebar .button.titlebutton.close:active {
  2631. background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); }
  2632. .header-bar .button.titlebutton.maximize,
  2633. .titlebar .button.titlebutton.maximize {
  2634. background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); }
  2635. .header-bar .button.titlebutton.maximize:backdrop,
  2636. .titlebar .button.titlebutton.maximize:backdrop {
  2637. background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); }
  2638. .header-bar .button.titlebutton.maximize:hover,
  2639. .titlebar .button.titlebutton.maximize:hover {
  2640. background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); }
  2641. .header-bar .button.titlebutton.maximize:active,
  2642. .titlebar .button.titlebutton.maximize:active {
  2643. background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); }
  2644. .header-bar .button.titlebutton.minimize,
  2645. .titlebar .button.titlebutton.minimize {
  2646. background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); }
  2647. .header-bar .button.titlebutton.minimize:backdrop,
  2648. .titlebar .button.titlebutton.minimize:backdrop {
  2649. background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); }
  2650. .header-bar .button.titlebutton.minimize:hover,
  2651. .titlebar .button.titlebutton.minimize:hover {
  2652. background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); }
  2653. .header-bar .button.titlebutton.minimize:active,
  2654. .titlebar .button.titlebutton.minimize:active {
  2655. background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); }
  2656.  
  2657. .view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active,
  2658. NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected,
  2659. NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover,
  2660. NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected,
  2661. NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover,
  2662. NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active {
  2663. background-image: none;
  2664. background-color: #8fa876;
  2665. color: #ffffff;
  2666. outline-color: rgba(255, 255, 255, 0.3); }
  2667.  
  2668. GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover,
  2669. ScratchMainWindow .notebook tab.reorderable-page.top:active,
  2670. ScratchMainWindow .notebook tab.reorderable-page.top.active-page,
  2671. ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover,
  2672. ScratchMainWindow .notebook tab.top:active,
  2673. ScratchMainWindow .notebook tab.top.active-page,
  2674. ScratchMainWindow .notebook tab.top.active-page:hover,
  2675. EphyNotebook.notebook tab.reorderable-page.top:active,
  2676. EphyNotebook.notebook tab.reorderable-page.top.active-page,
  2677. EphyNotebook.notebook tab.reorderable-page.top.active-page:hover,
  2678. EphyNotebook.notebook tab.top:active,
  2679. EphyNotebook.notebook tab.top.active-page,
  2680. EphyNotebook.notebook tab.top.active-page:hover,
  2681. MidoriNotebook .notebook tab.reorderable-page.top:active,
  2682. MidoriNotebook .notebook tab.reorderable-page.top.active-page,
  2683. MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover,
  2684. MidoriNotebook .notebook tab.top:active,
  2685. MidoriNotebook .notebook tab.top.active-page,
  2686. MidoriNotebook .notebook tab.top.active-page:hover,
  2687. TerminalWindow .notebook tab.reorderable-page.top:active,
  2688. TerminalWindow .notebook tab.reorderable-page.top.active-page,
  2689. TerminalWindow .notebook tab.reorderable-page.top.active-page:hover,
  2690. TerminalWindow .notebook tab.top:active,
  2691. TerminalWindow .notebook tab.top.active-page,
  2692. TerminalWindow .notebook tab.top.active-page:hover,
  2693. PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active,
  2694. PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page,
  2695. PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover,
  2696. PantheonTerminalPantheonTerminalWindow .notebook tab.top:active,
  2697. PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page,
  2698. PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover {
  2699. box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; }
  2700.  
  2701. TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top,
  2702. PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top,
  2703. PantheonTerminalPantheonTerminalWindow .notebook tab.top {
  2704. padding-top: 7px;
  2705. border-top-width: 3px; }
  2706. TerminalWindow .notebook.header.top,
  2707. PantheonTerminalPantheonTerminalWindow .notebook.header.top {
  2708. box-shadow: inset 0 1px #252525, inset 0 -1px #292929; }
  2709.  
  2710. GtkHTML {
  2711. background-color: #404040;
  2712. color: #DADADA; }
  2713. GtkHTML:active {
  2714. color: #ffffff;
  2715. background-color: #8fa876; }
  2716.  
  2717. SushiFontWidget {
  2718. padding: 6px 12px; }
  2719.  
  2720. TerminalScreen {
  2721. -TerminalScreen-background-darkness: 0.9;
  2722. background-color: #3f3f3f;
  2723. color: #fff; }
  2724.  
  2725. TerminalScreenContainer .scrollbar:not(.slider) {
  2726. border-color: transparent;
  2727. background-color: transparent; }
  2728.  
  2729. TerminalWindow .notebook tab .button {
  2730. color: #a1a1a1; }
  2731. TerminalWindow .notebook tab .button:hover {
  2732. color: #DADADA;
  2733. border-color: #292929;
  2734. background-color: #454545; }
  2735. TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover {
  2736. color: #ff4d4d; }
  2737. TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active {
  2738. color: #8fa876; }
  2739.  
  2740. .nautilus-canvas-item {
  2741. border-radius: 2px; }
  2742.  
  2743. .nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item {
  2744. color: #ffffff;
  2745. text-shadow: 1px 1px rgba(0, 0, 0, 0.6); }
  2746. .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active {
  2747. color: #DADADA; }
  2748. .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected {
  2749. color: #ffffff; }
  2750.  
  2751. .nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle,
  2752. .nautilus-list-dim-label {
  2753. color: #898989; }
  2754. .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus,
  2755. .nautilus-list-dim-label:selected,
  2756. .nautilus-list-dim-label:selected:focus {
  2757. color: #e9eee4; }
  2758.  
  2759. NautilusNotebook.notebook {
  2760. background-color: #404040; }
  2761. NautilusNotebook.notebook tab {
  2762. border-width: 0;
  2763. border-style: solid;
  2764. border-color: transparent;
  2765. background-color: transparent; }
  2766.  
  2767. NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar {
  2768. padding: 5px;
  2769. box-shadow: none;
  2770. background-color: #404040; }
  2771.  
  2772. .nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton,
  2773. .titlebar .nautilus-circular-button.button.titlebutton {
  2774. border-radius: 50%;
  2775. outline-radius: 50%;
  2776. padding: 8px; }
  2777.  
  2778. .disk-space-display {
  2779. border-style: solid;
  2780. border-width: 1px; }
  2781. .disk-space-display.unknown {
  2782. background-color: rgba(218, 218, 218, 0.5);
  2783. border-color: rgba(193, 193, 193, 0.5); }
  2784. .disk-space-display.used {
  2785. background-color: rgba(143, 168, 118, 0.8);
  2786. border-color: rgba(118, 144, 91, 0.8); }
  2787. .disk-space-display.free {
  2788. background-color: #303030;
  2789. border-color: #171717; }
  2790.  
  2791. NautilusListView .view {
  2792. border-bottom: 1px solid #292929; }
  2793.  
  2794. NemoPlacesTreeView {
  2795. -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3;
  2796. -NemoPlacesTreeView-disk-full-fg-color: #76905b; }
  2797.  
  2798. NemoWindow EelEditableLabel.entry {
  2799. transition: none; }
  2800. NemoWindow .sidebar .frame {
  2801. border-width: 0; }
  2802. NemoWindow .sidebar .cell {
  2803. padding: 0 2px; }
  2804. NemoWindow .sidebar .scrollbar.vertical .trough {
  2805. background-color: transparent; }
  2806. NemoWindow .sidebar .scrollbar.vertical .slider {
  2807. background-color: #797979; }
  2808. NemoWindow .sidebar .scrollbar.vertical .slider:hover {
  2809. background-color: #585858; }
  2810. NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator {
  2811. color: #292929; }
  2812. NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button {
  2813. color: #ded6d6;
  2814. outline-color: rgba(222, 214, 214, 0.3);
  2815. border-color: rgba(16, 16, 16, 0.4);
  2816. background-color: rgba(103, 103, 103, 0.4); }
  2817. NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover {
  2818. background-color: rgba(141, 141, 141, 0.4); }
  2819. NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked {
  2820. color: #ffffff;
  2821. outline-color: rgba(255, 255, 255, 0.3);
  2822. border-color: transparent;
  2823. background-color: #8fa876; }
  2824. NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive {
  2825. color: rgba(222, 214, 214, 0.6); }
  2826. NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child) {
  2827. border-left-color: rgba(16, 16, 16, 0); }
  2828. NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child):last-child {
  2829. border-left-color: rgba(16, 16, 16, 0); }
  2830. NemoWindow .nemo-inactive-pane .view {
  2831. background-color: #333333; }
  2832. NemoWindow .nemo-inactive-pane .view:selected {
  2833. background-color: #8fa876;
  2834. color: #ffffff;
  2835. outline-color: rgba(255, 255, 255, 0.3); }
  2836.  
  2837. CajaWindow EelEditableLabel.entry {
  2838. transition: none; }
  2839. CajaWindow FMTreeView .view,
  2840. CajaWindow CajaNotesViewer .view,
  2841. CajaWindow CajaPlacesSidebar .view,
  2842. CajaWindow CajaHistorySidebar .view,
  2843. CajaWindow CajaInformationPanel GtkBox,
  2844. CajaWindow CajaEmblemSidebar GtkViewport {
  2845. background-color: #353535;
  2846. color: #C3C3C3;
  2847. border-width: 0px; }
  2848.  
  2849. .gedit-headerbar-paned {
  2850. color: #252525; }
  2851.  
  2852. .open-document-selector-treeview.view {
  2853. padding: 3px 6px 3px 6px;
  2854. border-color: #404040; }
  2855. .open-document-selector-treeview.view:prelight {
  2856. background-color: rgba(0, 0, 0, 0.05); }
  2857. .open-document-selector-treeview.view:prelight:selected {
  2858. color: #ffffff;
  2859. background-color: #8fa876; }
  2860.  
  2861. .open-document-selector-name-label {
  2862. color: #DADADA; }
  2863.  
  2864. .open-document-selector-path-label {
  2865. color: #8d8d8d;
  2866. font-size: smaller; }
  2867. .open-document-selector-path-label:selected {
  2868. color: rgba(255, 255, 255, 0.9); }
  2869.  
  2870. .gedit-document-panel .list-row .button {
  2871. color: transparent;
  2872. background-image: none;
  2873. background-color: transparent;
  2874. border: none;
  2875. box-shadow: none;
  2876. padding: 4px; }
  2877. .gedit-document-panel .list-row .button GtkImage {
  2878. color: inherit; }
  2879. .gedit-document-panel .prelight-row .button {
  2880. color: #a1a1a1; }
  2881. .gedit-document-panel .list-row .button:hover,
  2882. .gedit-document-panel .prelight-row .button:hover {
  2883. color: #ff4d4d; }
  2884. .gedit-document-panel .prelight-row:selected .button:hover {
  2885. color: #ff6666;
  2886. background-image: none;
  2887. background-color: transparent;
  2888. border: none;
  2889. box-shadow: none; }
  2890. .gedit-document-panel .prelight-row:selected .button:hover:active {
  2891. color: #ffffff; }
  2892. .gedit-document-panel .prelight-row .button:active {
  2893. color: #DADADA; }
  2894.  
  2895. .gedit-document-panel-dragged-row {
  2896. border: 1px solid #292929;
  2897. background-color: #1f1f1f;
  2898. color: #DADADA; }
  2899.  
  2900. GeditStatusbar {
  2901. border-top: 1px solid #292929;
  2902. background-color: #383838; }
  2903.  
  2904. GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button,
  2905. GeditStatusMenuButton:prelight.button.flat,
  2906. GeditStatusMenuButton.sidebar-button.button:prelight,
  2907. GeditStatusMenuButton:checked.button.flat,
  2908. GeditStatusMenuButton.sidebar-button.button:checked {
  2909. border-bottom-style: none;
  2910. border-radius: 0; }
  2911.  
  2912. GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar {
  2913. border-bottom: 1px solid #292929; }
  2914.  
  2915. .gedit-search-entry-occurrences-tag {
  2916. color: rgba(218, 218, 218, 0.6);
  2917. border: none;
  2918. margin: 2px;
  2919. padding: 2px; }
  2920.  
  2921. GeditViewFrame .gedit-search-slider, .xed-window .xed-goto-line-box {
  2922. background-color: #3d3d3d;
  2923. padding: 6px;
  2924. border-color: #292929;
  2925. border-radius: 0 0 2px 2px;
  2926. border-width: 0 1px 1px 1px;
  2927. border-style: solid; }
  2928.  
  2929. GbWorkbench .floating-bar {
  2930. color: #DADADA; }
  2931.  
  2932. GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr),
  2933. GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) {
  2934. padding: 0 10px;
  2935. color: #ded6d6;
  2936. border-color: rgba(16, 16, 16, 0.4);
  2937. background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4));
  2938. background-color: transparent; }
  2939. GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover,
  2940. GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image,
  2941. GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover {
  2942. color: inherit; }
  2943. GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover,
  2944. GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover {
  2945. color: #ded6d6;
  2946. border-color: #8fa876;
  2947. background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); }
  2948. GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked,
  2949. GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active,
  2950. GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked {
  2951. color: #ded6d6;
  2952. border-color: #8fa876;
  2953. background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); }
  2954. GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive,
  2955. GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive {
  2956. color: rgba(222, 214, 214, 0.55);
  2957. background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); }
  2958. GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr),
  2959. GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover,
  2960. GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active,
  2961. GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked {
  2962. border-left-style: none;
  2963. border-radius: 0 3px 3px 0;
  2964. outline-radius: 0 1px 1px 0; }
  2965. GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl),
  2966. GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover,
  2967. GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active,
  2968. GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked {
  2969. border-right-style: none;
  2970. border-radius: 3px 0 0 3px;
  2971. outline-radius: 1px 0 0 1px; }
  2972.  
  2973. GbPreferencesPageLanguage .entry {
  2974. border-radius: 3px 3px 0 0; }
  2975. GbPreferencesPageLanguage .frame {
  2976. border-top-width: 0; }
  2977.  
  2978. GbEditorTweakWidget .linked.vertical > .entry {
  2979. border-bottom-style: solid; }
  2980. GbEditorTweakWidget GtkScrolledWindow {
  2981. border-top: none; }
  2982.  
  2983. GbViewStack GtkBox.header.notebook {
  2984. border-bottom: 1px solid #292929; }
  2985.  
  2986. GbViewStack.focused GtkBox.header.notebook,
  2987. #project_sidebar_header.focused {
  2988. background-color: #404040; }
  2989.  
  2990. GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook {
  2991. border-bottom: 1px solid #292929; }
  2992.  
  2993. GbNewProjectDialog GtkFileChooserButton.linked-on-right .button {
  2994. border-radius: 3px 0 0 3px; }
  2995.  
  2996. GbWorkspacePane GtkBox.header.notebook {
  2997. border-bottom: 1px solid #292929; }
  2998.  
  2999. GbWorkspacePane:not(.focused) GtkBox.header.notebook {
  3000. background-color: #383838; }
  3001.  
  3002. DhSidebar GtkSearchEntry.entry,
  3003. SymbolTree GtkSearchEntry.entry {
  3004. border-left: none;
  3005. border-right: none;
  3006. border-top: none;
  3007. border-radius: 0px; }
  3008.  
  3009. GtkEntry.gb-command-bar-entry.entry.flat,
  3010. GtkEntry.gb-command-bar-entry.entry.flat:focus {
  3011. font-family: Monospace;
  3012. color: #C3C3C3;
  3013. background-image: none;
  3014. background-color: #353535;
  3015. padding: 6px 6px 6px 6px;
  3016. border: none; }
  3017.  
  3018. GbTerminalView {
  3019. background-color: #404040;
  3020. color: #DADADA; }
  3021.  
  3022. GbSourceStyleSchemeWidget GtkSourceView {
  3023. font-family: Monospace; }
  3024.  
  3025. GtkScrolledWindow.gb-linked-scroller {
  3026. border-top: none; }
  3027.  
  3028. GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button {
  3029. transition: none; }
  3030.  
  3031. GbViewStack GtkBox.header.notebook,
  3032. GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook {
  3033. border-bottom: 1px solid #292929; }
  3034.  
  3035. GbViewStack.focused GtkBox.header.notebook {
  3036. background-color: #404040; }
  3037. GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle {
  3038. opacity: 1; }
  3039.  
  3040. EphyWindow .floating-bar {
  3041. color: #DADADA; }
  3042.  
  3043. .xreader-window .primary-toolbar .button.the-button-in-the-combobox {
  3044. color: #ded6d6;
  3045. outline-color: rgba(222, 214, 214, 0.3);
  3046. border-color: rgba(16, 16, 16, 0.4);
  3047. background-color: rgba(103, 103, 103, 0.4); }
  3048. .xreader-window .primary-toolbar .button.the-button-in-the-combobox:hover {
  3049. background-color: rgba(141, 141, 141, 0.4); }
  3050. .xreader-window .primary-toolbar .button.the-button-in-the-combobox:insensitive {
  3051. color: rgba(222, 214, 214, 0.6); }
  3052.  
  3053. .documents-load-more.button {
  3054. border-width: 1px 0 0;
  3055. border-radius: 0; }
  3056.  
  3057. .documents-icon-bg {
  3058. background-color: #8fa876;
  3059. color: #ffffff;
  3060. border-radius: 2px; }
  3061.  
  3062. .documents-collection-icon {
  3063. background-color: rgba(218, 218, 218, 0.3);
  3064. border-radius: 2px; }
  3065.  
  3066. .documents-favorite.button:active,
  3067. .documents-favorite.button:active:hover {
  3068. color: #c2d0b4; }
  3069.  
  3070. .documents-entry-tag {
  3071. background-color: #8fa876;
  3072. color: #ffffff;
  3073. border-radius: 2px;
  3074. border-width: 0;
  3075. margin: 2px;
  3076. padding: 4px; }
  3077. .documents-entry-tag:hover {
  3078. color: #ffffff;
  3079. background-color: #99b082; }
  3080. .documents-entry-tag:active {
  3081. color: #ffffff;
  3082. background-color: #85a06a; }
  3083. .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button {
  3084. background: none;
  3085. border: none;
  3086. box-shadow: none;
  3087. icon-shadow: none; }
  3088. .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover {
  3089. color: rgba(255, 255, 255, 0.7); }
  3090.  
  3091. .content-view.document-page {
  3092. border-style: solid;
  3093. border-width: 3px 3px 6px 4px;
  3094. border-image: url("assets/thumbnail-frame.png") 3 3 6 4; }
  3095.  
  3096. TotemGrilo.vertical GdMainView.frame {
  3097. border-width: 0; }
  3098.  
  3099. SynapseGuiSelectionContainer *:selected,
  3100. SynapseGuiViewVirgilio *:selected {
  3101. background-color: #8fa876; }
  3102.  
  3103. .tr-workarea .undershoot,
  3104. .tr-workarea .overshoot {
  3105. border-color: transparent; }
  3106.  
  3107. .gnome-panel-menu-bar,
  3108. .mate-panel-menu-bar {
  3109. color: #DADADA;
  3110. background-color: #292929; }
  3111. .gnome-panel-menu-bar, .gnome-panel-menu-bar .menubar,
  3112. .mate-panel-menu-bar,
  3113. .mate-panel-menu-bar .menubar {
  3114. background-color: #292929; }
  3115. .gnome-panel-menu-bar .menubar > .menuitem,
  3116. .mate-panel-menu-bar .menubar > .menuitem {
  3117. padding-top: 0;
  3118. padding-bottom: 0; }
  3119. .gnome-panel-menu-bar GtkMenu .label,
  3120. .mate-panel-menu-bar GtkMenu .label {
  3121. color: #DADADA;
  3122. font: regular; }
  3123. .gnome-panel-menu-bar GtkMenu .label:insensitive,
  3124. .mate-panel-menu-bar GtkMenu .label:insensitive {
  3125. color: rgba(218, 218, 218, 0.55); }
  3126. .gnome-panel-menu-bar #tasklist-button,
  3127. .mate-panel-menu-bar #tasklist-button {
  3128. color: #DADADA;
  3129. border-radius: 0;
  3130. border: none;
  3131. padding-bottom: 0;
  3132. padding-top: 0; }
  3133. .gnome-panel-menu-bar #tasklist-button:hover,
  3134. .mate-panel-menu-bar #tasklist-button:hover {
  3135. background-color: rgba(255, 255, 255, 0.05); }
  3136. .gnome-panel-menu-bar #tasklist-button:checked, .gnome-panel-menu-bar #tasklist-button:active,
  3137. .mate-panel-menu-bar #tasklist-button:checked,
  3138. .mate-panel-menu-bar #tasklist-button:active {
  3139. color: #ffffff;
  3140. background-color: #8fa876; }
  3141. .gnome-panel-menu-bar PanelSeparator,
  3142. .mate-panel-menu-bar PanelSeparator {
  3143. color: rgba(0, 0, 0, 0.2);
  3144. padding-top: 4px;
  3145. padding-bottom: 4px; }
  3146. .gnome-panel-menu-bar NaTrayApplet,
  3147. .mate-panel-menu-bar NaTrayApplet {
  3148. -NaTrayApplet-icon-padding: 2; }
  3149.  
  3150. .mintmenu:hover {
  3151. background-color: #363636; }
  3152.  
  3153. .mintmenu:selected {
  3154. color: #ffffff;
  3155. background-color: #8fa876; }
  3156.  
  3157. .wnck-pager {
  3158. background-color: rgba(0, 0, 0, 0.04); }
  3159. .wnck-pager:selected {
  3160. background-color: rgba(143, 168, 118, 0.6); }
  3161. .wnck-pager:hover {
  3162. background-color: rgba(143, 168, 118, 0.2); }
  3163.  
  3164. .xfce4-panel.panel {
  3165. background-color: #393939; }
  3166. .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button {
  3167. color: #DADADA;
  3168. background-color: rgba(41, 41, 41, 0);
  3169. border-radius: 0;
  3170. border: none; }
  3171. .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover {
  3172. border: none;
  3173. background-color: #434343; }
  3174. .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked {
  3175. color: #8fa876;
  3176. border: none;
  3177. background-color: #171717; }
  3178.  
  3179. .gnome-panel-menu-bar .button:not(#tasklist-button),
  3180. .mate-panel-menu-bar .button:not(#tasklist-button) {
  3181. color: #DADADA;
  3182. border-radius: 0;
  3183. border: none;
  3184. background-color: rgba(41, 41, 41, 0); }
  3185. .gnome-panel-menu-bar .button:hover:not(#tasklist-button),
  3186. .mate-panel-menu-bar .button:hover:not(#tasklist-button) {
  3187. border: none;
  3188. background-color: #434343; }
  3189. .gnome-panel-menu-bar .button:active:not(#tasklist-button),
  3190. .mate-panel-menu-bar .button:active:not(#tasklist-button), .gnome-panel-menu-bar .button:checked:not(#tasklist-button),
  3191. .mate-panel-menu-bar .button:checked:not(#tasklist-button) {
  3192. color: #ffffff;
  3193. border: none;
  3194. background-color: #8fa876; }
  3195.  
  3196. .floating-bar {
  3197. background-color: #8fa876;
  3198. color: #ffffff; }
  3199. .floating-bar.top {
  3200. border-radius: 0 0 2px 2px; }
  3201. .floating-bar.right {
  3202. border-radius: 2px 0 0 2px; }
  3203. .floating-bar.bottom {
  3204. border-radius: 2px 2px 0 0; }
  3205. .floating-bar.left {
  3206. border-radius: 0 2px 2px 0; }
  3207. .floating-bar .button {
  3208. -GtkButton-image-spacing: 0;
  3209. -GtkButton-inner-border: 0;
  3210. background-color: transparent;
  3211. box-shadow: none;
  3212. border: none; }
  3213.  
  3214. BirdieWidgetsTweetList * {
  3215. background-image: none;
  3216. background-color: transparent; }
  3217.  
  3218. MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus {
  3219. color: #ffffff;
  3220. background-color: #8fa876;
  3221. outline-color: transparent; }
  3222. MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover {
  3223. background-color: transparent; }
  3224. MarlinViewWindow FMListView, MarlinViewWindow FMColumnView {
  3225. outline-color: transparent; }
  3226.  
  3227. .marlin-pathbar.pathbar {
  3228. border-radius: 3px;
  3229. padding-left: 4px;
  3230. padding-right: 4px;
  3231. color: #ded6d6;
  3232. border-color: rgba(16, 16, 16, 0.4);
  3233. background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4));
  3234. background-color: transparent; }
  3235. .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover {
  3236. color: inherit; }
  3237. .marlin-pathbar.pathbar:focus {
  3238. color: #ded6d6;
  3239. border-color: #8fa876;
  3240. background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); }
  3241. .marlin-pathbar.pathbar:insensitive {
  3242. color: rgba(222, 214, 214, 0.55);
  3243. background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); }
  3244. .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked {
  3245. color: #8fa876; }
  3246.  
  3247. .gala-notification {
  3248. border: 1px solid rgba(0, 0, 0, 0.35);
  3249. border-radius: 3px;
  3250. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  3251. background-image: linear-gradient(to bottom, white);
  3252. background-color: transparent; }
  3253. .gala-notification .title, .gala-notification .label {
  3254. color: #5c616c; }
  3255.  
  3256. .panel {
  3257. background-color: transparent;
  3258. color: white;
  3259. font-weight: bold;
  3260. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  3261. icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  3262. .panel-shadow {
  3263. background-image: none;
  3264. background-color: transparent; }
  3265. .panel .menu {
  3266. box-shadow: none; }
  3267. .panel .menu .menuitem {
  3268. font-weight: normal;
  3269. text-shadow: none;
  3270. icon-shadow: none; }
  3271. .panel .menu .window-frame.menu.csd,
  3272. .panel .menu .window-frame.popup.csd {
  3273. box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); }
  3274. .panel .menubar > .menuitem {
  3275. padding: 3px 6px; }
  3276. .panel .menubar > .menuitem:hover {
  3277. background-color: transparent; }
  3278. .panel .window-frame.menu.csd,
  3279. .panel .window-frame.popup.csd {
  3280. box-shadow: none; }
  3281.  
  3282. .composited-indicator {
  3283. background-color: transparent;
  3284. color: white;
  3285. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  3286. icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  3287. .composited-indicator > GtkWidget > GtkWidget:first-child {
  3288. padding: 0 2px; }
  3289. .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight {
  3290. border-style: none;
  3291. background-image: none;
  3292. box-shadow: none; }
  3293. .composited-indicator > .popup > .menu {
  3294. padding-top: 8px;
  3295. padding-bottom: 8px; }
  3296.  
  3297. .panel-app-button > GtkWidget > GtkWidget:first-child {
  3298. padding: 0 2px 0 4px; }
  3299.  
  3300. .panel .menu .spinner,
  3301. .menu .spinner {
  3302. opacity: 1; }
  3303.  
  3304. WingpanelWidgetsIndicatorPopover.popover {
  3305. padding: 0;
  3306. text-shadow: none;
  3307. icon-shadow: none; }
  3308. WingpanelWidgetsIndicatorPopover.popover .menuitem {
  3309. padding: 5px;
  3310. outline-color: transparent;
  3311. text-shadow: none;
  3312. icon-shadow: none;
  3313. border: solid transparent;
  3314. border-width: 1px 0; }
  3315. WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage {
  3316. padding: 0 3px; }
  3317. WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active {
  3318. background-color: rgba(255, 255, 255, 0.05);
  3319. border: solid rgba(255, 255, 255, 0.07);
  3320. border-width: 1px 0; }
  3321. WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive {
  3322. color: rgba(218, 218, 218, 0.55); }
  3323.  
  3324. PantheonTerminalPantheonTerminalWindow.background {
  3325. background-color: transparent; }
  3326.  
  3327. SwitchboardCategoryView .view:selected,
  3328. SwitchboardCategoryView .view:selected:focus {
  3329. color: #DADADA; }
  3330.  
  3331. .cs-header {
  3332. padding: 6px;
  3333. background-color: #353535; }
  3334.  
  3335. .xed-window .xed-panel.side .notebook tab.top {
  3336. padding: 8px 12px; }
  3337. .xed-window .xed-panel.bottom .notebook.frame {
  3338. border: none; }
  3339. .xed-window XedFileBrowserWidget .small-button {
  3340. padding: 2px 4px; }
  3341. .xed-window .xed-statusbar,
  3342. .xed-window .xed-searchbar {
  3343. border: 0px solid #292929;
  3344. border-top-width: 1px; }
  3345.  
  3346. EvWindow .content-view .view:selected,
  3347. EvWindow .content-view .view:focused:selected {
  3348. background-color: #8fa876;
  3349. color: #ffffff; }
  3350.  
  3351. #panel_window {
  3352. background-color: #292929;
  3353. color: #DADADA;
  3354. font: bold;
  3355. box-shadow: inset 0 -1px #171717; }
  3356. #panel_window .menubar,
  3357. #panel_window .menubar > .menuitem {
  3358. background-color: transparent;
  3359. color: #DADADA;
  3360. font: bold; }
  3361. #panel_window .menubar .menuitem:insensitive {
  3362. color: rgba(218, 218, 218, 0.5); }
  3363. #panel_window .menubar .menuitem:insensitive GtkLabel {
  3364. color: inherit; }
  3365. #panel_window .menubar .menu .menuitem {
  3366. font: normal; }
  3367.  
  3368. #login_window,
  3369. #shutdown_dialog,
  3370. #restart_dialog {
  3371. font: normal;
  3372. border-style: none;
  3373. background-color: transparent;
  3374. color: #DADADA; }
  3375.  
  3376. #content_frame {
  3377. padding-bottom: 14px;
  3378. background-color: #383838;
  3379. border-top-left-radius: 2px;
  3380. border-top-right-radius: 2px;
  3381. border: solid rgba(0, 0, 0, 0.1);
  3382. border-width: 1px 1px 0 1px; }
  3383.  
  3384. #content_frame .button {
  3385. color: #DADADA;
  3386. outline-color: rgba(218, 218, 218, 0.3);
  3387. border-color: #292929;
  3388. background-color: #454545; }
  3389. #content_frame .button:hover {
  3390. color: #DADADA;
  3391. outline-color: rgba(218, 218, 218, 0.3);
  3392. border-color: #292929;
  3393. background-color: #525252; }
  3394. #content_frame .button:active, #content_frame .button:checked {
  3395. color: #ffffff;
  3396. outline-color: rgba(255, 255, 255, 0.3);
  3397. border-color: #292929;
  3398. background-color: #8fa876; }
  3399. #content_frame .button:insensitive {
  3400. color: rgba(218, 218, 218, 0.55);
  3401. border-color: rgba(41, 41, 41, 0.55);
  3402. background-color: rgba(69, 69, 69, 0.55); }
  3403. #content_frame .button:insensitive > GtkLabel {
  3404. color: inherit; }
  3405.  
  3406. #buttonbox_frame {
  3407. padding-top: 20px;
  3408. padding-bottom: 0px;
  3409. border-style: none;
  3410. background-color: #2f2f2f;
  3411. border-bottom-left-radius: 3px;
  3412. border-bottom-right-radius: 3px;
  3413. border: solid rgba(0, 0, 0, 0.1);
  3414. border-width: 0 1px 1px 1px;
  3415. box-shadow: inset 0 1px #252525; }
  3416.  
  3417. #buttonbox_frame .button {
  3418. color: #C3C3C3;
  3419. outline-color: rgba(195, 195, 195, 0.3);
  3420. border-color: rgba(22, 22, 22, 0.4);
  3421. background-color: rgba(109, 109, 109, 0.4); }
  3422. #buttonbox_frame .button:hover {
  3423. color: #C3C3C3;
  3424. outline-color: rgba(195, 195, 195, 0.3);
  3425. border-color: rgba(22, 22, 22, 0.4);
  3426. background-color: rgba(127, 127, 127, 0.5); }
  3427. #buttonbox_frame .button:active, #buttonbox_frame .button:checked {
  3428. color: #ffffff;
  3429. outline-color: rgba(255, 255, 255, 0.3);
  3430. border-color: rgba(22, 22, 22, 0.4);
  3431. background-color: #8fa876; }
  3432. #buttonbox_frame .button:insensitive {
  3433. color: #606060;
  3434. border-color: rgba(22, 22, 22, 0.4);
  3435. background-color: rgba(109, 109, 109, 0.25); }
  3436.  
  3437. #login_window #user_combobox {
  3438. color: #DADADA;
  3439. font: 13px; }
  3440. #login_window #user_combobox .menu {
  3441. font: normal; }
  3442.  
  3443. #user_image {
  3444. padding: 3px;
  3445. border-radius: 2px; }
  3446.  
  3447. #shutdown_button.button {
  3448. background-clip: border-box;
  3449. color: #ffffff;
  3450. outline-color: rgba(255, 255, 255, 0.3);
  3451. background-color: #F04A50;
  3452. border-color: #F04A50; }
  3453. #shutdown_button.button:hover {
  3454. background-clip: border-box;
  3455. color: #ffffff;
  3456. outline-color: rgba(255, 255, 255, 0.3);
  3457. background-color: #f4797e;
  3458. border-color: #f4797e; }
  3459. #shutdown_button.button:active, #shutdown_button.button:checked {
  3460. background-clip: border-box;
  3461. color: #ffffff;
  3462. outline-color: rgba(255, 255, 255, 0.3);
  3463. background-color: #ec1b22;
  3464. border-color: #ec1b22; }
  3465.  
  3466. #restart_button.button {
  3467. background-clip: border-box;
  3468. color: #ffffff;
  3469. outline-color: rgba(255, 255, 255, 0.3);
  3470. background-color: #6db442;
  3471. border-color: #6db442; }
  3472. #restart_button.button:hover {
  3473. background-clip: border-box;
  3474. color: #ffffff;
  3475. outline-color: rgba(255, 255, 255, 0.3);
  3476. background-color: #88c663;
  3477. border-color: #88c663; }
  3478. #restart_button.button:active, #restart_button.button:checked {
  3479. background-clip: border-box;
  3480. color: #ffffff;
  3481. outline-color: rgba(255, 255, 255, 0.3);
  3482. background-color: #568f34;
  3483. border-color: #568f34; }
  3484.  
  3485. #greeter_infobar {
  3486. border-bottom-width: 0;
  3487. font: bold; }
  3488.  
  3489. .lightdm.menubar {
  3490. padding: 0; }
  3491. .lightdm.menubar > .menuitem {
  3492. padding: 0 5px 0 5px; }
  3493.  
  3494. .lightdm.button,
  3495. .lightdm.option-button,
  3496. .lightdm.toggle-button {
  3497. border: 1px solid transparent;
  3498. background-color: transparent;
  3499. color: #dadada; }
  3500. .lightdm.button:hover,
  3501. .lightdm.option-button:hover,
  3502. .lightdm.toggle-button:hover {
  3503. border-color: rgba(143, 168, 118, 0.4);
  3504. background-color: rgba(0, 0, 0, 0.3);
  3505. color: #ffffff; }
  3506.  
  3507. .lightdm.entry {
  3508. background: rgba(0, 0, 0, 0.5);
  3509. color: white; }
  3510.  
  3511. .titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator {
  3512. color: #252525; }
  3513.  
  3514. NemoWindow GtkEventBox {
  3515. background-color: #383838; }
  3516.  
  3517. GtkFileChooserDialog *,
  3518. NautilusWindow *,
  3519. NemoWindow {
  3520. -GtkPaned-handle-size: 0; }
  3521.  
  3522. GtkFileChooserDialog .sidebar,
  3523. NautilusWindow .sidebar,
  3524. NemoWindow .sidebar {
  3525. border-right: 1px solid #282828; }
  3526. GtkFileChooserDialog .sidebar:dir(rtl),
  3527. NautilusWindow .sidebar:dir(rtl),
  3528. NemoWindow .sidebar:dir(rtl) {
  3529. border-left: 1px solid #282828; }
  3530.  
  3531. GtkFileChooserDialog GtkPlacesSidebar.sidebar {
  3532. -gtk-icon-style: regular; }
  3533.  
  3534. GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar,
  3535. NautilusWindow.csd.background,
  3536. NautilusWindow .list.sidebar {
  3537. background-color: transparent; }
  3538. GtkFileChooserDialog GtkPlacesSidebar.sidebar,
  3539. NautilusWindow GtkPlacesSidebar.sidebar {
  3540. background-color: #353535; }
  3541. GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable,
  3542. NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable {
  3543. border: 1px solid #8fa876; }
  3544. GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row,
  3545. NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row {
  3546. background-color: #4f4f4f; }
  3547. GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable,
  3548. NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable {
  3549. border: none;
  3550. color: #C3C3C3; }
  3551. GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon,
  3552. NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon {
  3553. color: rgba(195, 195, 195, 0.6); }
  3554. GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup,
  3555. NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover,
  3556. NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup {
  3557. background-color: rgba(195, 195, 195, 0.15); }
  3558. GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon,
  3559. NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon,
  3560. NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon,
  3561. NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon,
  3562. NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon,
  3563. NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon {
  3564. color: inherit; }
  3565. GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator,
  3566. NautilusWindow GtkPlacesSidebar.sidebar .separator,
  3567. NautilusWindow GtkPlacesSidebar.sidebar .view.separator {
  3568. color: transparent; }
  3569. GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar,
  3570. NautilusWindow.maximized GtkPlacesSidebar.sidebar {
  3571. background-color: #353535; }
  3572. GtkFileChooserDialog .sidebar-button.button,
  3573. NautilusWindow .sidebar-button.button {
  3574. color: #C3C3C3; }
  3575. GtkFileChooserDialog .sidebar-button.button:hover,
  3576. NautilusWindow .sidebar-button.button:hover {
  3577. color: #C3C3C3;
  3578. outline-color: rgba(195, 195, 195, 0.3);
  3579. border-color: rgba(22, 22, 22, 0.4);
  3580. background-color: rgba(127, 127, 127, 0.5); }
  3581. GtkFileChooserDialog .sidebar-button.button:active,
  3582. NautilusWindow .sidebar-button.button:active {
  3583. color: #ffffff;
  3584. outline-color: rgba(255, 255, 255, 0.3);
  3585. border-color: rgba(22, 22, 22, 0.4);
  3586. background-color: #8fa876; }
  3587. GtkFileChooserDialog .sidebar-button.button:not(:hover):not(:active) > GtkImage,
  3588. NautilusWindow .sidebar-button.button:not(:hover):not(:active) > GtkImage {
  3589. opacity: 0.5; }
  3590.  
  3591. NemoWindow.csd.background,
  3592. NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight,
  3593. MarlinViewWindow.csd.background,
  3594. MarlinViewWindow .source-list,
  3595. MarlinViewWindow .source-list.view,
  3596. MarlinViewWindow .source-list.view:prelight {
  3597. background-color: transparent; }
  3598. NemoWindow .sidebar, NemoWindow .source-list.sidebar.view,
  3599. MarlinViewWindow .sidebar,
  3600. MarlinViewWindow .source-list.sidebar.view {
  3601. background-color: #353535; }
  3602. NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row,
  3603. MarlinViewWindow .sidebar .view,
  3604. MarlinViewWindow .sidebar row,
  3605. MarlinViewWindow .source-list.sidebar.view .view,
  3606. MarlinViewWindow .source-list.sidebar.view row {
  3607. background-color: transparent;
  3608. color: #C3C3C3; }
  3609. NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image,
  3610. MarlinViewWindow .sidebar .view.image,
  3611. MarlinViewWindow .sidebar row.image,
  3612. MarlinViewWindow .source-list.sidebar.view .view.image,
  3613. MarlinViewWindow .source-list.sidebar.view row.image {
  3614. color: rgba(195, 195, 195, 0.7); }
  3615. NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected,
  3616. MarlinViewWindow .sidebar .view.cell:selected,
  3617. MarlinViewWindow .sidebar row.cell:selected,
  3618. MarlinViewWindow .source-list.sidebar.view .view.cell:selected,
  3619. MarlinViewWindow .source-list.sidebar.view row.cell:selected {
  3620. background-color: #8fa876;
  3621. color: #ffffff; }
  3622. NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame,
  3623. MarlinViewWindow .sidebar.frame,
  3624. MarlinViewWindow .source-list.sidebar.view.frame {
  3625. color: #C3C3C3; }
  3626. NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator,
  3627. MarlinViewWindow .sidebar .separator,
  3628. MarlinViewWindow .sidebar .view.separator,
  3629. MarlinViewWindow .source-list.sidebar.view .separator {
  3630. color: transparent; }
  3631. NemoWindow.maximized .sidebar,
  3632. MarlinViewWindow.maximized .sidebar {
  3633. background-color: #353535; }
  3634.  
  3635. NemoWindow.background > GtkGrid > GtkPaned > .pane-separator,
  3636. MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator {
  3637. background-color: #282828; }
  3638.  
  3639. NautilusWindow NautilusWindowSlot {
  3640. background-color: #404040; }
  3641.  
  3642. NautilusDesktopWindow NautilusWindowSlot {
  3643. background-color: transparent; }
  3644.  
  3645. GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background {
  3646. background-color: #353535; }
  3647. GtkFileChooserDialog GtkPlacesSidebar.sidebar {
  3648. background-color: transparent; }
  3649. GtkFileChooserDialog GtkPaned > .vertical > .horizontal {
  3650. background-color: #383838; }
  3651. GtkFileChooserDialog .dialog-action-box {
  3652. background-color: #383838; }
  3653. GtkFileChooserDialog .dialog-vbox > .frame {
  3654. color: #C3C3C3;
  3655. border-color: transparent; }
  3656. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame {
  3657. background-color: transparent;
  3658. border-color: #0f0f0f; }
  3659. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox,
  3660. GtkFileChooserDialog .dialog-vbox > .frame GtkLabel,
  3661. GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox {
  3662. color: #C3C3C3; }
  3663.  
  3664. FeedReaderreaderUI.background.csd > .titlebar .pane-separator, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator,
  3665. FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop,
  3666. GeditWindow.background.csd > .titlebar .pane-separator,
  3667. GeditWindow.background.csd.maximized > .titlebar .pane-separator,
  3668. GeditWindow.background.csd > .titlebar .pane-separator:backdrop,
  3669. GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop {
  3670. background-color: #252525; }
  3671. FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar,
  3672. GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar {
  3673. background-color: #2f2f2f; }
  3674. FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop,
  3675. GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop {
  3676. background-color: #333333; }
  3677. FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar,
  3678. GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar {
  3679. background-color: #2f2f2f; }
  3680. FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop,
  3681. GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop {
  3682. background-color: #333333; }
  3683.  
  3684. FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar,
  3685. GeditWindow.background.csd > .titlebar {
  3686. background-color: transparent; }
  3687.  
  3688. GeditWindow.background.csd {
  3689. background-color: transparent; }
  3690. GeditWindow.background .gedit-side-panel-paned .pane-separator {
  3691. background-color: #282828; }
  3692. GeditWindow.background .gedit-bottom-panel-paned .pane-separator {
  3693. background-color: #292929; }
  3694.  
  3695. .gedit-bottom-panel-paned {
  3696. background-color: #404040; }
  3697.  
  3698. .gedit-document-panel {
  3699. background-color: #353535; }
  3700. .maximized .gedit-document-panel {
  3701. background-color: #353535; }
  3702. .gedit-document-panel .list-row {
  3703. color: #C3C3C3; }
  3704. .gedit-document-panel .list-row {
  3705. background-color: rgba(195, 195, 195, 0);
  3706. border: solid rgba(195, 195, 195, 0);
  3707. border-width: 3px 2px 3px 2px; }
  3708. .gedit-document-panel .list-row:hover {
  3709. border: solid rgba(195, 195, 195, 0.15);
  3710. border-width: 3px 2px 3px 2px;
  3711. background-color: rgba(195, 195, 195, 0.15); }
  3712. .gedit-document-panel .list-row:active {
  3713. color: #ffffff;
  3714. background-color: #8fa876;
  3715. border: solid #8fa876;
  3716. border-width: 3px 2px 3px 2px; }
  3717. .gedit-document-panel .list-row:active .button {
  3718. color: #ffffff; }
  3719. .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover {
  3720. color: #ffffff;
  3721. background-color: #8fa876;
  3722. border: solid #8fa876;
  3723. border-width: 3px 2px 3px 2px; }
  3724. .gedit-document-panel .prelight-row .button:active {
  3725. color: #C3C3C3; }
  3726.  
  3727. GeditFileBrowserWidget {
  3728. background-color: #353535; }
  3729. .maximized GeditFileBrowserWidget {
  3730. background-color: #353535; }
  3731. GeditFileBrowserWidget .horizontal {
  3732. background-color: transparent;
  3733. border-color: #232323; }
  3734. GeditFileBrowserWidget .horizontal GtkComboBox {
  3735. color: #C3C3C3; }
  3736.  
  3737. GeditWindow.background.csd GeditFileBrowserView.view {
  3738. background-color: transparent;
  3739. color: #C3C3C3; }
  3740. GeditWindow.background.csd GeditFileBrowserView.view.expander {
  3741. color: #C3C3C3; }
  3742. GeditWindow.background.csd GeditFileBrowserView.view.expander:hover {
  3743. color: #8fa876; }
  3744.  
  3745. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button,
  3746. GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button {
  3747. color: #C3C3C3;
  3748. outline-color: rgba(195, 195, 195, 0.3);
  3749. border-color: rgba(22, 22, 22, 0.4);
  3750. background-color: rgba(109, 109, 109, 0.4); }
  3751. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover,
  3752. GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover {
  3753. color: #C3C3C3;
  3754. outline-color: rgba(195, 195, 195, 0.3);
  3755. border-color: rgba(22, 22, 22, 0.4);
  3756. background-color: rgba(127, 127, 127, 0.5); }
  3757. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active,
  3758. GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked,
  3759. GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked {
  3760. color: #ffffff;
  3761. outline-color: rgba(255, 255, 255, 0.3);
  3762. border-color: rgba(22, 22, 22, 0.4);
  3763. background-color: #8fa876; }
  3764. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive,
  3765. GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive {
  3766. color: #606060;
  3767. border-color: rgba(22, 22, 22, 0.4);
  3768. background-color: rgba(109, 109, 109, 0.25); }
  3769.  
  3770. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry,
  3771. GtkFileChooserDialog .dialog-vbox > .frame .entry {
  3772. color: #C3C3C3;
  3773. border-color: rgba(22, 22, 22, 0.4);
  3774. background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4));
  3775. background-color: transparent; }
  3776. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry,
  3777. GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover,
  3778. GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover {
  3779. color: inherit; }
  3780. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus,
  3781. GtkFileChooserDialog .dialog-vbox > .frame .entry:focus {
  3782. color: #ffffff;
  3783. border-color: rgba(22, 22, 22, 0.4);
  3784. background-image: linear-gradient(to bottom, #8fa876); }
  3785. GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive,
  3786. GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive {
  3787. color: rgba(195, 195, 195, 0.55);
  3788. background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); }
  3789.  
  3790. GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider,
  3791. NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider,
  3792. MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider {
  3793. background-color: #e9e9e9;
  3794. border: 1px solid rgba(0, 0, 0, 0.3); }
  3795. GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough,
  3796. NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough,
  3797. MarlinViewWindow .sidebar .scrollbar .trough,
  3798. MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough {
  3799. background-color: rgba(0, 0, 0, 0.2);
  3800. border: none; }
  3801. GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider,
  3802. NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider,
  3803. MarlinViewWindow .sidebar .scrollbar .slider,
  3804. MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider {
  3805. background-color: rgba(233, 233, 233, 0.7); }
  3806. GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover,
  3807. NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover,
  3808. MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover {
  3809. background-color: #f6f6f6; }
  3810. GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active,
  3811. NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active,
  3812. MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active {
  3813. background-color: #8fa876; }
  3814. GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive,
  3815. NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive,
  3816. MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive {
  3817. background-color: transparent; }
  3818.  
  3819. @define-color theme_fg_color #DADADA;
  3820. @define-color theme_text_color #DADADA;
  3821. @define-color theme_bg_color #383838;
  3822. @define-color theme_base_color #404040;
  3823. @define-color theme_selected_bg_color #8fa876;
  3824. @define-color theme_selected_fg_color #ffffff;
  3825. @define-color fg_color #DADADA;
  3826. @define-color text_color #DADADA;
  3827. @define-color bg_color #383838;
  3828. @define-color base_color #404040;
  3829. @define-color selected_bg_color #8fa876;
  3830. @define-color selected_fg_color #ffffff;
  3831. @define-color insensitive_bg_color #3d3d3d;
  3832. @define-color insensitive_fg_color alpha(#dadada, 0.5);
  3833. @define-color insensitive_base_color #404040;
  3834. @define-color theme_unfocused_fg_color #DADADA;
  3835. @define-color theme_unfocused_text_color #DADADA;
  3836. @define-color theme_unfocused_bg_color #383838;
  3837. @define-color theme_unfocused_base_color #404040;
  3838. @define-color borders #292929;
  3839. @define-color unfocused_borders #292929;
  3840. @define-color warning_color #f27835;
  3841. @define-color error_color #FC4138;
  3842. @define-color success_color #73d216;
  3843. @define-color placeholder_text_color #A8A8A8;
  3844. @define-color content_view_bg #404040;
  3845. @define-color wm_title alpha(#ded6d6, 0.8);
  3846. @define-color wm_unfocused_title alpha(#ded6d6, 0.5);
  3847. @define-color wm_bg #2f2f2f;
  3848. @define-color wm_bg_unfocused #333333;
  3849. @define-color wm_highlight #373737;
  3850. @define-color wm_shadow alpha(black, 0.35);
  3851. @define-color wm_button_close_bg #cc575d;
  3852. @define-color wm_button_close_hover_bg #d7787d;
  3853. @define-color wm_button_close_active_bg #be3841;
  3854. @define-color wm_icon_close_bg #2f343f;
  3855. @define-color wm_button_hover_bg #454C5C;
  3856. @define-color wm_button_active_bg #8fa876;
  3857. @define-color wm_button_hover_border #262932;
  3858. @define-color wm_icon_bg #90939B;
  3859. @define-color wm_icon_unfocused_bg #666A74;
  3860. @define-color wm_icon_hover_bg #C4C7CC;
  3861. @define-color wm_icon_active_bg #ffffff;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement