Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
715
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 178.59 KB | None | 0 0
  1. * {
  2. background-clip: padding-box;
  3. -GtkToolButton-icon-spacing: 4;
  4. -GtkTextView-error-underline-color: #FC4138;
  5. -GtkScrolledWindow-scrollbar-spacing: 0;
  6. -GtkToolItemGroup-expander-size: 11;
  7. -GtkWidget-text-handle-width: 20;
  8. -GtkWidget-text-handle-height: 20;
  9. -GtkDialog-button-spacing: 4;
  10. -GtkDialog-action-area-border: 0;
  11. }
  12.  
  13. .background {
  14.  
  15. color: #252525;
  16. background-color: rgba(239,244,247,0.999);
  17. background-image:linear-gradient(to bottom left,rgba(238,244,246,1),rgba(221,227,232,1),rgba(221,227,232,1),rgba(238,244,246,1)); }
  18.  
  19. *:disabled {
  20. -gtk-icon-effect: dim; }
  21.  
  22. .gtkstyle-fallback {
  23.  
  24. background-color: rgba(239,244,247,0.999);
  25. color: #252525; }
  26.  
  27. .gtkstyle-fallback:hover {
  28.  
  29. background-color: #4a85cb;
  30. color: white; }
  31.  
  32. .gtkstyle-fallback:active {
  33.  
  34. background-color: #4a85cb;
  35. color: white; }
  36.  
  37. .gtkstyle-fallback:disabled {
  38.  
  39. background-color: #f6f8fa;
  40. color: rgba(37, 37, 37, 0.55); }
  41.  
  42. .gtkstyle-fallback:selected {
  43. background-color: #4a85cb;
  44. color: #ffffff; }
  45.  
  46. .view, iconview,
  47. .view text,
  48. iconview text,
  49. textview text {
  50.  
  51. color: #252525;
  52. background-color: #ffffff; }
  53.  
  54. .view:selected, iconview:selected,
  55. .view:selected:focus,
  56. iconview:selected:focus,
  57. .view text:selected,
  58. iconview text:selected,
  59. textview text:selected,
  60. .view text:selected:focus,
  61. iconview text:selected:focus,
  62. textview text:selected:focus {
  63.  
  64. border-radius: 2px; }
  65.  
  66. textview border {
  67.  
  68. background-color: #f6f8fa; }
  69.  
  70. rubberband, flowbox rubberband,
  71. treeview.view rubberband,
  72. .content-view rubberband,
  73. .rubberband {
  74.  
  75. border: 1px solid #1954ad;
  76. background-color: rgba(25, 84, 173, 0.2); }
  77.  
  78. flowbox flowboxchild {
  79.  
  80. padding: 3px;
  81. border-radius: 2px; }
  82.  
  83.  
  84.  
  85. label.separator,
  86. popover label.separator,
  87. popover.background label.separator {
  88.  
  89. color: #252525; }
  90.  
  91. label selection {
  92.  
  93. color: #ffffff;
  94. background-color: #4a85cb; }
  95.  
  96. label:disabled {
  97.  
  98. color: rgba(92, 97, 108, 0.55); }
  99.  
  100. .dim-label, label.separator,
  101. popover label.separator,
  102. popover.background label.separator,
  103. headerbar .subtitle,
  104. .titlebar:not(headerbar) .subtitle {
  105.  
  106. opacity: 0.55; }
  107.  
  108. assistant .sidebar {
  109.  
  110. background-color: #ffffff;
  111. border-top: 1px solid rgba(105, 105, 105, 0.3); }
  112.  
  113. assistant.csd .sidebar {
  114.  
  115. border-top-style: none; }
  116.  
  117. assistant .sidebar label {
  118.  
  119. padding: 6px 12px; }
  120.  
  121. assistant .sidebar label.highlight {
  122.  
  123. background-color: #4a85cb;
  124. color: #ffffff; }
  125.  
  126. textview {
  127. background-color: #ffffff; }
  128.  
  129. popover.osd, popover.magnifier,
  130. .csd popover.osd,
  131. .csd popover.magnifier,
  132. popover.background.osd,
  133. popover.background.magnifier,
  134. .csd popover.background.osd,
  135. .csd popover.background.magnifier,
  136. .osd .scale-popup, .osd {
  137.  
  138. color: #505050;
  139. border: none;
  140. background-color: rgba(240, 242, 248, 0.85);
  141. background-clip: padding-box;
  142. box-shadow: none; }
  143.  
  144. @keyframes spin {
  145. to {
  146. -gtk-icon-transform: rotate(1turn); } }
  147.  
  148. spinner {
  149.  
  150. background: none;
  151. opacity: 0;
  152. -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); }
  153.  
  154. spinner:checked {
  155. opacity: 1;
  156. animation: spin 1s linear infinite; }
  157.  
  158. spinner:checked:disabled {
  159.  
  160. opacity: 0.5; }
  161.  
  162. /*******************************************************************************************************/
  163. /*-----------------------------ENTRY-------------------------------------------------------------------*/
  164. /*******************************************************************************************************/
  165.  
  166. entry {
  167.  
  168. min-height: 22px;
  169. border: 1px solid;
  170. padding: 2px 8px;
  171. caret-color: currentColor;
  172. border-radius: 5px;
  173. transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  174. color: #252525;
  175. border-color:rgba(0, 0, 0, 0.12);
  176. border-bottom-color: rgba(0, 0, 0, 0.25);
  177. border-top-color: rgba(0, 0, 0, 0.06);
  178. /*border-color: rgba(0, 0, 0, 0.2);*/
  179. background-color: #ffffff; }
  180.  
  181. entry.search {
  182. border-radius: 5px; }
  183.  
  184. entry image {
  185.  
  186. color: #515151; }
  187.  
  188. entry image.left {
  189.  
  190. padding-left: 0;
  191. padding-right: 5px; }
  192.  
  193. entry image.right {
  194.  
  195. padding-right: 0;
  196. padding-left: 5px; }
  197.  
  198. entry.flat,
  199. entry.flat:focus {
  200.  
  201. min-height: 0;
  202. padding: 2px;
  203. background-image: none;
  204. border-color: transparent;
  205. border-radius: 5px;
  206. background-color: #ffffff;}
  207.  
  208. entry:focus {
  209.  
  210. background-clip: border-box;
  211. color: #252525;
  212. border-color:rgba(0, 0, 0, 0.12);
  213. }
  214.  
  215. entry:disabled {
  216.  
  217. color: rgba(37, 37, 37, 0.55);
  218. border-color: transparent;
  219. background-color: rgba(255, 255, 255, 0.55); }
  220.  
  221. entry.warning {
  222. color: white;
  223. border-color: #F27835;
  224. background-color: #f7ae86; }
  225.  
  226. entry.warning image {
  227.  
  228. color: white; }
  229.  
  230. entry.warning:focus {
  231.  
  232. color: white;
  233. background-color: #F27835;
  234. box-shadow: none; }
  235.  
  236. entry.warning selection,
  237. entry.warning selection:focus {
  238.  
  239. background-color: white;
  240. color: #F27835; }
  241.  
  242. entry.error {
  243.  
  244. color: white;
  245. border-color: #FC4138;
  246. background-color: #fd8d88; }
  247.  
  248. entry.error image {
  249.  
  250. color: white; }
  251.  
  252. entry.error:focus {
  253.  
  254. color: white;
  255. background-color: #FC4138;
  256. box-shadow: none; }
  257.  
  258. entry.error selection,
  259. entry.error selection:focus {
  260.  
  261. background-color: white;
  262. color: #FC4138; }
  263.  
  264. entry.search-missing {
  265.  
  266. color: white;
  267. border-color: #FC4138;
  268. background-color: #fd8d88; }
  269.  
  270. entry.search-missing image {
  271.  
  272. color: white; }
  273.  
  274. entry.search-missing:focus {
  275.  
  276. color: white;
  277. background-color: #FC4138;
  278. box-shadow: none; }
  279.  
  280. entry.search-missing selection, entry.search-missing selection:focus {
  281.  
  282. background-color: white;
  283. color: #FC4138; }
  284.  
  285. entry:drop(active):focus, entry:drop(active) {
  286.  
  287. border-color: #F08437;
  288. box-shadow: none; }
  289.  
  290. .osd entry {
  291.  
  292. color: #252525;
  293. border-color: rgba(198, 205, 229, 0.25);
  294. background-color: rgba(255, 255, 255, 1); }
  295.  
  296. .osd entry image, .osd entry image:hover {
  297.  
  298. color: inherit; }
  299.  
  300. .osd entry:focus {
  301.  
  302. color: #ffffff;
  303. border-color: rgba(198, 205, 229, 0.25);
  304. background-color: #4a85cb; }
  305.  
  306. .osd entry:disabled {
  307.  
  308. border-color: rgba(198, 205, 229, 0.25);
  309. color: rgba(80, 80, 80, 0.55);
  310. background-color: rgba(255, 255, 255, 0.1); }
  311.  
  312. .osd entry selection:focus, .osd entry selection {
  313.  
  314. color: #4a85cb;
  315. background-color: #ffffff; }
  316.  
  317. entry progress {
  318.  
  319. margin: 0 -6px;
  320. border-radius: 0;
  321. border-width: 0 0 2px;
  322. border-color: #4a85cb;
  323. border-style: solid;
  324. background-image: none;
  325. background-color: transparent;
  326. box-shadow: none; }
  327.  
  328. treeview entry.flat, treeview entry {
  329.  
  330. border-radius: 0;
  331. background-image: none;
  332. background-color: #ffffff; }
  333.  
  334. treeview entry.flat:focus, treeview entry:focus {
  335.  
  336. border-color: #4a85cb; }
  337.  
  338.  
  339. @keyframes needs_attention {
  340. from {
  341. background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#4a85cb), to(transparent)); }
  342. to {
  343. background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#4a85cb), to(transparent)); } }
  344.  
  345.  
  346. /*******************************************************************************/
  347. /*-----------------------BUTTONS-----------------------------------------------*/
  348. /*******************************************************************************/
  349.  
  350. button {
  351.  
  352. min-height: 16px;
  353. min-width: 16px;
  354. transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  355. border: 1px solid;
  356. border-radius: 5px;
  357. padding: 4px 4px;
  358. padding-top: 2px;
  359. padding-bottom: 2px;
  360. color: #252525;
  361. border-left-color:rgba(0, 0, 0, 0.14);
  362. border-right-color:rgba(0, 0, 0, 0.14);
  363. border-bottom-color: rgba(0, 0, 0, 0.25);
  364. border-top-color: rgba(0, 0, 0, 0.06);
  365. background-color: rgba(255,255,255,0.94); }
  366.  
  367. button separator {
  368.  
  369. margin: 4px 1px; }
  370.  
  371. button.flat, button.sidebar-button {
  372.  
  373. border-color: transparent;
  374. background-color: transparent;
  375. background-image: none;
  376. transition: none; }
  377.  
  378. button.flat:hover,
  379. button.sidebar-button:hover {
  380.  
  381. transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  382. transition-duration: 350ms; }
  383.  
  384. button.flat:hover:active,
  385. button.sidebar-button:hover:active {
  386.  
  387. transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  388.  
  389. button:hover {
  390.  
  391. color: #252525;
  392. border-color: rgba(0, 0, 0, 0.3);
  393. background-color: white;
  394. -gtk-icon-effect: highlight; }
  395.  
  396. button:active, button:checked {
  397.  
  398. color: #ffffff;
  399. border-color: #4a85cb;
  400. background-color: #4a85cb;
  401. background-clip: border-box;
  402. transition-duration: 50ms; }
  403.  
  404. button:active:not(:disabled) label:disabled,
  405. button:checked:not(:disabled) label:disabled {
  406.  
  407. color: inherit;
  408. opacity: 0.6; }
  409.  
  410. button:active {
  411.  
  412. color: #252525; }
  413.  
  414. button:active:hover,
  415. button:checked {
  416.  
  417. color: #ffffff; }
  418.  
  419. button.flat:disabled,
  420. button.sidebar-button:disabled {
  421.  
  422. border-color: transparent;
  423. background-color: transparent;
  424. background-image: none; }
  425.  
  426. button:disabled {
  427.  
  428. border-color: rgba(207, 214, 230, 0.55);
  429. background-color: rgba(251, 251, 252, 0.55); }
  430.  
  431. button:disabled label, button:disabled {
  432.  
  433. color: rgba(92, 97, 108, 0.55); }
  434.  
  435. button:disabled:active,
  436. button:disabled:checked {
  437.  
  438. border-color: rgba(82, 148, 226, 0.75);
  439. background-color: rgba(82, 148, 226, 0.75);
  440. opacity: 0.6; }
  441.  
  442. button:disabled:active label,
  443. button:disabled:active,
  444. button:disabled:checked label,
  445. button:disabled:checked {
  446.  
  447. color: rgba(255, 255, 255, 0.8); }
  448.  
  449. button.image-button {
  450.  
  451. min-width: 22px;
  452. padding-left: 3px;
  453. padding-right: 3px; }
  454.  
  455. button.text-button {
  456.  
  457. padding-left: 12px;
  458. padding-right: 12px; }
  459.  
  460. button.text-button.image-button {
  461.  
  462. padding-left: 5px;
  463. padding-right: 5px; }
  464.  
  465. button.text-button.image-button label:first-child {
  466.  
  467. padding-left: 8px;
  468. padding-right: 2px; }
  469.  
  470. button.text-button.image-button label:last-child {
  471.  
  472. padding-right: 8px;
  473. padding-left: 2px; }
  474.  
  475. button.text-button.image-button label:only-child {
  476.  
  477. padding-left: 8px;
  478. padding-right: 8px; }
  479.  
  480. button.text-button.image-button.popup {
  481.  
  482. padding-right: 8px;
  483. padding-left: 8px; }
  484.  
  485. button:drop(active),
  486. combobox:drop(active) button.combo {
  487.  
  488. color: #F08437;
  489. border-color: #F08437;
  490. box-shadow: none; }
  491.  
  492. button.osd {
  493.  
  494. color: #BAC3CF;
  495. background-color: rgba(53, 57, 69, 0.95);
  496. border-color: rgba(35, 38, 46, 0.95); }
  497.  
  498. button.osd.image-button {
  499.  
  500. padding: 0;
  501. min-height: 36px;
  502. min-width: 36px; }
  503.  
  504. button.osd:hover {
  505.  
  506. color: #4a85cb; }
  507.  
  508. button.osd:active,
  509. button.osd:checked {
  510.  
  511. color: #ffffff;
  512. border-color: rgba(26, 28, 34, 0.35);
  513. background-color: #4a85cb; }
  514.  
  515. button.osd:disabled {
  516.  
  517. color: #5d626e;
  518. border-color: rgba(26, 28, 34, 0.35);
  519. background-color: rgba(102, 109, 132, 0.2); }
  520.  
  521. .osd button {
  522.  
  523. color: #BAC3CF;
  524. border-color: rgba(26, 28, 34, 0.35);
  525. background-color: rgba(102, 109, 132, 0.35); }
  526.  
  527. .osd button:hover {
  528.  
  529. color: #BAC3CF;
  530. border-color: rgba(26, 28, 34, 0.35);
  531. background-color: rgba(119, 127, 151, 0.45); }
  532.  
  533. .osd button:active, .osd button:checked {
  534.  
  535. background-clip: padding-box;
  536. color: #ffffff;
  537. border-color: rgba(26, 28, 34, 0.35);
  538. background-color: #4a85cb; }
  539.  
  540. .osd button:disabled {
  541. color: #5d626e;
  542. border-color: rgba(26, 28, 34, 0.35);
  543. background-color: rgba(102, 109, 132, 0.2); }
  544.  
  545. .osd button.flat,
  546. .osd button.sidebar-button {
  547.  
  548. border-color: transparent;
  549. background-color: transparent;
  550. background-image: none;
  551. box-shadow: none; }
  552.  
  553. .osd button.flat:hover,
  554. .osd button.sidebar-button:hover {
  555.  
  556. color: #BAC3CF;
  557. border-color: rgba(26, 28, 34, 0.35);
  558. background-color: rgba(119, 127, 151, 0.45); }
  559.  
  560. .osd button.flat:disabled,
  561. .osd button.sidebar-button:disabled {
  562.  
  563. color: #5d626e;
  564. border-color: rgba(26, 28, 34, 0.35);
  565. background-color: rgba(102, 109, 132, 0.2);
  566. background-image: none; }
  567.  
  568. .osd button.flat:active,
  569. .osd button.sidebar-button:active,
  570. .osd button.flat:checked,
  571. .osd button.sidebar-button:checked {
  572.  
  573. color: #ffffff;
  574. border-color: rgba(26, 28, 34, 0.35);
  575. background-color: #4a85cb; }
  576.  
  577. .osd .linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child),
  578. .osd .linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active) + button:not(:checked):not(:active) {
  579.  
  580. box-shadow: none; }
  581.  
  582. button.suggested-action {
  583.  
  584. background-clip: border-box;
  585. color: white;
  586. background-color: #4DADD4;
  587. border-color: #4DADD4; }
  588.  
  589. button.suggested-action.flat,
  590. button.suggested-action.sidebar-button {
  591.  
  592. border-color: transparent;
  593. background-color: transparent;
  594. background-image: none;
  595. color: #4DADD4; }
  596.  
  597. button.suggested-action:hover {
  598.  
  599. background-clip: border-box;
  600. color: white;
  601. background-color: #76c0de;
  602. border-color: #76c0de; }
  603.  
  604. button.suggested-action:active,
  605. button.suggested-action:checked {
  606.  
  607. background-clip: border-box;
  608. color: white;
  609. background-color: #2e96c0;
  610. border-color: #2e96c0; }
  611.  
  612. button.suggested-action.flat:disabled,
  613. button.suggested-action.sidebar-button:disabled {
  614.  
  615. border-color: transparent;
  616. background-color: transparent;
  617. background-image: none;
  618. color: rgba(92, 97, 108, 0.55); }
  619.  
  620. button.suggested-action:disabled {
  621.  
  622. border-color: rgba(207, 214, 230, 0.55);
  623. background-color: rgba(251, 251, 252, 0.55); }
  624.  
  625. button.suggested-action:disabled label,
  626. button.suggested-action:disabled {
  627.  
  628. color: rgba(92, 97, 108, 0.55); }
  629.  
  630. button.destructive-action {
  631.  
  632. background-clip: border-box;
  633. color: white;
  634. background-color: #F04A50;
  635. border-color: #F04A50; }
  636.  
  637. button.destructive-action.flat,
  638. button.destructive-action.sidebar-button {
  639.  
  640. border-color: transparent;
  641. background-color: transparent;
  642. background-image: none;
  643. color: #F04A50; }
  644.  
  645. button.destructive-action:hover {
  646.  
  647. background-clip: border-box;
  648. color: white;
  649. background-color: #f4797e;
  650. border-color: #f4797e; }
  651.  
  652. button.destructive-action:active,
  653. button.destructive-action:checked {
  654.  
  655. background-clip: border-box;
  656. color: white;
  657. background-color: #ec1b22;
  658. border-color: #ec1b22; }
  659.  
  660. button.destructive-action.flat:disabled,
  661. button.destructive-action.sidebar-button:disabled {
  662.  
  663. border-color: transparent;
  664. background-color: transparent;
  665. background-image: none;
  666. color: rgba(92, 97, 108, 0.55); }
  667.  
  668. button.destructive-action:disabled {
  669.  
  670. border-color: rgba(207, 214, 230, 0.55);
  671. background-color: rgba(251, 251, 252, 0.55); }
  672.  
  673. button.destructive-action:disabled label,
  674. button.destructive-action:disabled {
  675.  
  676. color: rgba(92, 97, 108, 0.55); }
  677.  
  678.  
  679.  
  680. .stack-switcher > button > label {
  681.  
  682. padding-left: 6px;
  683. padding-right: 6px; }
  684.  
  685. .stack-switcher > button > image {
  686.  
  687. padding-left: 6px;
  688. padding-right: 6px;
  689. padding-top: 3px;
  690. padding-bottom: 3px; }
  691.  
  692. .stack-switcher > button.text-button {
  693.  
  694. padding-left: 10px;
  695. padding-right: 10px; }
  696.  
  697. .stack-switcher > button.image-button {
  698.  
  699. padding-left: 2px;
  700. padding-right: 2px; }
  701.  
  702. .stack-switcher > button.needs-attention:active > label,
  703. .stack-switcher > button.needs-attention:active > image,
  704. .stack-switcher > button.needs-attention:checked > label,
  705. .stack-switcher > button.needs-attention:checked > image {
  706.  
  707. animation: none;
  708. background-image: none; }
  709.  
  710. .stack-switcher > button.needs-attention > label,
  711. .stack-switcher > button.needs-attention > image,
  712. button stacksidebar row.needs-attention > label,
  713. stacksidebar button row.needs-attention > label {
  714.  
  715. animation: needs_attention 150ms ease-in;
  716. background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#4a85cb), to(transparent));
  717. background-size: 6px 6px, 6px 6px;
  718. background-repeat: no-repeat;
  719. background-position: right 3px, right 4px; }
  720.  
  721. .stack-switcher > button.needs-attention > label:dir(rtl),
  722. .stack-switcher > button.needs-attention > image:dir(rtl),
  723. button stacksidebar row.needs-attention > label:dir(rtl),
  724. stacksidebar button row.needs-attention > label:dir(rtl) {
  725.  
  726. background-position: left 3px, left 4px; }
  727.  
  728. button.font separator,
  729. button.file separator {
  730.  
  731. background-color: transparent; }
  732.  
  733. .inline-toolbar button,
  734. .inline-toolbar button:backdrop {
  735.  
  736. border-radius: 2px;
  737. border-width: 1px; }
  738.  
  739. inline-toolbar toolbutton > button {
  740.  
  741. border-radius: 1px;
  742. box-shadow: none;
  743. color: #252525;
  744. border-color: rgba(0, 0, 0, 0.2);
  745. background-color: white; }
  746.  
  747. .inline-toolbar toolbutton > button:hover {
  748. color: #252525;
  749. border-color: rgba(0, 0, 0, 0.1);
  750. background-color: white; }
  751.  
  752. .inline-toolbar toolbutton > button:active,
  753. .inline-toolbar toolbutton > button:checked {
  754.  
  755. color: #ffffff;
  756. border-color: #4a85cb;
  757. background-color: #4a85cb; }
  758.  
  759. .inline-toolbar toolbutton > button:disabled {
  760.  
  761. border-color: transparent;
  762. background-color: rgba(255, 255, 255, 0.55); }
  763.  
  764. .inline-toolbar toolbutton > button:disabled label,
  765. .inline-toolbar toolbutton > button:disabled {
  766.  
  767. color: rgba(37, 37, 37, 0.55); }
  768.  
  769. .inline-toolbar toolbutton > button:disabled:active,
  770. .inline-toolbar toolbutton > button:disabled:checked {
  771.  
  772. border-color: rgba(32, 106, 217, 0.75);
  773. background-color: rgba(32, 106, 217, 0.75);
  774. opacity: 0.6; }
  775.  
  776. toolbar.inline-toolbar toolbutton, .inline-toolbar toolbutton {
  777.  
  778. border-radius: 1px;
  779. box-shadow: none; }
  780.  
  781. .inline-toolbar toolbutton > button:disabled:active label,
  782. .inline-toolbar toolbutton > button:disabled:active,
  783. .inline-toolbar toolbutton > button:disabled:checked label,
  784. .inline-toolbar toolbutton > button:disabled:checked {
  785.  
  786. color: rgba(255, 255, 255, 0.8); }
  787.  
  788. .linked:not(.vertical):not(.path-bar) > entry + entry {
  789.  
  790. border-left-color: transparent; }
  791.  
  792. .linked:not(.vertical):not(.path-bar) > entry.error + entry,
  793. .linked:not(.vertical):not(.path-bar) > entry + entry.error {
  794.  
  795. border-left-color: #FC4138; }
  796.  
  797. .linked:not(.vertical):not(.path-bar) > entry.warning + entry,
  798. .linked:not(.vertical):not(.path-bar) > entry + entry.warning {
  799.  
  800. border-left-color: #F27835; }
  801.  
  802. .linked:not(.vertical):not(.path-bar) > entry.error + entry.warning,
  803. .linked:not(.vertical):not(.path-bar) > entry.warning + entry.error {
  804.  
  805. border-left-color: #f75d37; }
  806.  
  807. .linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child),
  808. .linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child {
  809.  
  810. border-left-color: rgba(0, 0, 0, 0.12); }
  811.  
  812. .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry,
  813. .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button,
  814. .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo {
  815.  
  816. border-left-color: rgba(0, 0, 0, 0.12); }
  817.  
  818. .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child),
  819. .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child {
  820.  
  821. border-left-color: #F08437; }
  822.  
  823. .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry,
  824. .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button,
  825. .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo {
  826.  
  827. border-left-color: #F08437; }
  828.  
  829. .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child),
  830. .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child {
  831.  
  832. border-left-color: #F27835; }
  833.  
  834. .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry,
  835. .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button,
  836. .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo {
  837.  
  838. border-left-color: #F27835; }
  839.  
  840. .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child),
  841. .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child {
  842.  
  843. border-left-color: #FC4138; }
  844.  
  845. .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry,
  846. .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button,
  847. .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo {
  848.  
  849. border-left-color: #FC4138; }
  850.  
  851. .linked:not(.vertical):not(.path-bar) > button:active + entry,
  852. .linked:not(.vertical):not(.path-bar) > button:checked + entry {
  853.  
  854. border-left-color: rgba(0, 0, 0, 0.12); }
  855.  
  856. .linked:not(.vertical):not(.path-bar) > button + button {
  857.  
  858. border-left-style: none; }
  859.  
  860. .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child),
  861. .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) {
  862.  
  863. box-shadow: inset 1px 0 rgba(0, 0, 0, 0.2);}
  864.  
  865. .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child),
  866. .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) {
  867.  
  868. box-shadow: inset 1px 0 transparent; }
  869.  
  870. .linked:not(.vertical):not(.path-bar) > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover,
  871. .linked:not(.vertical):not(.path-bar) > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover,
  872. .linked:not(.vertical):not(.path-bar) > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover,
  873. .linked:not(.vertical):not(.path-bar) > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover,
  874. .linked:not(.vertical):not(.path-bar) > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child),
  875. .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:disabled,
  876. .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled,
  877. .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover,
  878. .linked:not(.vertical):not(.path-bar) > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled,
  879. .linked:not(.vertical):not(.path-bar) > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled,
  880. .linked:not(.vertical):not(.path-bar) > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled,
  881. .linked:not(.vertical):not(.path-bar) > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled,
  882. .linked:not(.vertical):not(.path-bar) > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child) {
  883.  
  884. box-shadow: none; }
  885.  
  886. .linked:not(.vertical).path-bar > button + button {
  887.  
  888. border-left-style: none; }
  889.  
  890. .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover {
  891.  
  892. box-shadow: inset 1px 0 transparent, inset -1px 0 transparent; }
  893.  
  894. .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover {
  895.  
  896. box-shadow: inset -1px 0 transparent; }
  897.  
  898. .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover {
  899.  
  900. box-shadow: inset 1px 0 transparent; }
  901.  
  902. .linked.vertical > entry + entry {
  903.  
  904. border-top-color: transparent; }
  905.  
  906. .linked.vertical > entry.error + entry,
  907. .linked.vertical > entry + entry.error {
  908.  
  909. border-top-color: #FC4138; }
  910.  
  911. .linked.vertical > entry.warning + entry,
  912. .linked.vertical > entry + entry.warning {
  913.  
  914. border-top-color: #F27835; }
  915.  
  916. .linked.vertical > entry.error + entry.warning,
  917. .linked.vertical > entry.warning + entry.error {
  918.  
  919. border-top-color: #f75d37; }
  920.  
  921. .linked.vertical > entry + entry:focus:not(:last-child),
  922. .linked.vertical > entry + entry:focus:last-child {
  923.  
  924. border-top-color: #4a85cb; }
  925.  
  926. .linked.vertical > entry:focus:not(:only-child) + entry,
  927. .linked.vertical > entry:focus:not(:only-child) + button,
  928. .linked.vertical > entry:focus:not(:only-child) + combobox > box > button.combo {
  929.  
  930. border-top-color: #4a85cb; }
  931.  
  932. .linked.vertical > entry + entry:drop(active):not(:last-child),
  933. .linked.vertical > entry + entry:drop(active):last-child {
  934.  
  935. border-top-color: #F08437; }
  936.  
  937. .linked.vertical > entry:drop(active):not(:only-child) + entry,
  938. .linked.vertical > entry:drop(active):not(:only-child) + button,
  939. .linked.vertical > entry:drop(active):not(:only-child) + combobox > box > button.combo {
  940.  
  941. border-top-color: #F08437; }
  942.  
  943. .linked.vertical > entry + entry.warning:focus:not(:last-child),
  944. .linked.vertical > entry + entry.warning:focus:last-child {
  945.  
  946. border-top-color: #F27835; }
  947.  
  948. .linked.vertical > entry.warning:focus:not(:only-child) + entry,
  949. .linked.vertical > entry.warning:focus:not(:only-child) + button,
  950. .linked.vertical > entry.warning:focus:not(:only-child) + combobox > box > button.combo {
  951. border-top-color: #F27835; }
  952.  
  953.  
  954. .linked.vertical > entry + entry.error:focus:not(:last-child),
  955. .linked.vertical > entry + entry.error:focus:last-child {
  956.  
  957. border-top-color: #FC4138; }
  958.  
  959. .linked.vertical > entry.error:focus:not(:only-child) + entry,
  960. .linked.vertical > entry.error:focus:not(:only-child) + button,
  961. .linked.vertical > entry.error:focus:not(:only-child) + combobox > box > button.combo {
  962.  
  963. border-top-color: #FC4138; }
  964.  
  965. .linked.vertical > button:active + entry,
  966. .linked.vertical > button:checked + entry {
  967.  
  968. border-top-color: #4a85cb; }
  969.  
  970. .linked.vertical > button + button {
  971.  
  972. border-top-style: none; }
  973.  
  974. .linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child),
  975. .linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) {
  976.  
  977. box-shadow: inset 0 1px rgba(0, 0, 0, 0.2); }
  978.  
  979. .linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child),
  980. .linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) {
  981.  
  982. box-shadow: inset 0 1px transparent; }
  983.  
  984. .linked.vertical > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover,
  985. .linked.vertical > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover,
  986. .linked.vertical > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover,
  987. .linked.vertical > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover,
  988. .linked.vertical > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child),
  989. .linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:disabled,
  990. .linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled,
  991. .linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover,
  992. .linked.vertical > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled,
  993. .linked.vertical > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled,
  994. .linked.vertical > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled,
  995. .linked.vertical > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled,
  996. .linked.vertical > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child) {
  997.  
  998. box-shadow: none; }
  999. /**************************************************************************************/
  1000. toolbar.inline-toolbar toolbutton > button.flat,
  1001. .inline-toolbar toolbutton > button.flat,
  1002. toolbar.inline-toolbar toolbutton > button.sidebar-button,
  1003. .inline-toolbar toolbutton > button.sidebar-button, .linked:not(.vertical) > entry,
  1004. .linked:not(.vertical) > entry:focus,
  1005. .inline-toolbar button,
  1006. .inline-toolbar button:backdrop,
  1007. .linked:not(.vertical) > button,
  1008. .linked:not(.vertical) > button:hover,
  1009. .linked:not(.vertical) > button:active,
  1010. .linked:not(.vertical) > button:checked,
  1011. spinbutton:not(.vertical) button,
  1012. spinbutton:not(.vertical) entry,
  1013. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button,
  1014. headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button,
  1015. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover,
  1016. headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover,
  1017. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active,
  1018. headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active,
  1019. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked,
  1020. headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked,
  1021. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled,
  1022. headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled,
  1023. .primary-toolbar .linked:not(.vertical).path-bar > button,
  1024. headerbar .linked:not(.vertical).path-bar > button,
  1025. .primary-toolbar .linked:not(.vertical).path-bar > button:hover,
  1026. headerbar .linked:not(.vertical).path-bar > button:hover,
  1027. .primary-toolbar .linked:not(.vertical).path-bar > button:active,
  1028. headerbar .linked:not(.vertical).path-bar > button:active,
  1029. .primary-toolbar .linked:not(.vertical).path-bar > button:checked,
  1030. headerbar .linked:not(.vertical).path-bar > button:checked
  1031. .primary-toolbar .linked:not(.vertical).path-bar > button:disabled {
  1032.  
  1033.  
  1034. border-radius: 0;
  1035. border-right-style: none; }
  1036.  
  1037.  
  1038.  
  1039. .linked:not(.vertical) > combobox > box > button.combo:dir(ltr):disabled,
  1040. .linked:not(.vertical) > combobox > box > button.combo:dir(ltr){
  1041.  
  1042. border-left: 1px solid;
  1043. border-bottom-left-radius: 5px;
  1044. border-top-left-radius: 5px;}
  1045.  
  1046. .linked:not(.vertical) > combobox > box > button.combo:dir(rtl):disabled,
  1047. .linked:not(.vertical) > combobox > box > button.combo:dir(rtl) {
  1048.  
  1049. border-right: 1px solid;
  1050. border-bottom-right-radius: 5px;
  1051. border-top-right-radius: 5px;}
  1052.  
  1053.  
  1054.  
  1055. headerbar .linked:not(.vertical):not(.path-bar) > button:first-child,
  1056. headerbar .linked:not(.vertical):not(.path-bar) > button:first-child:hover,
  1057. headerbar .linked:not(.vertical):not(.path-bar) > button:first-child:active,
  1058. headerbar .linked:not(.vertical):not(.path-bar) > button:first-child:checked,
  1059. headerbar .linked:not(.vertical):not(.path-bar) > button:first-child:disabled,
  1060. .linked:not(.vertical) > entry:first-child,
  1061. .inline-toolbar button:first-child,
  1062. .linked:not(.vertical) > button:first-child,
  1063. toolbar.inline-toolbar toolbutton:first-child > button.flat,
  1064. .inline-toolbar toolbutton:first-child > button.flat,
  1065. toolbar.inline-toolbar toolbutton:first-child > button.sidebar-button,
  1066. .inline-toolbar toolbutton:first-child > button.sidebar-button,
  1067. spinbutton:not(.vertical) button:first-child, spinbutton:not(.vertical) entry:first-child,
  1068. .linked:not(.vertical) > combobox:first-child > box > button.combo,
  1069. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child,
  1070. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child:hover,
  1071. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child:active,
  1072. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child:checked,
  1073. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child:disabled,
  1074. headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child,
  1075. .primary-toolbar .linked:not(.vertical).path-bar > button:first-child,
  1076. headerbar .linked:not(.vertical).path-bar > button:first-child,
  1077. /*.linked:not(.vertical) > spinbutton:first-child:not(.vertical),*/
  1078. toolbar.inline-toolbar toolbutton:backdrop:first-child > button.flat{
  1079.  
  1080. border-top-left-radius: 5px;
  1081. border-bottom-left-radius: 5px;
  1082. /*margin-right: -1px;*/
  1083. border-style: solid;}
  1084.  
  1085. headerbar .linked:not(.vertical):not(.path-bar) > button:last-child,
  1086. headerbar .linked:not(.vertical):not(.path-bar) > button:last-child:hover,
  1087. headerbar .linked:not(.vertical):not(.path-bar) > button:last-child:active,
  1088. headerbar .linked:not(.vertical):not(.path-bar) > button:last-child:checked,
  1089. headerbar .linked:not(.vertical):not(.path-bar) > button:last-child:disabled,
  1090. .linked:not(.vertical) > entry:last-child,
  1091. .inline-toolbar button:last-child,
  1092. .linked:not(.vertical) > button:last-child,
  1093. toolbar.inline-toolbar toolbutton:last-child > button.flat,
  1094. .inline-toolbar toolbutton:last-child > button.flat,
  1095. toolbar.inline-toolbar toolbutton:last-child > button.sidebar-button,
  1096. .inline-toolbar toolbutton:last-child > button.sidebar-button,
  1097. spinbutton:not(.vertical) button:last-child,
  1098. spinbutton:not(.vertical) entry:last-child,
  1099. .linked:not(.vertical) > combobox:last-child > box > button.combo,
  1100. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child,
  1101. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child:hover,
  1102. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child:active,
  1103. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child:checked,
  1104. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child:disabled,
  1105. headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child,
  1106. .primary-toolbar .linked:not(.vertical).path-bar > button:last-child,
  1107. headerbar .linked:not(.vertical).path-bar > button:last-child,
  1108.  
  1109. toolbar.inline-toolbar toolbutton:backdrop:last-child > button.flat{
  1110.  
  1111. border-top-right-radius: 5px;
  1112. border-bottom-right-radius: 5px;
  1113. border-style: solid;
  1114. margin-left:-1px;
  1115.  
  1116. }
  1117.  
  1118.  
  1119.  
  1120. .linked:not(.vertical) > entry:only-child,
  1121. .inline-toolbar button:only-child,
  1122. .linked:not(.vertical) > button:only-child,
  1123. toolbar.inline-toolbar toolbutton:only-child > button.flat,
  1124. .inline-toolbar toolbutton:only-child > button.flat,
  1125. toolbar.inline-toolbar toolbutton:only-child > button.sidebar-button,
  1126. .inline-toolbar toolbutton:only-child > button.sidebar-button,
  1127. spinbutton:not(.vertical) button:only-child,
  1128. spinbutton:not(.vertical) entry:only-child,
  1129. .linked:not(.vertical) > combobox:only-child > box > button.combo,
  1130. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child,
  1131. headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child,
  1132. .primary-toolbar .linked:not(.vertical).path-bar > button:only-child,
  1133. headerbar .linked:not(.vertical).path-bar > button:only-child {
  1134.  
  1135. border-radius: 5px;
  1136. border-style: solid;
  1137. margin-left: 0px;
  1138. }
  1139.  
  1140. .linked.vertical > entry,
  1141. .linked.vertical > entry:focus, .linked.vertical > button,
  1142. .linked.vertical > button:hover,
  1143. .linked.vertical > button:active,
  1144. .linked.vertical > button:checked, spinbutton.vertical button, spinbutton.vertical entry, .linked.vertical > combobox > box > button.combo {
  1145.  
  1146. border-radius: 0;
  1147. border-bottom-style: none; }
  1148.  
  1149. .linked.vertical > entry:first-child,
  1150. .linked.vertical > button:first-child,
  1151. spinbutton.vertical button:first-child,
  1152. spinbutton.vertical entry:first-child,
  1153. .linked.vertical > combobox:first-child > box > button.combo {
  1154.  
  1155. border-top-left-radius: 5px;
  1156. border-top-right-radius: 5px; }
  1157.  
  1158. .linked.vertical > entry:last-child,
  1159. .linked.vertical > button:last-child,
  1160. spinbutton.vertical button:last-child,
  1161. spinbutton.vertical entry:last-child,
  1162. .linked.vertical > combobox:last-child > box > button.combo {
  1163.  
  1164. border-bottom-left-radius: 5px;
  1165. border-bottom-right-radius: 5px;
  1166. border-bottom-style: solid; }
  1167.  
  1168. .linked.vertical > entry:only-child,
  1169. .linked.vertical > button:only-child,
  1170. spinbutton.vertical button:only-child,
  1171. spinbutton.vertical entry:only-child,
  1172. .linked.vertical > combobox:only-child > box > button.combo {
  1173.  
  1174. border-radius: 5px;
  1175. border-style: solid; }
  1176. /****************************************************************/
  1177. menuitem.button.flat,
  1178. modelbutton.flat, button:link,
  1179. button:visited, button:link:hover,
  1180. button:link:active,
  1181. button:link:checked,
  1182. button:visited:hover,
  1183. button:visited:active,
  1184. button:visited:checked,
  1185. notebook > header > tabs > tab button.flat:hover,
  1186. notebook > header > tabs > tab button.sidebar-button:hover,
  1187. notebook > header > tabs > tab button.flat:active,
  1188. notebook > header > tabs > tab button.sidebar-button:active,
  1189. notebook > header > tabs > tab button.flat:active:hover,
  1190. notebook > header > tabs > tab button.sidebar-button:active:hover,
  1191. .app-notification button.flat,
  1192. .app-notification button.sidebar-button,
  1193. .app-notification button.flat:disabled,
  1194. .app-notification button.sidebar-button:disabled,
  1195. calendar.button {
  1196.  
  1197. border-color: transparent;
  1198. background-color: transparent;
  1199. background-image: none;
  1200. box-shadow: none; }
  1201.  
  1202. menuitem.button.flat,
  1203. modelbutton.flat {
  1204.  
  1205. transition: none;
  1206. min-height: 24px;
  1207. padding-left: 8px;
  1208. padding-right: 8px;
  1209. border-radius: 2px; }
  1210.  
  1211. menuitem.button.flat:hover,
  1212. modelbutton.flat:hover {
  1213. color: white;
  1214. background-color: #4a85cb; }
  1215.  
  1216. menuitem.button.flat:checked,
  1217. modelbutton.flat:checked {
  1218.  
  1219. color: #252525; }
  1220.  
  1221. menuitem.button.flat check:last-child,
  1222. menuitem.button.flat radio:last-child,
  1223. modelbutton.flat check:last-child,
  1224. modelbutton.flat radio:last-child {
  1225.  
  1226. margin-left: 8px; }
  1227.  
  1228. menuitem.button.flat check:first-child,
  1229. menuitem.button.flat radio:first-child,
  1230. modelbutton.flat check:first-child,
  1231. modelbutton.flat radio:first-child {
  1232.  
  1233. margin-right: 8px; }
  1234.  
  1235. modelbutton.flat arrow.left {
  1236.  
  1237. -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); }
  1238.  
  1239. modelbutton.flat arrow.right {
  1240.  
  1241. -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
  1242.  
  1243. *:link, button:link, button:visited {
  1244.  
  1245. color: #2679db; }
  1246.  
  1247. *:link:visited, button:visited {
  1248.  
  1249. color: #1e61b0; }
  1250.  
  1251. *:selected *:link:visited, *:selected button:visited:link, *:selected button:visited {
  1252.  
  1253. color: #bad4f3; }
  1254.  
  1255. *:link:hover, button:hover:link, button:hover:visited {
  1256.  
  1257. color: #4a85cb; }
  1258.  
  1259. *:selected *:link:hover, *:selected button:hover:link, *:selected button:hover:visited {
  1260.  
  1261. color: #eef4fc; }
  1262.  
  1263. *:link:active, button:active:link, button:active:visited {
  1264.  
  1265. color: #2679db; }
  1266.  
  1267. *:selected *:link:active, *:selected button:active:link, *:selected button:active:visited {
  1268.  
  1269. color: #dceaf9; }
  1270.  
  1271. infobar.info *:link, infobar.info button:link,
  1272. infobar.info button:visited,
  1273. infobar.question *:link,
  1274. infobar.question button:link,
  1275. infobar.question button:visited,
  1276. infobar.warning *:link,
  1277. infobar.warning button:link,
  1278. infobar.warning button:visited,
  1279. infobar.error *:link,
  1280. infobar.error button:link,
  1281. infobar.error button:visited,
  1282. *:link:selected, button:selected:link,
  1283. button:selected:visited,
  1284. headerbar.selection-mode .subtitle:link,
  1285. .selection-mode.titlebar:not(headerbar) .subtitle:link,
  1286. *:selected *:link,
  1287. *:selected button:link,
  1288. *:selected button:visited {
  1289.  
  1290. color: #dceaf9; }
  1291.  
  1292. button:link > label, button:visited > label {
  1293.  
  1294. text-decoration-line: underline; }
  1295.  
  1296. spinbutton:drop(active) {
  1297.  
  1298. box-shadow: none; }
  1299.  
  1300. spinbutton button:active {
  1301.  
  1302. color: #ffffff; }
  1303.  
  1304. spinbutton:disabled {
  1305.  
  1306. color: rgba(92, 97, 108, 0.55); }
  1307.  
  1308. spinbutton:not(.vertical) entry {
  1309.  
  1310. min-width: 28px; }
  1311.  
  1312. spinbutton:not(.vertical):dir(ltr) entry,
  1313. spinbutton:not(.vertical):dir(rtl) button.up {
  1314.  
  1315. border-radius: 6px 0 0 6px; }
  1316.  
  1317. spinbutton:not(.vertical) > button + button {
  1318.  
  1319. border-left-style: none; }
  1320.  
  1321. spinbutton:not(.vertical) > button:hover:not(:active),
  1322. spinbutton:not(.vertical) > button:hover + button {
  1323.  
  1324. box-shadow: inset 1px 0 rgba(0, 0, 0, 0.2); }
  1325.  
  1326. spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover),
  1327. spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled {
  1328.  
  1329. box-shadow: inset 1px 0 transparent; }
  1330.  
  1331. spinbutton:not(.vertical) > button:first-child:hover:not(:active),
  1332. spinbutton:not(.vertical) > button.up:dir(rtl):hover:not(:active),
  1333. spinbutton:not(.vertical) > entry + button:not(:active):hover {
  1334.  
  1335. box-shadow: none; }
  1336.  
  1337. spinbutton:not(.vertical) > entry:focus + button {
  1338.  
  1339. border-left-color: rgba(0, 0, 0, 0.12); }
  1340.  
  1341. spinbutton:not(.vertical) > entry:drop(active) + button {
  1342.  
  1343. border-left-color: #F08437; }
  1344.  
  1345. .osd spinbutton:not(.vertical) > button:hover:not(:active),
  1346. .osd spinbutton:not(.vertical) > button:hover + button {
  1347.  
  1348. box-shadow: inset 1px 0 rgba(198, 205, 229, 0.25);}
  1349.  
  1350. .osd spinbutton:not(.vertical) > button:first-child:hover:not(:active),
  1351. .osd spinbutton:not(.vertical) > button.up:dir(rtl):hover:not(:active),
  1352. .osd spinbutton:not(.vertical) > entry + button:not(:active):hover {
  1353.  
  1354. box-shadow: none; }
  1355.  
  1356. .osd spinbutton:not(.vertical) > entry:focus + button {
  1357.  
  1358. border-left-color: rgba(198, 205, 229, 0.25); }
  1359.  
  1360. spinbutton.vertical button, spinbutton.vertical entry {
  1361.  
  1362. padding-left: 4px;
  1363. padding-right: 4px;
  1364. min-width: 0; }
  1365.  
  1366. spinbutton.vertical button.up {
  1367.  
  1368. border-radius: 6px 6px 0 0; }
  1369.  
  1370. spinbutton.vertical > entry:focus + button {
  1371.  
  1372. border-top-color: #4a85cb; }
  1373.  
  1374. spinbutton.vertical > entry:drop(active) + button {
  1375.  
  1376. border-top-color: #F08437; }
  1377.  
  1378. combobox button.combo {
  1379.  
  1380. min-height:0px;
  1381. min-width: 0px;
  1382.  
  1383. padding-left: 6px;
  1384. padding-right: 4px;
  1385. padding-top: 2px;
  1386. padding-bottom:2px; }
  1387.  
  1388. combobox arrow {
  1389.  
  1390. -gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
  1391. min-height: 16px;
  1392. min-width: 16px; }
  1393.  
  1394.  
  1395. toolbar, .inline-toolbar {
  1396.  
  1397. -GtkWidget-window-dragging: true;
  1398. padding: 4px;
  1399. background-color: rgba(239,244,247,1); }
  1400.  
  1401. toolbar separator, .inline-toolbar separator {
  1402.  
  1403. background: none; }
  1404.  
  1405. toolbar.horizontal separator, .horizontal.inline-toolbar separator {
  1406.  
  1407. margin: 0 6px; }
  1408.  
  1409. toolbar.vertical separator, .vertical.inline-toolbar separator {
  1410.  
  1411. margin: 6px 0; }
  1412.  
  1413. .osd toolbar, .osd .inline-toolbar {
  1414.  
  1415. background-color: transparent; }
  1416.  
  1417. toolbar.osd, .osd.inline-toolbar {
  1418.  
  1419. padding: 7px;
  1420. border: 1px solid rgba(0, 0, 0, 0.5);
  1421. border-radius: 3px;
  1422. background-color: rgba(53, 57, 69, 0.85); }
  1423.  
  1424. toolbar.osd.left,
  1425. .osd.left.inline-toolbar,
  1426. toolbar.osd.right,
  1427. .osd.right.inline-toolbar,
  1428. toolbar.osd.top,
  1429. .osd.top.inline-toolbar,
  1430. toolbar.osd.bottom,
  1431. .osd.bottom.inline-toolbar {
  1432.  
  1433. border-radius: 0; }
  1434.  
  1435. toolbar.osd.top, .osd.top.inline-toolbar {
  1436.  
  1437. border-width: 0 0 1px 0; }
  1438.  
  1439. toolbar.osd.bottom, .osd.bottom.inline-toolbar {
  1440.  
  1441. border-width: 1px 0 0 0; }
  1442.  
  1443. toolbar.osd.left, .osd.left.inline-toolbar {
  1444.  
  1445. border-width: 0 1px 0 0; }
  1446.  
  1447. toolbar.osd.right, .osd.right.inline-toolbar {
  1448.  
  1449. border-width: 0 0 0 1px; }
  1450.  
  1451. toolbar:not(.inline-toolbar) switch, .inline-toolbar:not(.inline-toolbar) switch,
  1452. toolbar:not(.inline-toolbar) scale, .inline-toolbar:not(.inline-toolbar) scale,
  1453. toolbar:not(.inline-toolbar) entry, .inline-toolbar:not(.inline-toolbar) entry,
  1454. toolbar:not(.inline-toolbar) spinbutton, .inline-toolbar:not(.inline-toolbar) spinbutton,
  1455. toolbar:not(.inline-toolbar) button, .inline-toolbar:not(.inline-toolbar) button {
  1456.  
  1457. margin-right: 1px;
  1458. margin-bottom: 1px; }
  1459.  
  1460. toolbar:not(.inline-toolbar) .linked > button,
  1461. .inline-toolbar:not(.inline-toolbar) .linked > button,
  1462. toolbar:not(.inline-toolbar) .linked > entry,
  1463. .inline-toolbar:not(.inline-toolbar) .linked > entry {
  1464.  
  1465. margin-right: 0; }
  1466.  
  1467. .primary-toolbar:not(.libreoffice-toolbar) {
  1468.  
  1469. color: rgba(82, 93, 118, 0.8);
  1470. background-color: #ebf0f4;
  1471. box-shadow: none;
  1472. border-width: 0 0 1px 0;
  1473. border-style: solid;
  1474. border-image: linear-gradient(to bottom, #ebf0f4, rgba(212, 213, 219, 0.95)) 1 0 1 0; }
  1475.  
  1476. .inline-toolbar {
  1477.  
  1478. background-color: #edeef0;
  1479. border-style: solid;
  1480. border-color: rgba(105, 105, 105, 0.3);
  1481. border-width: 0 1px 1px;
  1482. padding: 3px;
  1483. border-radius: 0 0 3px 3px; }
  1484.  
  1485. searchbar {
  1486.  
  1487. background-color: rgba(239,244,247,1);
  1488. border-style: solid;
  1489. border-color: rgba(105, 105, 105, 0.3);
  1490. border-width: 0 0 1px;
  1491. padding: 3px; }
  1492.  
  1493. actionbar {
  1494.  
  1495. padding: 6px;
  1496. border-top: 1px solid rgba(105, 105, 105, 0.3);
  1497. background-color: #edeef0; }
  1498.  
  1499. /***********************************************************************/
  1500. /*-------------------------- HEADERBAR---------------------------------*/
  1501. /***********************************************************************/
  1502.  
  1503. headerbar,
  1504. .titlebar:not(headerbar) {
  1505.  
  1506. min-height: 38px;
  1507. padding: 0 7px;
  1508. border-width: 0px 0px 0.4px;
  1509. border-style: solid;
  1510. border-color: #c5c3c6;
  1511. color: rgba(41, 33, 33, 0.8);
  1512. background-color: transparent;
  1513. background-image: linear-gradient(to bottom, #e4e9ef, #c7cbd0);
  1514. }
  1515.  
  1516. .csd headerbar,
  1517. .csd .titlebar:not(headerbar) {
  1518.  
  1519. background-color: transparent;
  1520. border-color: #8c8c8c; }
  1521.  
  1522. headerbar:backdrop,
  1523. .titlebar:backdrop:not(headerbar) {
  1524.  
  1525. transition: 200ms ease-out; }
  1526.  
  1527. headerbar .title, .titlebar:not(headerbar) .title {
  1528.  
  1529. padding-left: 12px;
  1530. padding-right: 12px; }
  1531.  
  1532. headerbar .subtitle, .titlebar:not(headerbar) .subtitle {
  1533. color: #202020;
  1534. font-size: smaller;
  1535. padding-left: 12px;
  1536. padding-right: 12px; }
  1537.  
  1538. headerbar.selection-mode,
  1539. selection-mode.titlebar:not(headerbar) {
  1540.  
  1541. color: #ffffff;
  1542. background-color: rgba(32, 106, 217, 0.95);
  1543. border-color: #8c8c8c;
  1544. box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08); }
  1545.  
  1546. headerbar.selection-mode:backdrop,
  1547. .selection-mode.titlebar:backdrop:not(headerbar) {
  1548.  
  1549. background-color: rgba(32, 106, 217, 0.95);
  1550. color: rgba(255, 255, 255, 0.6);
  1551. border-color: #8c8c8c; }
  1552.  
  1553. headerbar.selection-mode .selection-menu, .selection-mode.titlebar:not(headerbar) .selection-menu {
  1554.  
  1555. box-shadow: none;
  1556. padding-left: 10px;
  1557. padding-right: 10px; }
  1558.  
  1559. headerbar.selection-mode .selection-menu GtkArrow,
  1560. .selection-mode.titlebar:not(headerbar) .selection-menu GtkArrow {
  1561.  
  1562. -GtkArrow-arrow-scaling: 1; }
  1563.  
  1564. headerbar.selection-mode .selection-menu .arrow,
  1565. .selection-mode.titlebar:not(headerbar) .selection-menu .arrow {
  1566. -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
  1567.  
  1568. .maximized headerbar.selection-mode,
  1569. .maximized .selection-mode.titlebar:not(headerbar) {
  1570.  
  1571. background-color: #4a85cb; }
  1572.  
  1573. .tiled headerbar, .tiled headerbar:backdrop,
  1574. .maximized headerbar, .maximized headerbar:backdrop,
  1575. .tiled .titlebar:not(headerbar),
  1576. .tiled .titlebar:backdrop:not(headerbar),
  1577. .maximized .titlebar:not(headerbar),
  1578. .maximized .titlebar:backdrop:not(headerbar) {
  1579.  
  1580. border-radius: 0; }
  1581.  
  1582. .maximized headerbar,
  1583. .maximized .titlebar:not(headerbar) {
  1584.  
  1585. background-color: #dedcdf;
  1586. border-color: #d4d5db; }
  1587.  
  1588. .maximized headerbar:backdrop,
  1589. .maximized .titlebar:backdrop:not(headerbar) {
  1590.  
  1591. background-color: #dedcdf; }
  1592.  
  1593. /*****************************************************************************/
  1594. /*---------------------------TITLEBAR----------------------------------------*/
  1595. /*****************************************************************************/
  1596.  
  1597. headerbar.default-decoration,
  1598. .csd headerbar.default-decoration, headerbar.default-decoration:backdrop,
  1599. .csd headerbar.default-decoration:backdrop,
  1600. .default-decoration.titlebar:not(headerbar),
  1601. .csd .default-decoration.titlebar:not(headerbar),
  1602. .default-decoration.titlebar:backdrop:not(headerbar),
  1603. .csd .default-decoration.titlebar:backdrop:not(headerbar) {
  1604.  
  1605. min-height: 32px;
  1606. border-width: 0 0 0;
  1607. background-color: transparent;
  1608. background-image: linear-gradient(to bottom, #e4e9ef, #cdd1d6); }
  1609.  
  1610. .maximized headerbar.default-decoration,
  1611. .maximized .csd headerbar.default-decoration,
  1612. .maximized headerbar.default-decoration:backdrop,
  1613. .maximized .csd headerbar.default-decoration:backdrop,
  1614. .maximized .default-decoration.titlebar:not(headerbar),
  1615. .maximized .csd .default-decoration.titlebar:not(headerbar),
  1616. .maximized .default-decoration.titlebar:backdrop:not(headerbar),
  1617. .maximized .csd .default-decoration.titlebar:backdrop:not(headerbar) {
  1618.  
  1619. background-color: #dedcdf; }
  1620.  
  1621. .titlebar {
  1622.  
  1623. border-radius: 6px 6px 0 0; }
  1624.  
  1625. headerbar entry, headerbar button, headerbar separator {
  1626. min-height: 16px;
  1627. padding-left:2px;
  1628. padding-top: 3px;
  1629. padding-bottom: 3px;
  1630. margin-top: 7px;
  1631. margin-bottom: 5px; }
  1632.  
  1633. /*headerbar button:not(headerbar button.titlebutton) {
  1634.  
  1635. border-color:rgba(0, 0, 0, 0.12);
  1636. border-bottom-color: rgba(0, 0, 0, 0.25);
  1637. border-top-color: rgba(0, 0, 0, 0.06);
  1638. background-color: rgba(255,255,255,0.98);} */
  1639.  
  1640. separator:first-child + headerbar,
  1641. separator:first-child + headerbar:backdrop,
  1642. headerbar:first-child,
  1643. headerbar:first-child:backdrop {
  1644.  
  1645. border-top-left-radius: 5px; }
  1646.  
  1647. .maximized separator:first-child + headerbar,
  1648. .tiled separator:first-child + headerbar,
  1649. .maximized separator:first-child + headerbar:backdrop,
  1650. .tiled separator:first-child + headerbar:backdrop,
  1651. .maximized headerbar:first-child,
  1652. .tiled headerbar:first-child, .maximized headerbar:first-child:backdrop,
  1653. .tiled headerbar:first-child:backdrop {
  1654.  
  1655. border-radius: 0; }
  1656.  
  1657. headerbar:last-child, headerbar:last-child:backdrop {
  1658.  
  1659. border-top-right-radius: 5px; }
  1660.  
  1661. .maximized headerbar:last-child,
  1662. .tiled headerbar:last-child,
  1663. .maximized headerbar:last-child:backdrop,
  1664. .tiled headerbar:last-child:backdrop {
  1665.  
  1666. border-radius: 0; }
  1667.  
  1668. window > .titlebar:not(headerbar),
  1669. window > .titlebar:not(headerbar):backdrop,
  1670. window.csd > .titlebar:not(headerbar),
  1671. window.csd > .titlebar:not(headerbar):backdrop {
  1672.  
  1673. padding: 0;
  1674. background: none;
  1675. border: none;
  1676. box-shadow: none; }
  1677.  
  1678. .titlebar:not(headerbar) > separator {
  1679.  
  1680. background-image: linear-gradient(to bottom, #d4d5db, #d4d5db); }
  1681.  
  1682. .primary-toolbar:not(.libreoffice-toolbar) separator,
  1683. headerbar separator.titlebutton,
  1684. .titlebar:not(headerbar) separator.titlebutton {
  1685.  
  1686. min-width: 1px;
  1687. min-height: 1px;
  1688. background: none;
  1689. border-width: 0 1px; }
  1690.  
  1691. .primary-toolbar:not(.libreoffice-toolbar) separator:backdrop,
  1692. headerbar separator.titlebutton:backdrop,
  1693. .titlebar:not(headerbar) separator.titlebutton:backdrop {
  1694.  
  1695. opacity: 0.6; }
  1696.  
  1697. .primary-toolbar entry, headerbar entry {
  1698.  
  1699. color: #252525;
  1700. border-color: rgba(105, 105, 105, 0.5);
  1701. background-color: rgba(255, 255, 255,1); }
  1702.  
  1703. .primary-toolbar entry image, headerbar entry image,
  1704. .primary-toolbar entry image:hover,
  1705. headerbar entry image:hover {
  1706.  
  1707. color: inherit; }
  1708.  
  1709. .primary-toolbar entry:backdrop,
  1710. headerbar entry:backdrop {
  1711.  
  1712. opacity: 1; }
  1713.  
  1714. .primary-toolbar entry:focus,
  1715. headerbar entry:focus {
  1716.  
  1717. color: #252525;
  1718. border-color: rgba(105, 105, 105, 0.5);
  1719. background-color: rgba(255, 255, 255,1);
  1720. background-clip: border-box; }
  1721.  
  1722. .primary-toolbar entry:focus image,
  1723. headerbar entry:focus image {
  1724.  
  1725. color: #ffffff; }
  1726.  
  1727. .primary-toolbar entry:disabled, headerbar entry:disabled {
  1728.  
  1729. color: rgba(82, 93, 118, 0.35);
  1730. border-color: rgba(82, 93, 118, 0.1);
  1731. background-color: rgba(255, 255, 255, 0.75); }
  1732.  
  1733. .primary-toolbar entry selection:focus, headerbar entry selection:focus {
  1734.  
  1735. color: #ffffff;
  1736. border-color: #4a85cb;
  1737. background-color: #4a85cb;
  1738. background-clip: border-box; }
  1739.  
  1740. .primary-toolbar entry progress, headerbar entry progress {
  1741.  
  1742. border-color: #4a85cb;
  1743. background-image: none;
  1744. background-color: transparent; }
  1745.  
  1746. .primary-toolbar entry.warning, headerbar entry.warning {
  1747.  
  1748. color: white;
  1749. border-color: #F27835;
  1750. background-color: rgba(238, 162, 121, 0.98); }
  1751.  
  1752. .primary-toolbar entry.warning:focus, headerbar entry.warning:focus {
  1753.  
  1754. color: white;
  1755. background-color: #F27835; }
  1756.  
  1757. .primary-toolbar entry.warning selection,
  1758. headerbar entry.warning selection,
  1759. .primary-toolbar entry.warning selection:focus,
  1760. headerbar entry.warning selection:focus {
  1761.  
  1762. background-color: white;
  1763. color: #F27835; }
  1764.  
  1765. .primary-toolbar entry.error, headerbar entry.error {
  1766.  
  1767. color: white;
  1768. border-color: #FC4138;
  1769. background-color: rgba(244, 128, 123, 0.98); }
  1770.  
  1771. .primary-toolbar entry.error:focus, headerbar entry.error:focus {
  1772.  
  1773. color: white;
  1774. background-color: #FC4138; }
  1775.  
  1776. .primary-toolbar entry.error selection,
  1777. headerbar entry.error selection,
  1778. .primary-toolbar entry.error selection:focus,
  1779. headerbar entry.error selection:focus {
  1780.  
  1781. background-color: white;
  1782. color: #FC4138; }
  1783.  
  1784. .primary-toolbar button, headerbar button {
  1785.  
  1786. color: #696969;
  1787. border-color:rgba(0, 0, 0, 0.12);
  1788. border-bottom-color: rgba(0, 0, 0, 0.25);
  1789. border-top-color: rgba(0, 0, 0, 0.06);
  1790. /*border-color: rgba(105, 105, 105, 0.3);*/
  1791. background-color: white; }
  1792.  
  1793. .primary-toolbar button:backdrop, headerbar button:backdrop {
  1794.  
  1795. color: #696969;
  1796. border-color:rgba(0, 0, 0, 0.12);
  1797. border-bottom-color: rgba(0, 0, 0, 0.25);
  1798. border-top-color: rgba(0, 0, 0, 0.06);
  1799. /*border-color: rgba(105, 105, 105, 0.3);*/
  1800. background-color: white; }
  1801.  
  1802. .primary-toolbar button:hover, headerbar button:hover {
  1803.  
  1804. color: #696969;
  1805. border-color:rgba(0, 0, 0, 0.12);
  1806. border-bottom-color: rgba(0, 0, 0, 0.25);
  1807. border-top-color: rgba(0, 0, 0, 0.06);
  1808. /*border-color: rgba(105, 105, 105, 0.3);*/
  1809. background-color: white; }
  1810.  
  1811. .primary-toolbar button:active,
  1812. headerbar button:active,
  1813. .primary-toolbar button:checked,
  1814. headerbar button:checked {
  1815.  
  1816. color: #ffffff;
  1817. border-color:rgba(0, 0, 0, 0.12);
  1818. border-bottom-color: rgba(0, 0, 0, 0.25);
  1819. border-top-color: rgba(0, 0, 0, 0.06);
  1820. /*border-color: rgba(105, 105, 105, 0.3);*/
  1821. background-color: rgba(0, 0, 0, 0.45);
  1822. background-clip: border-box; }
  1823.  
  1824. .primary-toolbar button:disabled, headerbar button:disabled {
  1825.  
  1826. color: #696969;
  1827. border-color:rgba(0, 0, 0, 0.12);
  1828. border-bottom-color: rgba(0, 0, 0, 0.25);
  1829. border-top-color: rgba(0, 0, 0, 0.06);
  1830. /*border-color: rgba(105, 105, 105, 0.3);*/
  1831. background-color: white; }
  1832.  
  1833. .primary-toolbar button:disabled label,
  1834. headerbar button:disabled label,
  1835. .primary-toolbar button:disabled,
  1836. headerbar button:disabled {
  1837.  
  1838. color: rgba(82, 93, 118, 0.35); }
  1839.  
  1840. .primary-toolbar button:disabled:active,
  1841. headerbar button:disabled:active,
  1842. .primary-toolbar button:disabled:checked,
  1843. headerbar button:disabled:checked {
  1844.  
  1845. color: rgba(255, 255, 255, 0.75);
  1846. /*border-color: rgba(105, 105, 105, 0.65);*/
  1847. border-color:rgba(0, 0, 0, 0.12);
  1848. border-bottom-color: rgba(0, 0, 0, 0.25);
  1849. border-top-color: rgba(0, 0, 0, 0.06);
  1850. background-color: rgba(105, 105, 105, 0.65); }
  1851.  
  1852. .selection-mode.primary-toolbar button, headerbar.selection-mode button, .selection-mode.primary-toolbar button.flat, headerbar.selection-mode button.flat, .selection-mode.primary-toolbar button.sidebar-button, headerbar.selection-mode button.sidebar-button {
  1853.  
  1854. border-color: transparent;
  1855. background-color: transparent;
  1856. background-image: none;
  1857. color: #ffffff;
  1858. background-color: rgba(255, 255, 255, 0); }
  1859.  
  1860. .primary-toolbar .linked:not(.vertical):not(.path-bar):not(.stack-switcher) button:not(:last-child):not(:only-child),
  1861. headerbar .linked:not(.vertical):not(.path-bar):not(.stack-switcher) button:not(:last-child):not(:only-child) {
  1862.  
  1863. margin-right: 1px; }
  1864.  
  1865. .primary-toolbar .linked:not(.vertical):not(.path-bar) > button,
  1866. headerbar .linked:not(.vertical):not(.path-bar) > button,
  1867. .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:hover,
  1868. headerbar .linked:not(.vertical):not(.path-bar) > button:hover,
  1869. .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:active,
  1870. headerbar .linked:not(.vertical):not(.path-bar) > button:active,
  1871. .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:checked,
  1872. headerbar .linked:not(.vertical):not(.path-bar) > button:checked,
  1873. .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:disabled,
  1874. headerbar .linked:not(.vertical):not(.path-bar) > button:disabled {
  1875.  
  1876. border-radius: 5px;
  1877. border-style: solid;
  1878. /*box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08); }*/}
  1879.  
  1880. .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child),
  1881. headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child),
  1882. .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action),
  1883. headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action),
  1884. .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child),
  1885. headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child),
  1886. .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover),
  1887. headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) {
  1888.  
  1889. box-shadow: none; }
  1890.  
  1891. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button,
  1892. headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button,
  1893. .primary-toolbar .linked:not(.vertical).path-bar > button,
  1894. headerbar .linked:not(.vertical).path-bar > button {
  1895.  
  1896. color: #696969;
  1897. /*border-color: rgba(105, 105, 105, 0.3);*/
  1898. border-color:rgba(0, 0, 0, 0.12);
  1899. border-bottom-color: rgba(0, 0, 0, 0.25);
  1900. border-top-color: rgba(0, 0, 0, 0.06);
  1901. background-color: white; }
  1902.  
  1903. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover,
  1904. headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover,
  1905. .primary-toolbar .linked:not(.vertical).path-bar > button:hover,
  1906. headerbar .linked:not(.vertical).path-bar > button:hover {
  1907.  
  1908. background-color: white; }
  1909.  
  1910. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active,
  1911. headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active,
  1912. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked,
  1913. headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked,
  1914. .primary-toolbar .linked:not(.vertical).path-bar > button:active,
  1915. headerbar .linked:not(.vertical).path-bar > button:active,
  1916. .primary-toolbar .linked:not(.vertical).path-bar > button:checked,
  1917. headerbar .linked:not(.vertical).path-bar > button:checked {
  1918.  
  1919. color: #ffffff;
  1920. color: #ffffff;
  1921. text-shadow: 0 -1px alpha(#000, 0.02),
  1922. -1px 0 alpha(#000, 0.05),
  1923. 1px 0 alpha(#000, 0.05),
  1924. 0 1px alpha(#000, 0.15),
  1925. 0 2px alpha(#000, 0.05);
  1926. -gtk-icon-shadow: 0 1px alpha(#000, 0.2);
  1927. /*border-color: rgba(105, 105, 105, 0.3);*/
  1928. border-color:rgba(0, 0, 0, 0.12);
  1929. border-bottom-color: rgba(0, 0, 0, 0.25);
  1930. border-top-color: rgba(0, 0, 0, 0.06);
  1931. background-color: rgba(0, 0, 0, 0.45); }
  1932.  
  1933. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled,
  1934. headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled,
  1935. .primary-toolbar .linked:not(.vertical).path-bar > button:disabled,
  1936. headerbar .linked:not(.vertical).path-bar > button:disabled {
  1937.  
  1938. color: rgba(41, 33, 33, 0.4); }
  1939.  
  1940. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button + button,
  1941. headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button + button,
  1942. .primary-toolbar .linked:not(.vertical).path-bar > button + button,
  1943. headerbar .linked:not(.vertical).path-bar > button + button {
  1944.  
  1945. border-left-style: none; }
  1946.  
  1947. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):hover,
  1948. headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):hover,
  1949. .primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover,
  1950. headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover {
  1951.  
  1952. /* box-shadow: inset 1px 0 rgba(105, 105, 105, 0.1), inset -1px 0 rgba(105, 105, 105, 0.1); */}
  1953.  
  1954. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover,
  1955. headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover,
  1956. .primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover,
  1957. headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover {
  1958.  
  1959. /* box-shadow: inset 1px 0 rgba(105, 105, 105, 0.1), inset -1px 0 rgba(105, 105, 105, 0.1);*/ }
  1960.  
  1961. .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover,
  1962. headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover,
  1963. .primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover,
  1964. headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover {
  1965.  
  1966. /*box-shadow: inset -1px 0 rgba(105, 105, 105, 0.1); */}
  1967.  
  1968. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry,
  1969. headerbar .linked:not(.vertical):not(.path-bar) > entry + entry {
  1970.  
  1971. border-left-color: rgba(105, 105, 105, 0.1); }
  1972.  
  1973. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error + entry,
  1974. headerbar .linked:not(.vertical):not(.path-bar) > entry.error + entry,
  1975. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error,
  1976. headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error {
  1977.  
  1978. border-left-color: #FC4138; }
  1979.  
  1980. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry,
  1981. headerbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry,
  1982. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning,
  1983. headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning {
  1984.  
  1985. border-left-color: #F27835; }
  1986.  
  1987. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error + entry.warning,
  1988. headerbar .linked:not(.vertical):not(.path-bar) > entry.error + entry.warning,
  1989. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry.error,
  1990. headerbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry.error {
  1991.  
  1992. border-left-color: #f75d37; }
  1993.  
  1994. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child),
  1995. headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child),
  1996. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child,
  1997. headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child {
  1998.  
  1999. border-left-color: rgba(0, 0, 0, 0.12); }
  2000.  
  2001. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry,
  2002. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button,
  2003. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo,
  2004. headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo {
  2005.  
  2006. border-left-color: rgba(0, 0, 0, 0.12); }
  2007.  
  2008. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child),
  2009. headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child),
  2010. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child,
  2011. headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child {
  2012.  
  2013. border-left-color: #F08437; }
  2014.  
  2015. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry,
  2016. headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry,
  2017. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button,
  2018. headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button,
  2019. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo,
  2020. headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo {
  2021.  
  2022. border-left-color: #F08437; }
  2023.  
  2024. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child),
  2025. headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child),
  2026. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child,
  2027. headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child {
  2028.  
  2029. border-left-color: #F27835; }
  2030.  
  2031. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry,
  2032. headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry,
  2033. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button,
  2034. headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button,
  2035. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo,
  2036. headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo {
  2037.  
  2038. border-left-color: #F27835; }
  2039.  
  2040. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child),
  2041. headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child),
  2042. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child,
  2043. headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child {
  2044.  
  2045. border-left-color: #FC4138; }
  2046.  
  2047. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry,
  2048. headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry,
  2049. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button,
  2050. headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button,
  2051. .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo,
  2052. headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo {
  2053.  
  2054. border-left-color: #FC4138; }
  2055.  
  2056. .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:active + entry,
  2057. headerbar .linked:not(.vertical):not(.path-bar) > button:active + entry,
  2058. .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:checked + entry,
  2059. headerbar .linked:not(.vertical):not(.path-bar) > button:checked + entry {
  2060.  
  2061. border-left-color: rgba(0, 0, 0, 0.12); }
  2062.  
  2063. .primary-toolbar button.suggested-action,
  2064. headerbar button.suggested-action {
  2065.  
  2066. background-clip: border-box;
  2067. color: white;
  2068. background-color: #4DADD4;
  2069. border-color: #4DADD4; }
  2070.  
  2071. .primary-toolbar button.suggested-action.flat,
  2072. headerbar button.suggested-action.flat,
  2073. .primary-toolbar button.suggested-action.sidebar-button,
  2074. headerbar button.suggested-action.sidebar-button {
  2075.  
  2076. border-color: transparent;
  2077. background-color: transparent;
  2078. background-image: none;
  2079. color: #4DADD4; }
  2080.  
  2081. .primary-toolbar button.suggested-action:hover, headerbar button.suggested-action:hover {
  2082.  
  2083. background-clip: border-box;
  2084. color: white;
  2085. background-color: #76c0de;
  2086. border-color: #76c0de; }
  2087.  
  2088. .primary-toolbar button.suggested-action:active,
  2089. headerbar button.suggested-action:active,
  2090. .primary-toolbar button.suggested-action:checked,
  2091. headerbar button.suggested-action:checked {
  2092.  
  2093. background-clip: border-box;
  2094. color: white;
  2095. background-color: #2e96c0;
  2096. border-color: #2e96c0; }
  2097.  
  2098. .primary-toolbar button.suggested-action.flat:disabled,
  2099. headerbar button.suggested-action.flat:disabled,
  2100. .primary-toolbar button.suggested-action.sidebar-button:disabled,
  2101. headerbar button.suggested-action.sidebar-button:disabled,
  2102. .primary-toolbar button.suggested-action:disabled,
  2103. headerbar button.suggested-action:disabled {
  2104.  
  2105. background-color: rgba(231, 232, 235, 0);
  2106. border-color: rgba(231, 232, 235, 0); }
  2107.  
  2108. .primary-toolbar button.suggested-action.flat:disabled label,
  2109. headerbar button.suggested-action.flat:disabled label,
  2110. .primary-toolbar button.suggested-action.sidebar-button:disabled label,
  2111. headerbar button.suggested-action.sidebar-button:disabled label,
  2112. .primary-toolbar button.suggested-action.flat:disabled,
  2113. headerbar button.suggested-action.flat:disabled,
  2114. .primary-toolbar button.suggested-action.sidebar-button:disabled,
  2115. headerbar button.suggested-action.sidebar-button:disabled,
  2116. .primary-toolbar button.suggested-action:disabled label,
  2117. headerbar button.suggested-action:disabled label,
  2118. .primary-toolbar button.suggested-action:disabled,
  2119. headerbar button.suggested-action:disabled {
  2120.  
  2121. color: rgba(41, 33, 33, 0.35); }
  2122.  
  2123. .primary-toolbar button.suggested-action:backdrop,
  2124. headerbar button.suggested-action:backdrop,
  2125. .primary-toolbar button.suggested-action:backdrop,
  2126. headerbar button.suggested-action:backdrop {
  2127.  
  2128. opacity: 0.8; }
  2129.  
  2130. .primary-toolbar button.destructive-action,
  2131. headerbar button.destructive-action {
  2132.  
  2133. background-clip: border-box;
  2134. color: white;
  2135. background-color: #F04A50;
  2136. border-color: #F04A50; }
  2137.  
  2138. .primary-toolbar button.destructive-action.flat,
  2139. headerbar button.destructive-action.flat,
  2140. .primary-toolbar button.destructive-action.sidebar-button,
  2141. headerbar button.destructive-action.sidebar-button {
  2142.  
  2143. border-color: transparent;
  2144. background-color: transparent;
  2145. background-image: none;
  2146. color: #F04A50; }
  2147.  
  2148. .primary-toolbar button.destructive-action:hover,
  2149. headerbar button.destructive-action:hover {
  2150.  
  2151. background-clip: border-box;
  2152. color: white;
  2153. background-color: #f4797e;
  2154. border-color: #f4797e; }
  2155.  
  2156. .primary-toolbar button.destructive-action:active,
  2157. headerbar button.destructive-action:active,
  2158. .primary-toolbar button.destructive-action:checked,
  2159. headerbar button.destructive-action:checked {
  2160.  
  2161. background-clip: border-box;
  2162. color: white;
  2163. background-color: #ec1b22;
  2164. border-color: #ec1b22; }
  2165.  
  2166. .primary-toolbar button.destructive-action.flat:disabled,
  2167. headerbar button.destructive-action.flat:disabled,
  2168. .primary-toolbar button.destructive-action.sidebar-button:disabled,
  2169. headerbar button.destructive-action.sidebar-button:disabled,
  2170. .primary-toolbar button.destructive-action:disabled,
  2171. headerbar button.destructive-action:disabled {
  2172.  
  2173. background-color: rgba(231, 232, 235, 0);
  2174. border-color: rgba(231, 232, 235, 0); }
  2175.  
  2176. .primary-toolbar button.destructive-action.flat:disabled label,
  2177. headerbar button.destructive-action.flat:disabled label,
  2178. .primary-toolbar button.destructive-action.sidebar-button:disabled label,
  2179. headerbar button.destructive-action.sidebar-button:disabled label,
  2180. .primary-toolbar button.destructive-action.flat:disabled,
  2181. headerbar button.destructive-action.flat:disabled,
  2182. .primary-toolbar button.destructive-action.sidebar-button:disabled,
  2183. headerbar button.destructive-action.sidebar-button:disabled,
  2184. .primary-toolbar button.destructive-action:disabled label,
  2185. headerbar button.destructive-action:disabled label,
  2186. .primary-toolbar button.destructive-action:disabled,
  2187. headerbar button.destructive-action:disabled {
  2188.  
  2189. color: rgba(41, 33, 33, 0.35); }
  2190.  
  2191. .primary-toolbar button.destructive-action:backdrop,
  2192. headerbar button.destructive-action:backdrop,
  2193. .primary-toolbar button.destructive-action:backdrop,
  2194. headerbar button.destructive-action:backdrop {
  2195.  
  2196. opacity: 0.8; }
  2197.  
  2198. .primary-toolbar spinbutton:not(.vertical):focus,
  2199. headerbar spinbutton:not(.vertical):focus {
  2200.  
  2201. color: #ffffff;
  2202. caret-color: #ffffff; }
  2203.  
  2204. .primary-toolbar spinbutton:not(.vertical) button,
  2205. headerbar spinbutton:not(.vertical) button,
  2206. .primary-toolbar spinbutton:not(.vertical) button:disabled,
  2207. headerbar spinbutton:not(.vertical) button:disabled {
  2208.  
  2209. color: #696969;
  2210. border-color: rgba(105, 105, 105, 0.3);
  2211. background-color: white; }
  2212.  
  2213. .primary-toolbar spinbutton:not(.vertical) button:hover,
  2214. headerbar spinbutton:not(.vertical) button:hover {
  2215.  
  2216. background-color: white; }
  2217.  
  2218. .primary-toolbar spinbutton:not(.vertical) button:active,
  2219. headerbar spinbutton:not(.vertical) button:active,
  2220. .primary-toolbar spinbutton:not(.vertical) button:checked,
  2221. headerbar spinbutton:not(.vertical) button:checked {
  2222.  
  2223. color: #ffffff;
  2224. border-color: rgba(105, 105, 105, 0.3);
  2225. background-color: rgba(0, 0, 0, 0.45); }
  2226.  
  2227. .primary-toolbar spinbutton:not(.vertical) button:disabled,
  2228. headerbar spinbutton:not(.vertical) button:disabled {
  2229.  
  2230. color: rgba(41, 33, 33, 0.4); }
  2231.  
  2232. .primary-toolbar spinbutton:not(.vertical) > button + button,
  2233. headerbar spinbutton:not(.vertical) > button + button {
  2234.  
  2235. border-left-style: none; }
  2236.  
  2237. .primary-toolbar spinbutton:not(.vertical) > button:hover:not(:active),
  2238. headerbar spinbutton:not(.vertical) > button:hover:not(:active),
  2239. .primary-toolbar spinbutton:not(.vertical) > button:hover + button,
  2240. headerbar spinbutton:not(.vertical) > button:hover + button {
  2241.  
  2242. box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); }
  2243.  
  2244. .primary-toolbar spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover),
  2245. headerbar spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover),
  2246. .primary-toolbar spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled,
  2247. headerbar spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled {
  2248.  
  2249. box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); }
  2250.  
  2251. .primary-toolbar spinbutton:not(.vertical) > button:first-child:hover:not(:active),
  2252. headerbar spinbutton:not(.vertical) > button:first-child:hover:not(:active),
  2253. .primary-toolbar spinbutton:not(.vertical) > entry + button:not(:active):hover,
  2254. headerbar spinbutton:not(.vertical) > entry + button:not(:active):hover {
  2255.  
  2256. box-shadow: none; }
  2257.  
  2258. .primary-toolbar spinbutton:not(.vertical) > entry:focus + button,
  2259. headerbar spinbutton:not(.vertical) > entry:focus + button {
  2260.  
  2261. border-left-color: rgba(0, 0, 0, 0.12); }
  2262.  
  2263. .primary-toolbar combobox:disabled,
  2264. headerbar combobox:disabled {
  2265.  
  2266. color: rgba(82, 93, 118, 0.2); }
  2267.  
  2268. .primary-toolbar combobox > .linked > button.combo,
  2269. headerbar combobox > .linked > button.combo {
  2270.  
  2271. color: rgba(41, 33, 33, 0.8);
  2272. border-color: rgba(105, 105, 105, 0.3);
  2273. background-color: rgba(255, 255, 255, 0.9); }
  2274.  
  2275. .primary-toolbar combobox > .linked > button.combo image,
  2276. headerbar combobox > .linked > button.combo image,
  2277. .primary-toolbar combobox > .linked > button.combo image:hover,
  2278. headerbar combobox > .linked > button.combo image:hover {
  2279.  
  2280. color: inherit; }
  2281.  
  2282. .primary-toolbar combobox > .linked > button.combo:hover,
  2283. headerbar combobox > .linked > button.combo:hover {
  2284.  
  2285. color: #ffffff;
  2286. border-color: #4a85cb;
  2287. background-color: #4a85cb;
  2288. box-shadow: none; }
  2289.  
  2290. .primary-toolbar combobox > .linked > button.combo:disabled,
  2291. headerbar combobox > .linked > button.combo:disabled {
  2292.  
  2293. color: rgba(41, 33, 33, 0.35);
  2294. border-color: rgba(105, 105, 105, 0.3);
  2295. background-color: rgba(255, 255, 255, 0.75); }
  2296.  
  2297. .primary-toolbar combobox > .linked > entry.combo:dir(ltr),
  2298. headerbar combobox > .linked > entry.combo:dir(ltr) {
  2299.  
  2300. border-right-style: none; }
  2301.  
  2302. .primary-toolbar combobox > .linked > entry.combo:dir(ltr):focus,
  2303. headerbar combobox > .linked > entry.combo:dir(ltr):focus {
  2304.  
  2305. box-shadow: none; }
  2306.  
  2307. .primary-toolbar combobox > .linked > entry.combo:dir(ltr):focus,
  2308. headerbar combobox > .linked > entry.combo:dir(ltr):focus {
  2309.  
  2310. box-shadow: 1px 0 #4a85cb; }
  2311.  
  2312. .primary-toolbar combobox > .linked > entry.combo:dir(rtl),
  2313. headerbar combobox > .linked > entry.combo:dir(rtl) {
  2314.  
  2315. border-left-style: none; }
  2316.  
  2317. .primary-toolbar combobox > .linked > entry.combo:dir(rtl):focus,
  2318. headerbar combobox > .linked > entry.combo:dir(rtl):focus {
  2319.  
  2320. box-shadow: none; }
  2321.  
  2322. .primary-toolbar combobox > .linked > entry.combo:dir(rtl):focus,
  2323. headerbar combobox > .linked > entry.combo:dir(rtl):focus {
  2324.  
  2325. box-shadow: -1px 0 #4a85cb; }
  2326.  
  2327. .primary-toolbar combobox > .linked > button.combo:dir(ltr),
  2328. headerbar combobox > .linked > button.combo:dir(ltr),
  2329. .primary-toolbar combobox > .linked > button.combo:dir(ltr):hover,
  2330. headerbar combobox > .linked > button.combo:dir(ltr):hover,
  2331. .primary-toolbar combobox > .linked > button.combo:dir(ltr):active,
  2332. headerbar combobox > .linked > button.combo:dir(ltr):active,
  2333. .primary-toolbar combobox > .linked > button.combo:dir(ltr):checked,
  2334. headerbar combobox > .linked > button.combo:dir(ltr):checked,
  2335. .primary-toolbar combobox > .linked > button.combo:dir(ltr):disabled,
  2336. headerbar combobox > .linked > button.combo:dir(ltr):disabled {
  2337.  
  2338. border-top-left-radius: 5px;
  2339. border-bottom-left-radius: 5px; }
  2340.  
  2341. .primary-toolbar combobox > .linked > button.combo:dir(rtl),
  2342. headerbar combobox > .linked > button.combo:dir(rtl),
  2343. .primary-toolbar combobox > .linked > button.combo:dir(rtl):hover,
  2344. headerbar combobox > .linked > button.combo:dir(rtl):hover,
  2345. .primary-toolbar combobox > .linked > button.combo:dir(rtl):active,
  2346. headerbar combobox > .linked > button.combo:dir(rtl):active,
  2347. .primary-toolbar combobox > .linked > button.combo:dir(rtl):checked,
  2348. headerbar combobox > .linked > button.combo:dir(rtl):checked,
  2349. .primary-toolbar combobox > .linked > button.combo:dir(rtl):disabled,
  2350. headerbar combobox > .linked > button.combo:dir(rtl):disabled {
  2351.  
  2352. border-top-right-radius: 5px;
  2353. border-bottom-right-radius: 5px;
  2354. border-top-left-radius: 0px;
  2355. border-bottom-left-radius:0px; }
  2356.  
  2357. .primary-toolbar switch:backdrop,
  2358. headerbar switch:backdrop {
  2359.  
  2360. opacity: 0.75; }
  2361.  
  2362. .primary-toolbar progressbar trough,
  2363. headerbar progressbar trough {
  2364.  
  2365. background-color: rgba(105, 105, 105, 0.15); }
  2366.  
  2367. .primary-toolbar progressbar:backdrop,
  2368. headerbar progressbar:backdrop {
  2369.  
  2370. opacity: 0.75; }
  2371.  
  2372. .primary-toolbar scale:backdrop,
  2373. headerbar scale:backdrop {
  2374.  
  2375. opacity: 0.75; }
  2376.  
  2377. .primary-toolbar scale slider,
  2378. headerbar scale slider {
  2379.  
  2380. background-color: white;
  2381. border-color: rgba(105, 105, 105, 0.3); }
  2382.  
  2383. .primary-toolbar scale slider:hover,
  2384. headerbar scale slider:hover {
  2385.  
  2386. background-color: white;
  2387. border-color: rgba(105, 105, 105, 0.3); }
  2388.  
  2389. .primary-toolbar scale slider:active, headerbar scale slider:active {
  2390.  
  2391. background-color: #4a85cb;
  2392. border-color: #4a85cb; }
  2393.  
  2394. .primary-toolbar scale slider:disabled, headerbar scale slider:disabled {
  2395.  
  2396. background-color: #f8f8f9;
  2397. border-color: rgba(105, 105, 105, 0.3); }
  2398.  
  2399. .primary-toolbar scale trough,
  2400. headerbar scale trough {
  2401.  
  2402. background-color: rgba(105, 105, 105, 0.15); }
  2403.  
  2404. .primary-toolbar scale trough:disabled,
  2405. headerbar scale trough:disabled {
  2406.  
  2407. background-color: rgba(105, 105, 105, 0.1); }
  2408.  
  2409. .path-bar button.text-button,
  2410. .path-bar button.image-button,
  2411. .path-bar button {
  2412.  
  2413. padding-left: 6px;
  2414. padding-right: 6px; }
  2415.  
  2416. .path-bar button.text-button.image-button label {
  2417. padding-left: 0;
  2418. padding-right: 0; }
  2419.  
  2420. .path-bar button.text-button.image-button label:last-child,
  2421. .path-bar button label:last-child {
  2422.  
  2423. padding-right: 10px; }
  2424.  
  2425. .path-bar button.text-button.image-button label:first-child,
  2426. .path-bar button label:first-child {
  2427.  
  2428. padding-left: 10px; }
  2429.  
  2430. .path-bar button.slider-button,
  2431. .path-bar button:not(.image-button):not(.text-button) {
  2432.  
  2433. padding-left: 1px;
  2434. padding-right: 1px; }
  2435.  
  2436. .path-bar button image {
  2437.  
  2438. padding-left: 4px;
  2439. padding-right: 4px; }
  2440.  
  2441. treeview.view {
  2442.  
  2443. border-left-color: rgba(37, 37, 37, 0.15);
  2444. border-top-color: rgba(0, 0, 0, 0.1); }
  2445. * {
  2446. -GtkTreeView-horizontal-separator: 4;
  2447. -GtkTreeView-grid-line-width: 1;
  2448. -GtkTreeView-grid-line-pattern: '';
  2449. -GtkTreeView-tree-line-width: 1;
  2450. -GtkTreeView-tree-line-pattern: '';
  2451. -GtkTreeView-expander-size: 16; }
  2452.  
  2453. treeview.view acceleditor > label {
  2454.  
  2455. background-color: #4a85cb; }
  2456. treeview.view:selected, treeview.view:selected:focus {
  2457.  
  2458. border-radius: 0;
  2459. border-left-color: #90b5ec;
  2460. border-top-color: rgba(37, 37, 37, 0.1); }
  2461.  
  2462. treeview.view:disabled {
  2463.  
  2464. color: rgba(37, 37, 37, 0.55); }
  2465.  
  2466. treeview.view:disabled:selected {
  2467.  
  2468. color: #79a6e8; }
  2469.  
  2470. treeview.view.separator {
  2471.  
  2472. min-height: 2px;
  2473. color: rgba(0, 0, 0, 0.1); }
  2474.  
  2475. treeview.view:drop(active) {
  2476.  
  2477. border-style: solid none;
  2478. border-width: 1px;
  2479. border-color: #23487f; }
  2480.  
  2481. treeview.view:drop(active).after {
  2482.  
  2483. border-top-style: none; }
  2484.  
  2485. treeview.view:drop(active).before {
  2486.  
  2487. border-bottom-style: none; }
  2488.  
  2489. treeview.view.expander {
  2490.  
  2491. -gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
  2492. color: #929292; }
  2493.  
  2494. treeview.view.expander:dir(rtl) {
  2495.  
  2496. -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); }
  2497.  
  2498. treeview.view.expander:hover {
  2499.  
  2500. color: #252525; }
  2501.  
  2502. treeview.view.expander:selected {
  2503.  
  2504. color: #bcd2f4; }
  2505.  
  2506. treeview.view.expander:selected:hover {
  2507.  
  2508. color: #ffffff; }
  2509.  
  2510. treeview.view.expander:checked {
  2511.  
  2512. -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
  2513.  
  2514. treeview.view.progressbar, treeview.view.progressbar:focus {
  2515.  
  2516. color: #ffffff;
  2517. border-radius: 3px;
  2518. background-color: #4a85cb; }
  2519.  
  2520. treeview.view.progressbar:selected,
  2521. treeview.view.progressbar:selected:focus,
  2522. treeview.view.progressbar:focus:selected,
  2523. treeview.view.progressbar:focus:selected:focus {
  2524.  
  2525. color: #4a85cb;
  2526. box-shadow: none;
  2527. background-color: #ffffff; }
  2528.  
  2529. treeview.view.trough {
  2530.  
  2531. color: #252525;
  2532. background-color: rgba(0, 0, 0, 0.2);
  2533. border-radius: 3px;
  2534. border-width: 0; }
  2535.  
  2536. treeview.view.trough:selected, treeview.view.trough:selected:focus {
  2537.  
  2538. color: #ffffff;
  2539. background-color: rgba(0, 0, 0, 0.2);
  2540. border-radius: 3px;
  2541. border-width: 0; }
  2542.  
  2543. treeview.view header button {
  2544.  
  2545. min-height: 0;
  2546. min-width: 0;
  2547. padding: 3px 6px;
  2548. font-weight: bold;
  2549. color: #515151;
  2550. background-color: #ffffff;
  2551. background-image: none;
  2552. border-style: none solid none none;
  2553. border-radius: 0;
  2554. border-image: linear-gradient(to bottom, #ffffff 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, #ffffff 80%) 0 1 0 0/0 1px 0 0 stretch; }
  2555.  
  2556. treeview.view header button:hover {
  2557.  
  2558. color: #4a85cb; }
  2559.  
  2560. treeview.view header button:active {
  2561.  
  2562. color: #252525; }
  2563.  
  2564. treeview.view header button:active, treeview.view header button:hover {
  2565.  
  2566. background-color: #ffffff; }
  2567.  
  2568. treeview.view header button:active:hover {
  2569. color: #252525; }
  2570.  
  2571. treeview.view header button:disabled {
  2572.  
  2573. border-color: rgba(239,244,247,1);
  2574. background-image: none; }
  2575.  
  2576. treeview.view header button:last-child {
  2577.  
  2578. border-right-style: none;
  2579. border-image: none; }
  2580.  
  2581. treeview.view button.dnd,
  2582. treeview.view button.dnd:selected,
  2583. treeview.view button.dnd:hover,
  2584. treeview.view button.dnd:active,
  2585. treeview.view header.button.dnd,
  2586. treeview.view header.button.dnd:selected,
  2587. treeview.view header.button.dnd:hover,
  2588. treeview.view header.button.dnd:active {
  2589.  
  2590. padding: 0 6px;
  2591. transition: none;
  2592. color: #ffffff;
  2593. background-color: #4a85cb;
  2594. border-radius: 0;
  2595. border-style: none; }
  2596.  
  2597. /************************************************************************************************/
  2598. /*------------------------------MENUBAR---------------------------------------------------------*/
  2599. /************************************************************************************************/
  2600.  
  2601. menubar,
  2602. .menubar {
  2603.  
  2604. -GtkWidget-window-dragging: true;
  2605. padding: 0px;
  2606. background-color: transparent;
  2607. background-image: linear-gradient(to bottom, #cdd1d6, #c7cbd0 97%, #afb2b5 97%);
  2608. color: rgba(41, 33, 33, 0.8); }
  2609.  
  2610. menubar > menuitem,
  2611. .menubar > menuitem {
  2612.  
  2613. padding: 4px 8px;
  2614. border: solid transparent;
  2615. border-width: 0; }
  2616.  
  2617. menubar > menuitem:hover,
  2618. .menubar > menuitem:hover {
  2619.  
  2620. background-color: #4a85cb;
  2621. color: #ffffff; }
  2622.  
  2623. menubar > menuitem:disabled,
  2624. .menubar > menuitem:disabled {
  2625.  
  2626. color: rgba(41, 33, 33, 0.2);
  2627. border-color: transparent; }
  2628.  
  2629. menu,
  2630. .menu {
  2631.  
  2632. margin: 1px;
  2633. padding: 0;
  2634. background-color: transparent;
  2635. background-image:linear-gradient(to bottom left,rgba(244,251,255,0.94),rgba(228,233,239,0.94),rgba(228,233,239,0.94),rgba(244,251,255,0.94));
  2636. /*background-color: #ffffff;*/
  2637. border: 1px;
  2638. border-color:rgba(105, 105, 105, 0.3); }
  2639.  
  2640. .csd menu,
  2641. .csd.menu {
  2642.  
  2643. padding: 4px 0px;
  2644. border-radius: 2px;
  2645. }
  2646.  
  2647. menu separator,
  2648. .csd menu separator,
  2649. .menu separator,
  2650. .csd.menu separator {
  2651.  
  2652. margin: 2px 0;
  2653. background-color:#dbdcde; }
  2654.  
  2655. menu .separator:not(label),
  2656. .csd menu .separator:not(label),
  2657. .menu .separator:not(label),
  2658. .csd.menu .separator:not(label) {
  2659.  
  2660. background-color:#dbdcde;/*color: #ffffff;*/ }
  2661.  
  2662. menu menuitem,
  2663. .menu menuitem {
  2664.  
  2665. min-height: 16px;
  2666. min-width: 40px;
  2667. padding: 3px; }
  2668.  
  2669. menu menuitem:hover,
  2670. .menu menuitem:hover {
  2671.  
  2672. color: #ffffff;
  2673. background-color: #4a85cb; }
  2674.  
  2675. menu menuitem:disabled,
  2676. .menu menuitem:disabled {
  2677.  
  2678. color: rgba(37, 37, 37, 0.55); }
  2679.  
  2680. menu menuitem arrow,
  2681. .menu menuitem arrow {
  2682.  
  2683. min-height: 16px;
  2684. min-width: 16px; }
  2685.  
  2686. menu menuitem arrow:dir(ltr),
  2687. .menu menuitem arrow:dir(ltr) {
  2688.  
  2689. -gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
  2690. margin-left: 10px; }
  2691.  
  2692. menu menuitem arrow:dir(rtl),
  2693. .menu menuitem arrow:dir(rtl) {
  2694.  
  2695. -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl");
  2696. margin-right: 10px; }
  2697.  
  2698. menuitem accelerator {
  2699.  
  2700. color: alpha(currentColor,0.55); }
  2701.  
  2702. menuitem check, menuitem radio {
  2703.  
  2704. min-height: 16px;
  2705. min-width: 16px; }
  2706.  
  2707. menuitem check:dir(ltr), menuitem radio:dir(ltr) {
  2708.  
  2709. margin-right: 6px;
  2710. margin-left: 3px; }
  2711.  
  2712. menuitem check:dir(rtl), menuitem radio:dir(rtl) {
  2713.  
  2714. margin-left:3px;
  2715. margin-right: 6px; }
  2716.  
  2717. menu > arrow,
  2718. .menu > arrow {
  2719.  
  2720. border-color: transparent;
  2721. background-color: transparent;
  2722. background-image: none;
  2723. min-width: 16px;
  2724. min-height: 16px;
  2725. padding: 4px;
  2726. background-color: #ffffff;
  2727. border-radius: 0; }
  2728.  
  2729. menu > arrow.top,
  2730. .menu > arrow.top {
  2731.  
  2732. margin-top: -6px;
  2733. border-bottom: 1px solid #e9e9e9;
  2734. -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); }
  2735.  
  2736. menu > arrow.bottom,
  2737. .menu > arrow.bottom {
  2738.  
  2739. margin-bottom: -6px;
  2740. border-top: 1px solid #e9e9e9;
  2741. -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
  2742.  
  2743. menu > arrow:hover,
  2744. .menu > arrow:hover {
  2745. background-color: #e9e9e9; }
  2746.  
  2747. menu > arrow:disabled,
  2748. .menu > arrow:disabled {
  2749.  
  2750. color: transparent;
  2751. background-color: transparent;
  2752. border-color: transparent; }
  2753.  
  2754. popover,
  2755. popover.background {
  2756.  
  2757. padding: 2px;
  2758. border-radius: 3px;
  2759. background-clip: border-box;
  2760.  
  2761. background-color: #ffffff;
  2762. box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); }
  2763.  
  2764. .csd popover,
  2765. popover,
  2766. .csd popover.background,
  2767. popover.background {
  2768.  
  2769. border: 1px solid rgba(92, 92, 92, 0.3); }
  2770.  
  2771. popover separator,
  2772. popover.background separator {
  2773. background-color:#dbdcde;
  2774. /*background-color: #ffffff;*/ }
  2775.  
  2776. popover > list,
  2777. popover > .view,
  2778. popover > iconview,
  2779. popover > toolbar,
  2780. popover > .inline-toolbar,
  2781. popover.background > list,
  2782. popover.background > .view,
  2783. popover.background > iconview,
  2784. popover.background > toolbar,
  2785. popover.background > .inline-toolbar {
  2786.  
  2787. border-style: none;
  2788. background-color: transparent; }
  2789.  
  2790. cursor-handle {
  2791.  
  2792. background-color: transparent;
  2793. background-image: none;
  2794. box-shadow: none;
  2795. border-style: none; }
  2796.  
  2797. cursor-handle.top {
  2798.  
  2799. -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); }
  2800.  
  2801. cursor-handle.bottom {
  2802.  
  2803. -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); }
  2804.  
  2805. /**********************************************************************************************/
  2806. /*--------------------NOTEBOOK----------------------------------------------------------------*/
  2807. /**********************************************************************************************/
  2808.  
  2809. notebook {
  2810.  
  2811. padding: 0; }
  2812.  
  2813. notebook.frame {
  2814.  
  2815. border: 1px solid rgba(105, 105, 105, 0.3); }
  2816.  
  2817. notebook.frame > header {
  2818.  
  2819. margin: -1px; }
  2820.  
  2821. notebook.frame > header.top {
  2822.  
  2823. margin-bottom: 0; }
  2824.  
  2825. notebook.frame > header.bottom {
  2826.  
  2827. margin-top: 0; }
  2828.  
  2829. notebook.frame > header.left {
  2830.  
  2831. margin-right: 0; }
  2832.  
  2833. notebook.frame > header.right {
  2834.  
  2835. margin-left: 0; }
  2836.  
  2837. notebook.frame > header.top, notebook.frame > header.bottom {
  2838.  
  2839. padding-left: 0;
  2840. padding-right: 0; }
  2841.  
  2842. notebook.frame > header.left, notebook.frame > header.right {
  2843.  
  2844. padding-top: 0;
  2845. padding-bottom: 0; }
  2846.  
  2847. notebook > stack:not(:only-child) {
  2848.  
  2849. background-color: #ffffff; }
  2850.  
  2851. notebook > header {
  2852.  
  2853. padding: 2px;
  2854. background-color: rgba(239,244,247,1); }
  2855.  
  2856. notebook > header.top {
  2857.  
  2858. box-shadow: inset 0 -1px rgba(105, 105, 105, 0.3);}
  2859.  
  2860. notebook > header.bottom {
  2861.  
  2862. box-shadow: inset 0 1px rgba(105, 105, 105, 0.3); }
  2863.  
  2864. notebook > header.right {
  2865.  
  2866. box-shadow: inset 1px 0 rgba(105, 105, 105, 0.3); }
  2867.  
  2868. notebook > header.left {
  2869.  
  2870. box-shadow: inset -1px 0 rgba(105, 105, 105, 0.3); }
  2871.  
  2872. notebook > header.top {
  2873.  
  2874. padding-bottom: 0; }
  2875.  
  2876. notebook > header.top > tabs > tab {
  2877.  
  2878. padding: 2px 10px;
  2879. min-width: 20px;
  2880. min-height: 20px;
  2881. border: 1px solid transparent;
  2882. border-bottom: none;
  2883. border-radius: 1px 1px 0 0; }
  2884.  
  2885. notebook > header.top > tabs > tab + tab {
  2886.  
  2887. margin-left: -1px; }
  2888.  
  2889. notebook > header.bottom {
  2890.  
  2891. padding-top: 0; }
  2892.  
  2893. notebook > header.bottom > tabs > tab {
  2894.  
  2895. padding: 2px 10px;
  2896. min-width: 20px;
  2897. min-height: 20px;
  2898. border: 1px solid transparent;
  2899. border-top: none;
  2900. border-radius: 0 0 1px 1px; }
  2901.  
  2902. notebook > header.bottom > tabs > tab + tab {
  2903.  
  2904. margin-left: -1px; }
  2905.  
  2906. notebook > header.right {
  2907.  
  2908. padding-left: 0; }
  2909.  
  2910. notebook > header.right > tabs > tab {
  2911.  
  2912. padding: 2px 10px;
  2913. min-width: 20px;
  2914. min-height: 20px;
  2915. border: 1px solid transparent;
  2916. border-left: none;
  2917. border-radius: 0 1px 1px 0; }
  2918.  
  2919. notebook > header.right > tabs > tab + tab {
  2920.  
  2921. margin-top: -1px; }
  2922.  
  2923. notebook > header.left {
  2924.  
  2925. padding-right: 0; }
  2926.  
  2927. notebook > header.left > tabs > tab {
  2928.  
  2929. padding: 2px 10px;
  2930. min-width: 20px;
  2931. min-height: 20px;
  2932. border: 1px solid transparent;
  2933. border-right: none;
  2934. border-radius: 1px 0 0 1px; }
  2935.  
  2936. notebook > header.left > tabs > tab + tab {
  2937.  
  2938. margin-top: -1px; }
  2939.  
  2940. notebook > header.top > tabs > arrow.up,
  2941. notebook > header.bottom > tabs > arrow.up {
  2942.  
  2943. -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
  2944.  
  2945. notebook > header.top > tabs > arrow.up:last-child,
  2946. notebook > header.bottom > tabs > arrow.up:last-child {
  2947.  
  2948. margin-left: 2px; }
  2949.  
  2950. notebook > header.top > tabs > arrow.down,
  2951. notebook > header.bottom > tabs > arrow.down {
  2952.  
  2953. -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); }
  2954.  
  2955. notebook > header.top > tabs > arrow.down:first-child,
  2956. notebook > header.bottom > tabs > arrow.down:first-child {
  2957.  
  2958. margin-right: 2px; }
  2959.  
  2960. notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up {
  2961.  
  2962. -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
  2963.  
  2964. notebook > header.left > tabs > arrow.up:last-child,
  2965. notebook > header.right > tabs > arrow.up:last-child {
  2966.  
  2967. margin-top: 2px; }
  2968.  
  2969. notebook > header.left > tabs > arrow.down,
  2970. notebook > header.right > tabs > arrow.down {
  2971.  
  2972. -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); }
  2973.  
  2974. notebook > header.left > tabs > arrow.down:first-child,
  2975. notebook > header.right > tabs > arrow.down:first-child {
  2976.  
  2977. margin-bottom: 2px; }
  2978.  
  2979. notebook > header > tabs > arrow {
  2980.  
  2981. color: rgba(37, 37, 37, 0.55); }
  2982.  
  2983. notebook > header > tabs > arrow:hover {
  2984.  
  2985. color: rgba(37, 37, 37, 0.775); }
  2986.  
  2987. notebook > header > tabs > arrow:active {
  2988.  
  2989. color: #252525; }
  2990.  
  2991. notebook > header > tabs > arrow:disabled {
  2992.  
  2993. color: rgba(37, 37, 37, 0.25); }
  2994.  
  2995. notebook > header.top > tabs > tab:hover:not(:checked) {
  2996.  
  2997. box-shadow: inset 0 -1px rgba(105, 105, 105, 0.3); }
  2998.  
  2999. notebook > header.bottom > tabs > tab:hover:not(:checked) {
  3000.  
  3001. box-shadow: inset 0 1px rgba(105, 105, 105, 0.3); }
  3002.  
  3003. notebook > header.left > tabs > tab:hover:not(:checked) {
  3004.  
  3005. box-shadow: inset -1px 0 rgba(105, 105, 105, 0.3); }
  3006.  
  3007. notebook > header.right > tabs > tab:hover:not(:checked) {
  3008.  
  3009. box-shadow: inset 1px 0 rgba(105, 105, 105, 0.3); }
  3010.  
  3011. notebook > header > tabs > tab {
  3012.  
  3013. color: rgba(37, 37, 37, 0.55);
  3014. background-color: rgba(255, 255, 255, 0); }
  3015.  
  3016. notebook > header > tabs > tab:hover:not(:checked) {
  3017.  
  3018. color: rgba(37, 37, 37, 0.775);
  3019. background-color: rgba(255, 255, 255, 0.5);
  3020. border-color: rgba(105, 105, 105, 0.3); }
  3021.  
  3022. notebook > header > tabs > tab:checked {
  3023.  
  3024. color: #252525;
  3025. background-color: #ffffff;
  3026. border-color:rgba(105, 105, 105, 0.3); }
  3027.  
  3028. notebook > header > tabs > tab button.flat, notebook > header > tabs > tab button.sidebar-button {
  3029.  
  3030. min-height: 22px;
  3031. min-width: 16px;
  3032. padding: 0;
  3033. color: #6e6e6e; }
  3034.  
  3035. notebook > header > tabs > tab button.flat:hover,
  3036. notebook > header > tabs > tab button.sidebar-button:hover {
  3037.  
  3038. color: #ff4d4d; }
  3039.  
  3040. notebook > header > tabs > tab button.flat:active,
  3041. notebook > header > tabs > tab button.sidebar-button:active,
  3042. notebook > header > tabs > tab button.flat:active:hover,
  3043. notebook > header > tabs > tab button.sidebar-button:active:hover {
  3044.  
  3045. color: #4a85cb; }
  3046.  
  3047. /*******************************************************************************************************/
  3048. /*-----------------------SCROLLBAR---------------------------------------------------------------------*/
  3049. /*******************************************************************************************************/
  3050.  
  3051. scrollbar {
  3052.  
  3053. background-color: #fcfcfc;
  3054. transition: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  3055.  
  3056. * {
  3057. -GtkScrollbar-has-backward-stepper: false;
  3058. -GtkScrollbar-has-forward-stepper: false; }
  3059.  
  3060. scrollbar.top {
  3061.  
  3062. border-bottom: 1px solid rgba(105, 105, 105, 0.3); }
  3063.  
  3064. scrollbar.bottom {
  3065.  
  3066. border-top: 1px solid rgba(105, 105, 105, 0.3); }
  3067.  
  3068. scrollbar.left {
  3069.  
  3070. border-right: 1px solid rgba(105, 105, 105, 0.3); }
  3071.  
  3072. scrollbar.right {
  3073.  
  3074. border-left: 1px solid rgba(105, 105, 105, 0.3); }
  3075.  
  3076. scrollbar button {
  3077.  
  3078. border: none; }
  3079.  
  3080. scrollbar.vertical button.down {
  3081.  
  3082. -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
  3083.  
  3084. scrollbar.vertical button.up {
  3085.  
  3086. -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); }
  3087.  
  3088. scrollbar.horizontal button.down {
  3089.  
  3090. -gtk-icon-source: -gtk-icontheme("pan-right-symbolic"); }
  3091.  
  3092. scrollbar.horizontal button.up {
  3093.  
  3094. -gtk-icon-source: -gtk-icontheme("pan-left-symbolic"); }
  3095.  
  3096. scrollbar slider {
  3097.  
  3098. min-width: 6px;
  3099. min-height: 6px;
  3100. margin: -1px;
  3101. border: 4px solid transparent;
  3102. border-radius: 8px;
  3103. background-clip: padding-box;
  3104. background-color: #a2a2a2; }
  3105.  
  3106. scrollbar slider:hover {
  3107.  
  3108. background-color: #b7b7b7; }
  3109.  
  3110. scrollbar slider:hover:active {
  3111.  
  3112. background-color: #4a85cb; }
  3113.  
  3114. scrollbar slider:disabled {
  3115.  
  3116. background-color: transparent; }
  3117.  
  3118. scrollbar.fine-tune slider {
  3119.  
  3120. min-width: 4px;
  3121. min-height: 4px; }
  3122.  
  3123. scrollbar.fine-tune.horizontal slider {
  3124.  
  3125. border-width: 5px 4px; }
  3126.  
  3127. scrollbar.fine-tune.vertical slider {
  3128.  
  3129. border-width: 4px 5px; }
  3130.  
  3131. scrollbar.overlay-indicator:not(.dragging):not(.hovering) {
  3132.  
  3133. opacity: 0.4;
  3134. border-color: transparent;
  3135. background-color: transparent; }
  3136.  
  3137. scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider {
  3138.  
  3139. margin: 0;
  3140. min-width: 4px;
  3141. min-height: 4px;
  3142. background-color: #636363;
  3143. border: 1px solid rgba(255, 255, 255, 0.6); }
  3144.  
  3145. scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider {
  3146.  
  3147. margin: 0 2px;
  3148. min-width: 40px; }
  3149.  
  3150. scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider {
  3151.  
  3152. margin: 2px 0;
  3153. min-height: 40px; }
  3154.  
  3155. scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering {
  3156.  
  3157. opacity: 0.99; }
  3158.  
  3159. scrollbar.horizontal slider {
  3160.  
  3161. min-width: 40px; }
  3162.  
  3163. scrollbar.vertical slider {
  3164.  
  3165. min-height: 40px; }
  3166.  
  3167.  
  3168. /***************************************************************************************************************/
  3169. /*-------------- SWITCH ---------------------------------------------------------------------------------------*/
  3170. /***************************************************************************************************************/
  3171. switch {
  3172.  
  3173. transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
  3174. min-width: 16px;
  3175. min-height: 16px;
  3176. border-radius:100px;
  3177. background-color: alpha(currentColor, 0.3);
  3178. background-clip: padding-box;
  3179. font-size: 0; }
  3180.  
  3181. headerbar switch {
  3182. margin: 4px 0;
  3183. border: 4px solid transparent;}
  3184.  
  3185. switch:disabled {
  3186.  
  3187.  
  3188. color: alpha(currentColor, 0.4); }
  3189.  
  3190. switch:checked {
  3191.  
  3192.  
  3193. background-color: #4a85cb; }
  3194.  
  3195. switch:checked:disabled {
  3196.  
  3197.  
  3198. background-color: rgba(12, 170, 240, 0.2);
  3199. color: rgba(0, 0, 0, 0.32); }
  3200.  
  3201. switch slider {
  3202.  
  3203. transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
  3204. border-image: none;
  3205. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  3206. background-color: #fcfcfc;
  3207. color: rgba(0, 0, 0, 0.1);
  3208. transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1), margin 0;
  3209. min-width: 16px;
  3210. min-height: 16px;
  3211. margin: 2px 0 2px 3px;
  3212. border-radius: 100px;
  3213. }
  3214.  
  3215. switch:hover slider {
  3216.  
  3217. border-image: none;
  3218. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  3219.  
  3220. switch:checked slider {
  3221.  
  3222. animation: needs_attention 0.3s cubic-bezier(0, 0, 0.2, 1);
  3223. margin: 2px 3px 2px 0;
  3224. background-color: #FFFFFF;
  3225. color: #71c837;}
  3226.  
  3227. switch:disabled slider {
  3228.  
  3229. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  3230. background-color: #ffffff;}
  3231.  
  3232. switch:checked:disabled slider {
  3233.  
  3234. animation: none; }
  3235.  
  3236.  
  3237. /***************************************************************************************************************/
  3238. /*------------------CHECK AND RADIO-BUTTONS--------------------------------------------------------------------*/
  3239. /***************************************************************************************************************/
  3240.  
  3241. .check,
  3242. check,
  3243. treeview.check {
  3244.  
  3245. -gtk-icon-source: -gtk-scaled(url("objects/checkbox-objects/checkbox-unchecked.svg"), url("objects/checkbox-objects/checkbox-unchecked@2.svg")); }
  3246.  
  3247. .osd check, filechooser actionbar check {
  3248.  
  3249. -gtk-icon-source: -gtk-scaled(url("objects/checkbox-objects/checkbox-unchecked-dark.svg"), url("objects/checkbox-objects/checkbox-unchecked-dark@2.svg")); }
  3250.  
  3251. menuitem check:hover,
  3252. .view check:selected, iconview check:selected,
  3253. treeview.check:selected,
  3254. row:selected check,
  3255. infobar check {
  3256.  
  3257. -gtk-icon-source: -gtk-scaled(url("objects/checkbox-objects/checkbox-unchecked-selected.svg"), url("objects/checkbox-objects/checkbox-unchecked-selected@2.svg")); }
  3258.  
  3259. .check:disabled,
  3260. check:disabled,
  3261. treeview.check:disabled {
  3262.  
  3263. -gtk-icon-source: -gtk-scaled(url("objects/checkbox-objects/checkbox-unchecked-insensitive.svg"), url("objects/checkbox-objects/checkbox-unchecked-insensitive@2.svg")); }
  3264.  
  3265. .osd check:disabled, filechooser actionbar check:disabled {
  3266.  
  3267. -gtk-icon-source: -gtk-scaled(url("objects/checkbox-objects/checkbox-unchecked-insensitive-dark.svg"), url("objects/checkbox-objects/checkbox-unchecked-insensitive-dark@2.svg")); }
  3268.  
  3269. menuitem check:disabled:hover,
  3270. .view check:disabled:selected, iconview check:disabled:selected,
  3271. treeview.check:disabled:selected,
  3272. row:selected check:disabled,
  3273. infobar check:disabled {
  3274.  
  3275. -gtk-icon-source: -gtk-scaled(url("objects/checkbox-objects/checkbox-unchecked-insensitive-selected.svg"), url("objects/checkbox-objects/checkbox-unchecked-insensitive-selected@2.svg")); }
  3276.  
  3277. .check:indeterminate,
  3278. check:indeterminate,
  3279. treeview.check:indeterminate {
  3280.  
  3281. -gtk-icon-source: -gtk-scaled(url("objects/checkbox-objects/checkbox-mixed.svg"), url("objects/checkbox-objects/checkbox-mixed@2.svg")); }
  3282.  
  3283. .osd check:indeterminate, filechooser actionbar check:indeterminate {
  3284.  
  3285. -gtk-icon-source: -gtk-scaled(url("objects/checkbox-objects/checkbox-mixed-dark.svg"), url("objects/checkbox-objects/checkbox-mixed-dark@2.svg")); }
  3286.  
  3287. menuitem check:indeterminate:hover,
  3288. .view check:indeterminate:selected, iconview check:indeterminate:selected,
  3289. treeview.check:indeterminate:selected,
  3290. row:selected check:indeterminate,
  3291. infobar check:indeterminate {
  3292.  
  3293. -gtk-icon-source: -gtk-scaled(url("objects/checkbox-objects/checkbox-mixed-selected.svg"), url("objects/checkbox-objects/checkbox-mixed-selected@2.svg")); }
  3294.  
  3295. .check:indeterminate:disabled,
  3296. check:indeterminate:disabled,
  3297. treeview.check:indeterminate:disabled {
  3298.  
  3299. -gtk-icon-source: -gtk-scaled(url("objects/checkbox-objects/checkbox-mixed-insensitive.svg"), url("objects/checkbox-objects/checkbox-mixed-insensitive@2.svg")); }
  3300.  
  3301. .osd check:indeterminate:disabled, filechooser actionbar check:indeterminate:disabled {
  3302.  
  3303. -gtk-icon-source: -gtk-scaled(url("objects/checkbox-objects/checkbox-mixed-insensitive-dark.svg"), url("objects/checkbox-objects/checkbox-mixed-insensitive-dark@2.svg")); }
  3304.  
  3305. menuitem check:indeterminate:disabled:hover,
  3306. .view check:indeterminate:disabled:selected, iconview check:indeterminate:disabled:selected,
  3307. treeview.check:indeterminate:disabled:selected,
  3308. row:selected check:indeterminate:disabled,
  3309. infobar check:indeterminate:disabled {
  3310.  
  3311. -gtk-icon-source: -gtk-scaled(url("objects/checkbox-objects/checkbox-mixed-insensitive-selected.svg"), url("objects/checkbox-objects/checkbox-mixed-insensitive-selected@2.svg")); }
  3312.  
  3313. .check:checked,
  3314. check:checked,
  3315. treeview.check:checked {
  3316.  
  3317. -gtk-icon-source: -gtk-scaled(url("objects/checkbox-objects/checkbox-checked.svg"), url("objects/checkbox-objects/checkbox-checked@2.svg")); }
  3318.  
  3319. .osd check:checked, filechooser actionbar check:checked {
  3320.  
  3321. -gtk-icon-source: -gtk-scaled(url("objects/checkbox-objects/checkbox-checked-dark.svg"), url("objects/checkbox-objects/checkbox-checked-dark@2.svg")); }
  3322.  
  3323. menuitem check:checked:hover,
  3324. .view check:checked:selected, iconview check:checked:selected,
  3325. treeview.check:checked:selected,
  3326. row:selected check:checked,
  3327. infobar check:checked {
  3328.  
  3329. -gtk-icon-source: -gtk-scaled(url("objects/checkbox-objects/checkbox-checked-selected.svg"), url("objects/checkbox-objects/checkbox-checked-selected@2.svg")); }
  3330.  
  3331. .check:checked:disabled,
  3332. check:checked:disabled,
  3333. treeview.check:checked:disabled {
  3334.  
  3335. -gtk-icon-source: -gtk-scaled(url("objects/checkbox-objects/checkbox-checked-insensitive.svg"), url("objects/checkbox-objects/checkbox-checked-insensitive@2.svg")); }
  3336.  
  3337. .osd check:checked:disabled, filechooser actionbar check:checked:disabled {
  3338.  
  3339. -gtk-icon-source: -gtk-scaled(url("objects/checkbox-objects/checkbox-checked-insensitive-dark.svg"), url("objects/checkbox-objects/checkbox-checked-insensitive-dark@2.svg")); }
  3340.  
  3341. menuitem check:checked:disabled:hover,
  3342. .view check:checked:disabled:selected, iconview check:checked:disabled:selected,
  3343. treeview.check:checked:disabled:selected,
  3344. row:selected check:checked:disabled,
  3345. infobar check:checked:disabled {
  3346.  
  3347. -gtk-icon-source: -gtk-scaled(url("objects/checkbox-objects/checkbox-checked-insensitive-selected.svg"), url("objects/checkbox-objects/checkbox-checked-insensitive-selected@2.svg")); }
  3348.  
  3349. .radio,
  3350. radio,
  3351. treeview.radio {
  3352.  
  3353. -gtk-icon-source: -gtk-scaled(url("objects/radio-objects/radio-unchecked.svg"), url("objects/radio-objects/radio-unchecked@2.svg")); }
  3354.  
  3355. .osd radio, filechooser actionbar radio {
  3356.  
  3357. -gtk-icon-source: -gtk-scaled(url("objects/radio-objects/radio-unchecked-dark.svg"), url("objects/radio-objects/radio-unchecked-dark@2.svg")); }
  3358.  
  3359. menuitem radio:hover,
  3360. .view radio:selected, iconview radio:selected,
  3361. treeview.radio:selected,
  3362. row:selected radio,
  3363. infobar radio {
  3364.  
  3365. -gtk-icon-source: -gtk-scaled(url("objects/radio-objects/radio-unchecked-selected.svg"), url("objects/radio-objects/radio-unchecked-selected@2.svg")); }
  3366.  
  3367. .radio:disabled,
  3368. radio:disabled,
  3369. treeview.radio:disabled {
  3370.  
  3371. -gtk-icon-source: -gtk-scaled(url("objects/radio-objects/radio-unchecked-insensitive.svg"), url("objects/radio-objects/radio-unchecked-insensitive@2.svg")); }
  3372.  
  3373. .osd radio:disabled, filechooser actionbar radio:disabled {
  3374. -gtk-icon-source: -gtk-scaled(url("objects/radio-objects/radio-unchecked-insensitive-dark.svg"), url("objects/radio-objects/radio-unchecked-insensitive-dark@2.svg")); }
  3375.  
  3376. menuitem radio:disabled:hover,
  3377. .view radio:disabled:selected, iconview radio:disabled:selected,
  3378. treeview.radio:disabled:selected,
  3379. row:selected radio:disabled,
  3380. infobar radio:disabled {
  3381.  
  3382. -gtk-icon-source: -gtk-scaled(url("objects/radio-objects/radio-unchecked-insensitive-selected.svg"), url("objects/radio-objects/radio-unchecked-insensitive-selected@2.svg")); }
  3383.  
  3384. .radio:indeterminate,
  3385. radio:indeterminate,
  3386. treeview.radio:indeterminate {
  3387.  
  3388. -gtk-icon-source: -gtk-scaled(url("objects/radio-objects/radio-mixed.svg"), url("objects/radio-objects/radio-mixed@2.svg")); }
  3389.  
  3390. .osd radio:indeterminate, filechooser actionbar radio:indeterminate {
  3391.  
  3392. -gtk-icon-source: -gtk-scaled(url("objects/radio-objects/radio-mixed-dark.svg"), url("objects/radio-objects/radio-mixed-dark@2.svg")); }
  3393.  
  3394. menuitem radio:indeterminate:hover,
  3395. .view radio:indeterminate:selected, iconview radio:indeterminate:selected,
  3396. treeview.radio:indeterminate:selected,
  3397. row:selected radio:indeterminate,
  3398. infobar radio:indeterminate {
  3399.  
  3400. -gtk-icon-source: -gtk-scaled(url("objects/radio-objects/radio-mixed-selected.svg"), url("objects/radio-objects/radio-mixed-selected@2.svg")); }
  3401.  
  3402. .radio:indeterminate:disabled,
  3403. radio:indeterminate:disabled,
  3404. treeview.radio:indeterminate:disabled {
  3405.  
  3406. -gtk-icon-source: -gtk-scaled(url("objects/radio-objects/radio-mixed-insensitive.svg"), url("objects/radio-objects/radio-mixed-insensitive@2.svg")); }
  3407.  
  3408. .osd radio:indeterminate:disabled,
  3409. filechooser actionbar radio:indeterminate:disabled {
  3410.  
  3411. -gtk-icon-source: -gtk-scaled(url("objects/radio-objects/radio-mixed-insensitive-dark.svg"), url("objects/radio-objects/radio-mixed-insensitive-dark@2.svg")); }
  3412.  
  3413. menuitem radio:indeterminate:disabled:hover,
  3414. .view radio:indeterminate:disabled:selected,
  3415. iconview radio:indeterminate:disabled:selected,
  3416. treeview.radio:indeterminate:disabled:selected,
  3417. row:selected radio:indeterminate:disabled,
  3418. infobar radio:indeterminate:disabled {
  3419.  
  3420. -gtk-icon-source: -gtk-scaled(url("objects/radio-objects/radio-mixed-insensitive-selected.svg"), url("objects/radio-objects/radio-mixed-insensitive-selected@2.svg")); }
  3421.  
  3422. .radio:checked,
  3423. radio:checked,
  3424. treeview.radio:checked {
  3425.  
  3426. -gtk-icon-source: -gtk-scaled(url("objects/radio-objects/radio-checked.svg"), url("objects/radio-objects/radio-checked@2.svg")); }
  3427.  
  3428. .osd radio:checked,
  3429. filechooser actionbar radio:checked {
  3430.  
  3431. -gtk-icon-source: -gtk-scaled(url("objects/radio-objects/radio-checked-dark.svg"), url("objects/radio-objects/radio-checked-dark@2.svg")); }
  3432.  
  3433. menuitem radio:checked:hover,
  3434. .view radio:checked:selected,
  3435. iconview radio:checked:selected,
  3436. treeview.radio:checked:selected,
  3437. row:selected radio:checked,
  3438. infobar radio:checked {
  3439.  
  3440. -gtk-icon-source: -gtk-scaled(url("objects/radio-objects/radio-checked-selected.svg"), url("objects/radio-objects/radio-checked-selected@2.svg")); }
  3441.  
  3442. .radio:checked:disabled,
  3443. radio:checked:disabled,
  3444. treeview.radio:checked:disabled {
  3445.  
  3446. -gtk-icon-source: -gtk-scaled(url("objects/radio-objects/radio-checked-insensitive.svg"), url("objects/radio-objects/radio-checked-insensitive@2.svg")); }
  3447.  
  3448. .osd radio:checked:disabled,
  3449. filechooser actionbar radio:checked:disabled {
  3450.  
  3451. -gtk-icon-source: -gtk-scaled(url("objects/radio-objects/radio-checked-insensitive-dark.svg"), url("objects/radio-objects/radio-checked-insensitive-dark@2.svg")); }
  3452.  
  3453. menuitem radio:checked:disabled:hover,
  3454. .view radio:checked:disabled:selected,
  3455. iconview radio:checked:disabled:selected,
  3456. treeview.radio:checked:disabled:selected,
  3457. row:selected radio:checked:disabled,
  3458. infobar radio:checked:disabled {
  3459.  
  3460. -gtk-icon-source: -gtk-scaled(url("objects/radio-objects/radio-checked-insensitive-selected.svg"), url("objects/radio-objects/radio-checked-insensitive-selected@2.svg")); }
  3461.  
  3462. .view.content-view.check:not(list),
  3463. iconview.content-view.check:not(list) {
  3464.  
  3465. -gtk-icon-source: -gtk-scaled(url("objects/checkbox-objects/checkbox-selectionmode.svg"), url("objects/checkbox-objects/checkbox-selectionmode@2.svg"));
  3466. background-color: transparent; }
  3467.  
  3468. .view.content-view.check:checked:not(list),
  3469. iconview.content-view.check:checked:not(list) {
  3470.  
  3471. -gtk-icon-source: -gtk-scaled(url("objects/checkbox-objects/checkbox-checked-selectionmode.svg"), url("objects/checkbox-objects/checkbox-checked-selectionmode@2.svg"));
  3472. background-color: transparent; }
  3473.  
  3474. checkbutton.text-button,
  3475. radiobutton.text-button {
  3476.  
  3477. padding: 2px 0;
  3478. }
  3479.  
  3480. checkbutton label:not(:only-child):first-child,
  3481. radiobutton label:not(:only-child):first-child {
  3482.  
  3483. margin-left: 4px; }
  3484.  
  3485. checkbutton label:not(:only-child):last-child,
  3486. radiobutton label:not(:only-child):last-child {
  3487.  
  3488. margin-right: 4px; }
  3489.  
  3490. check,
  3491. radio {
  3492.  
  3493. min-width: 16px;
  3494. min-height: 16px;
  3495. margin: 0 2px; }
  3496.  
  3497. check:only-child,
  3498. menu menuitem check,
  3499. radio:only-child,
  3500. menu menuitem radio {
  3501.  
  3502. margin: 0; }
  3503. /***********************************************************************************************************/
  3504. /*--------------------------------------SCALE--------------------------------------------------------------*/
  3505. /***********************************************************************************************************/
  3506.  
  3507. scale {
  3508.  
  3509. min-height: 15px;
  3510. min-width: 15px;
  3511. padding: 3px; }
  3512.  
  3513. scale.horizontal trough {
  3514.  
  3515. padding: 0 4px; }
  3516.  
  3517. scale.horizontal highlight, scale.horizontal fill {
  3518.  
  3519. margin: 0 -4px; }
  3520.  
  3521. scale.vertical trough {
  3522.  
  3523. padding: 4px 0; }
  3524.  
  3525. scale.vertical highlight, scale.vertical fill {
  3526.  
  3527. margin: -4px 0; }
  3528.  
  3529. scale slider {
  3530.  
  3531. min-height: 15px;
  3532. min-width: 15px;
  3533. margin: -6px; }
  3534.  
  3535. scale.fine-tune slider {
  3536.  
  3537. margin: -4px; }
  3538.  
  3539. scale.fine-tune fill,
  3540. scale.fine-tune highlight,
  3541. scale.fine-tune trough {
  3542.  
  3543. border-radius: 5px;
  3544. }
  3545.  
  3546. scale trough {
  3547.  
  3548. border-radius: 2.5px;
  3549. background-color: #cfd6e6; }
  3550.  
  3551. scale trough:disabled {
  3552.  
  3553. background-color: rgba(207, 214, 230, 0.55); }
  3554.  
  3555. .osd scale trough {
  3556.  
  3557. background-color: rgba(69, 74, 89, 0.95); }
  3558.  
  3559. .osd scale trough highlight {
  3560.  
  3561. background-color: #4a85cb; }
  3562.  
  3563. menuitem:hover scale trough,
  3564. row:selected scale trough,
  3565. infobar scale trough {
  3566.  
  3567. background-color: rgba(0, 0, 0, 0.2); }
  3568.  
  3569. menuitem:hover scale trough highlight,
  3570. row:selected scale trough highlight,
  3571. infobar scale trough highlight {
  3572.  
  3573. background-color: #ffffff; }
  3574.  
  3575. menuitem:hover scale trough highlight:disabled,
  3576. row:selected scale trough highlight:disabled,
  3577. infobar scale trough highlight:disabled {
  3578.  
  3579. background-color: #b1cff2; }
  3580.  
  3581. menuitem:hover scale trough:disabled,
  3582. row:selected scale trough:disabled,
  3583. infobar scale trough:disabled {
  3584.  
  3585. background-color: rgba(0, 0, 0, 0.1); }
  3586.  
  3587. scale highlight {
  3588.  
  3589. border-radius: 2.5px;
  3590. background-color: #4a85cb; }
  3591.  
  3592. scale highlight:disabled {
  3593.  
  3594. background-color: rgba(82, 148, 226, 0.55); }
  3595.  
  3596. scale fill {
  3597.  
  3598. border-radius: 2.5px;
  3599. background-color: rgba(82, 148, 226, 0.5); }
  3600.  
  3601. scale fill:disabled {
  3602.  
  3603. background-color: transparent; }
  3604.  
  3605. scale slider {
  3606.  
  3607. background-color: #f6f8fa;
  3608. border: 1px solid rgba(123, 142, 186, 0.5);
  3609. border-radius: 100%;
  3610. transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  3611. transition-property: background, border; }
  3612.  
  3613. scale slider:hover {
  3614.  
  3615. background-color: white; }
  3616.  
  3617. scale slider:active {
  3618.  
  3619. background-clip: border-box;
  3620. background-color: #4a85cb;
  3621. border-color: #4a85cb; }
  3622.  
  3623. scale slider:disabled {
  3624.  
  3625. background-color: #f6f8fa;
  3626. border-color: rgba(123, 142, 186, 0.3); }
  3627.  
  3628. menuitem:hover scale slider,
  3629. row:selected scale slider,
  3630. infobar scale slider {
  3631.  
  3632. background-clip: border-box;
  3633. background-color: #ffffff;
  3634. border-color: #ffffff; }
  3635.  
  3636. menuitem:hover scale slider:hover,
  3637. row:selected scale slider:hover,
  3638. infobar scale slider:hover {
  3639.  
  3640. background-color: #e5effb;
  3641. border-color: #e5effb; }
  3642.  
  3643. menuitem:hover scale slider:active,
  3644. row:selected scale slider:active,
  3645. infobar scale slider:active {
  3646.  
  3647. background-color: #a9caf1;
  3648. border-color: #a9caf1; }
  3649.  
  3650. menuitem:hover scale slider:disabled,
  3651. row:selected scale slider:disabled,
  3652. infobar scale slider:disabled {
  3653.  
  3654. background-color: #b1cff2;
  3655. border-color: #b1cff2; }
  3656.  
  3657. .osd scale slider {
  3658.  
  3659. background-clip: border-box;
  3660. background-color: #4a85cb;
  3661. border-color: #4a85cb; }
  3662.  
  3663. .osd scale slider:hover {
  3664.  
  3665. background-color: #7eafe9;
  3666. border-color: #7eafe9; }
  3667.  
  3668. .osd scale slider:active {
  3669.  
  3670. background-color: #2679db;
  3671. border-color: #2679db; }
  3672.  
  3673. scale value {
  3674.  
  3675. color: alpha(currentColor,0.4); }
  3676.  
  3677. scale marks {
  3678.  
  3679. color: alpha(currentColor,0.4); }
  3680.  
  3681. scale marks.top {
  3682.  
  3683. margin-bottom: 1px;
  3684. margin-top: -4px; }
  3685.  
  3686. scale marks.bottom {
  3687.  
  3688. margin-top: 1px;
  3689. margin-bottom: -4px; }
  3690.  
  3691. scale marks.top {
  3692.  
  3693. margin-right: 1px;
  3694. margin-left: -4px; }
  3695.  
  3696. scale marks.bottom {
  3697.  
  3698. margin-left: 1px;
  3699. margin-right: -4px; }
  3700.  
  3701. scale.fine-tune marks.top {
  3702.  
  3703. margin-bottom: 0px;
  3704. margin-top: -2px; }
  3705.  
  3706. scale.fine-tune marks.bottom {
  3707.  
  3708. margin-top: 0px;
  3709. margin-bottom: -2px; }
  3710.  
  3711. scale.fine-tune marks.top {
  3712.  
  3713. margin-right: 0px;
  3714. margin-left: -2px; }
  3715.  
  3716. scale.fine-tune marks.bottom {
  3717.  
  3718. margin-left: 0px;
  3719. margin-right: -2px; }
  3720.  
  3721. scale.horizontal indicator {
  3722.  
  3723. min-height: 3px;
  3724. min-width: 1px; }
  3725.  
  3726. scale.horizontal.fine-tune indicator {
  3727.  
  3728. min-height: 2px; }
  3729.  
  3730. scale.vertical indicator {
  3731.  
  3732. min-height: 1px;
  3733. min-width: 3px; }
  3734.  
  3735. scale.vertical.fine-tune indicator {
  3736. min-width: 2px; }
  3737.  
  3738. progressbar {
  3739.  
  3740. padding: 0;
  3741. font-size: smaller;
  3742. color: rgba(92, 97, 108, 0.7); }
  3743.  
  3744. progressbar.osd {
  3745.  
  3746. min-width: 3px;
  3747. min-height: 3px;
  3748. background-color: transparent; }
  3749.  
  3750. progressbar.osd trough {
  3751.  
  3752. border-style: none;
  3753. background-color: transparent;
  3754. box-shadow: none; }
  3755.  
  3756. progressbar progress {
  3757. background-color: #4a85cb;
  3758. border: none;
  3759. border-radius: 3px;
  3760. box-shadow: none; }
  3761.  
  3762. row:selected progressbar progress,
  3763. infobar progressbar progress {
  3764.  
  3765. background-color: #ffffff; }
  3766.  
  3767. progressbar trough {
  3768.  
  3769. border: none;
  3770. border-radius: 3px;
  3771. background-color: #cfd6e6; }
  3772.  
  3773. row:selected progressbar trough,
  3774. infobar progressbar trough {
  3775.  
  3776. background-color: rgba(0, 0, 0, 0.2); }
  3777.  
  3778. levelbar block {
  3779.  
  3780. min-width: 32px;
  3781. min-height: 1px; }
  3782.  
  3783. levelbar.vertical block {
  3784.  
  3785. min-width: 1px;
  3786. min-height: 32px; }
  3787.  
  3788. levelbar trough {
  3789.  
  3790. border: none;
  3791. padding: 3px;
  3792. border-radius: 3px;
  3793. background-color: #cfd6e6; }
  3794.  
  3795. levelbar.horizontal.discrete block {
  3796.  
  3797. margin: 0 1px; }
  3798.  
  3799. levelbar.vertical.discrete block {
  3800.  
  3801. margin: 1px 0; }
  3802.  
  3803. levelbar block:not(.empty) {
  3804.  
  3805. border: 1px solid #4a85cb;
  3806. background-color: #4a85cb;
  3807. border-radius: 2px; }
  3808.  
  3809. levelbar block.low {
  3810. border-color: #F27835;
  3811. background-color: #F27835; }
  3812.  
  3813. levelbar block.high {
  3814.  
  3815. border-color: #4a85cb;
  3816. background-color: #4a85cb; }
  3817.  
  3818. levelbar block.full {
  3819.  
  3820. border-color: #73d216;
  3821. background-color: #73d216; }
  3822.  
  3823. levelbar block.empty {
  3824.  
  3825. background-color: rgba(92, 97, 108, 0.2);
  3826. border-color: rgba(92, 97, 108, 0.2); }
  3827.  
  3828. printdialog paper {
  3829.  
  3830. border: 1px solid rgba(105, 105, 105, 0.3);
  3831. background: #ffffff;
  3832. padding: 0; }
  3833.  
  3834. printdialog .dialog-action-box {
  3835.  
  3836. margin: 12px; }
  3837.  
  3838. frame > border,
  3839. .frame {
  3840.  
  3841. margin: 0;
  3842. padding: 0;
  3843. border-radius: 0;
  3844. border: 1px solid rgba(105, 105, 105, 0.3); }
  3845.  
  3846. frame.flat > border,
  3847. frame > border.flat,
  3848. .frame.flat {
  3849.  
  3850. border-style: none; }
  3851.  
  3852. scrolledwindow viewport.frame {
  3853.  
  3854. border-style: none; }
  3855.  
  3856. scrolledwindow overshoot.top {
  3857.  
  3858. background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0)));
  3859. background-size: 100% 60%;
  3860. background-repeat: no-repeat;
  3861. background-position: center top;
  3862. background-color: transparent;
  3863. border: none;
  3864. box-shadow: none; }
  3865.  
  3866. scrolledwindow overshoot.bottom {
  3867.  
  3868. background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0)));
  3869. background-size: 100% 60%;
  3870. background-repeat: no-repeat;
  3871. background-position: center bottom;
  3872. background-color: transparent;
  3873. border: none;
  3874. box-shadow: none; }
  3875.  
  3876. scrolledwindow overshoot.left {
  3877.  
  3878. background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0)));
  3879. background-size: 60% 100%;
  3880. background-repeat: no-repeat;
  3881. background-position: left center;
  3882. background-color: transparent;
  3883. border: none;
  3884. box-shadow: none; }
  3885.  
  3886. scrolledwindow overshoot.right {
  3887.  
  3888. background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0)));
  3889. background-size: 60% 100%;
  3890. background-repeat: no-repeat;
  3891. background-position: right center;
  3892. background-color: transparent;
  3893. border: none;
  3894. box-shadow: none; }
  3895.  
  3896. scrolledwindow undershoot.top {
  3897.  
  3898. background-color: transparent;
  3899. background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%);
  3900. padding-top: 1px;
  3901. background-size: 10px 1px;
  3902. background-repeat: repeat-x;
  3903. background-origin: content-box;
  3904. background-position: center top;
  3905. border: none; }
  3906.  
  3907. scrolledwindow undershoot.bottom {
  3908.  
  3909. background-color: transparent;
  3910. background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%);
  3911. padding-bottom: 1px;
  3912. background-size: 10px 1px;
  3913. background-repeat: repeat-x;
  3914. background-origin: content-box;
  3915. background-position: center bottom;
  3916. border: none; }
  3917.  
  3918. scrolledwindow undershoot.left {
  3919.  
  3920. background-color: transparent;
  3921. background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%);
  3922. padding-left: 1px;
  3923. background-size: 1px 10px;
  3924. background-repeat: repeat-y;
  3925. background-origin: content-box;
  3926. background-position: left center;
  3927. border: none; }
  3928.  
  3929. scrolledwindow undershoot.right {
  3930.  
  3931. background-color: transparent;
  3932. background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%);
  3933. padding-right: 1px;
  3934. background-size: 1px 10px;
  3935. background-repeat: repeat-y;
  3936. background-origin: content-box;
  3937. background-position: right center;
  3938. border: none; }
  3939.  
  3940. scrolledwindow junction {
  3941.  
  3942. border-color: transparent;
  3943. border-image: linear-gradient(to bottom, rgba(105, 105, 105, 0.3) 1px, transparent 1px) 0 0 0 1/0 1px stretch;
  3944. background-color: #fcfcfc; }
  3945. scrolledwindow junction:dir(rtl) {
  3946. border-image-slice: 0 1 0 0; }
  3947.  
  3948. separator {
  3949.  
  3950. background-color: rgba(0, 0, 0, 0.1);
  3951. min-width: 1px;
  3952. min-height: 1px; }
  3953.  
  3954. list {
  3955.  
  3956. background-color: #ffffff;
  3957. border-color: rgba(105, 105, 105, 0.3); }
  3958. list row {
  3959. padding: 2px; }
  3960.  
  3961. row:not(:hover) {
  3962.  
  3963. transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  3964.  
  3965. row.activatable.has-open-popup, row.activatable:hover {
  3966.  
  3967. background-color: rgba(0, 0, 0, 0.05); }
  3968.  
  3969. row.activatable:active {
  3970.  
  3971. color: #252525; }
  3972.  
  3973. row.activatable:disabled {
  3974.  
  3975. color: rgba(92, 97, 108, 0.55); }
  3976.  
  3977. row.activatable:disabled image {
  3978.  
  3979. color: inherit; }
  3980.  
  3981. row.activatable:selected:active {
  3982.  
  3983. color: #ffffff; }
  3984.  
  3985. row.activatable:selected.has-open-popup, row.activatable:selected:hover {
  3986.  
  3987. background-color: #4a85cb; }
  3988.  
  3989. .app-notification {
  3990.  
  3991. padding: 10px;
  3992. color: #BAC3CF;
  3993. background-color: rgba(53, 57, 69, 0.95);
  3994. background-clip: border-box;
  3995. border-radius: 0 0 2px 2px;
  3996. border-width: 0 1px 1px 1px;
  3997. border-style: solid;
  3998. border-color: rgba(31, 33, 40, 0.95); }
  3999.  
  4000. .app-notification border {
  4001.  
  4002. border: none; }
  4003.  
  4004. .app-notification button {
  4005.  
  4006. color: #BAC3CF;
  4007. border-color: rgba(26, 28, 34, 0.35);
  4008. background-color: rgba(102, 109, 132, 0.35); }
  4009.  
  4010. .app-notification button.flat, .app-notification button.sidebar-button {
  4011.  
  4012. border-color: rgba(82, 148, 226, 0); }
  4013.  
  4014. .app-notification button:hover {
  4015.  
  4016. color: #BAC3CF;
  4017. border-color: rgba(26, 28, 34, 0.35);
  4018. background-color: rgba(119, 127, 151, 0.45); }
  4019.  
  4020. .app-notification button:active, .app-notification button:checked {
  4021.  
  4022. color: #ffffff;
  4023. border-color: rgba(26, 28, 34, 0.35);
  4024. background-color: #4a85cb;
  4025. background-clip: padding-box; }
  4026.  
  4027. .app-notification button:disabled {
  4028.  
  4029. color: #5d626e;
  4030. border-color: rgba(26, 28, 34, 0.35);
  4031. background-color: rgba(102, 109, 132, 0.2); }
  4032.  
  4033. expander arrow {
  4034.  
  4035. min-width: 16px;
  4036. min-height: 16px;
  4037. -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
  4038.  
  4039. expander arrow:dir(rtl) {
  4040.  
  4041. -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); }
  4042.  
  4043. expander arrow:hover {
  4044.  
  4045. color: #aaaeb7; }
  4046.  
  4047. expander arrow:checked {
  4048.  
  4049. -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
  4050.  
  4051. calendar {
  4052.  
  4053. color: #252525;
  4054. border: 1px solid rgba(105, 105, 105, 0.3);
  4055. border-radius: 3px;
  4056. padding: 2px; }
  4057.  
  4058. calendar:selected {
  4059.  
  4060. border-radius: 1.5px; }
  4061.  
  4062. calendar.header {
  4063.  
  4064. color: #252525;
  4065. border: none; }
  4066.  
  4067. calendar.button {
  4068.  
  4069. color: rgba(92, 97, 108, 0.45); }
  4070.  
  4071. calendar.button:hover {
  4072.  
  4073. color: #252525; }
  4074.  
  4075. calendar.button:disabled {
  4076.  
  4077. color: rgba(92, 97, 108, 0.55); }
  4078.  
  4079. calendar:indeterminate {
  4080.  
  4081. color: alpha(currentColor,0.55); }
  4082.  
  4083. calendar.highlight {
  4084.  
  4085. color: #252525; }
  4086.  
  4087. messagedialog .titlebar {
  4088.  
  4089. min-height: 20px;
  4090. background-color: #dedcdf;
  4091. border-bottom: 1px solid #d4d5db; }
  4092.  
  4093. messagedialog .dialog-action-area button {
  4094.  
  4095. padding: 8px;
  4096. min-height: 0; }
  4097.  
  4098. messagedialog.csd.background {
  4099.  
  4100. border-bottom-left-radius: 3px;
  4101. border-bottom-right-radius: 3px;
  4102. border: none; }
  4103.  
  4104. messagedialog.csd .dialog-action-area button {
  4105.  
  4106. border-bottom-style: none; }
  4107.  
  4108. messagedialog.csd .dialog-action-area button {
  4109.  
  4110. border-radius: 0;
  4111. border-right-style: none; }
  4112.  
  4113. messagedialog.csd .dialog-action-area button:last-child {
  4114.  
  4115. border-radius: 0 0 6px 0;
  4116. border-right-style: none; }
  4117.  
  4118. messagedialog.csd .dialog-action-area button:first-child {
  4119.  
  4120. border-radius: 0 0 0 6px;
  4121. border-left-style: none; }
  4122.  
  4123. messagedialog.csd .dialog-action-area button:only-child {
  4124.  
  4125. border-radius: 0 0 6px 6px;
  4126. border-left-style: none;
  4127. border-right-style: none; }
  4128.  
  4129. filechooser #pathbarbox {
  4130.  
  4131. border-bottom: 1px solid rgba(105, 105, 105, 0); }
  4132.  
  4133. filechooserbutton:drop(active) {
  4134.  
  4135. box-shadow: none;
  4136. border-color: transparent; }
  4137.  
  4138. /*******************************************************************************************************/
  4139. /*------------------------------SIDEBAR----------------------------------------------------------------*/
  4140. /*******************************************************************************************************/
  4141.  
  4142. .sidebar {
  4143. min-width: 150px;
  4144.  
  4145. border-style: none;
  4146. background-color: #f6f8fa; }
  4147.  
  4148. stacksidebar.sidebar:dir(ltr) list,
  4149. stacksidebar.sidebar.left list,
  4150. stacksidebar.sidebar.left:dir(rtl) list,
  4151. .sidebar:dir(ltr),
  4152. .sidebar.left,
  4153. .sidebar.left:dir(rtl) {
  4154.  
  4155. border-right: 1px solid rgba(105, 105, 105, 0.3);
  4156. border-left-style: none; }
  4157.  
  4158. stacksidebar.sidebar:dir(rtl) list,
  4159. stacksidebar.sidebar.right list,
  4160. .sidebar:dir(rtl),
  4161. .sidebar.right {
  4162.  
  4163. border-left: 1px solid rgba(105, 105, 105, 0.3);
  4164. border-right-style: none; }
  4165.  
  4166. .sidebar list {
  4167.  
  4168. background-color: transparent; }
  4169.  
  4170. paned .sidebar.left,
  4171. paned .sidebar.right,
  4172. paned .sidebar.left:dir(rtl),
  4173. paned .sidebar:dir(rtl),
  4174. paned .sidebar:dir(ltr),
  4175. paned .sidebar {
  4176.  
  4177. border-style: none; }
  4178.  
  4179. stacksidebar row {
  4180.  
  4181. padding: 10px 4px; }
  4182.  
  4183. stacksidebar row > label {
  4184.  
  4185. padding-left: 6px;
  4186. padding-right: 6px; }
  4187.  
  4188. stacksidebar row.needs-attention > label {
  4189.  
  4190. background-size: 6px 6px, 0 0; }
  4191.  
  4192. placessidebar > viewport.frame {
  4193.  
  4194. border-style: none; }
  4195.  
  4196. placessidebar row {
  4197.  
  4198. min-height: 30px;
  4199. padding: 0px; }
  4200.  
  4201. placessidebar row > revealer {
  4202.  
  4203. padding: 0 10px; }
  4204.  
  4205. placessidebar row image.sidebar-icon:dir(ltr) {
  4206.  
  4207. padding-right: 8px; }
  4208.  
  4209. placessidebar row image.sidebar-icon:dir(rtl) {
  4210.  
  4211. padding-left: 8px; }
  4212.  
  4213. placessidebar row label.sidebar-label:dir(ltr) {
  4214.  
  4215. padding-right: 2px; }
  4216.  
  4217. placessidebar row label.sidebar-label:dir(rtl) {
  4218.  
  4219. padding-left: 2px; }
  4220.  
  4221. button.sidebar-button {
  4222.  
  4223. min-width: 22px;
  4224. min-height: 22px;
  4225. margin-top: 2px;
  4226. margin-bottom: 2px;
  4227. padding: 0;
  4228. border-radius: 100%;
  4229. }
  4230.  
  4231. button.sidebar-button:not(:hover):not(:active) > image {
  4232.  
  4233. opacity: 0.5; }
  4234.  
  4235. placessidebar row.sidebar-placeholder-row {
  4236.  
  4237. padding: 0 8px;
  4238. min-height: 2px;
  4239. background-image: linear-gradient(to bottom, #F08437, #F08437);
  4240. background-clip: content-box; }
  4241.  
  4242. placessidebar row.sidebar-new-bookmark-row {
  4243.  
  4244. color: #4a85cb; }
  4245.  
  4246. placessidebar row:drop(active):not(:disabled) {
  4247.  
  4248. box-shadow: inset 0 1px #F08437, inset 0 -1px #F08437; }
  4249.  
  4250. placessidebar row:drop(active):not(:disabled),
  4251. placessidebar row:drop(active):not(:disabled) label,
  4252. placessidebar row:drop(active):not(:disabled) image {
  4253.  
  4254. color: #F08437; }
  4255.  
  4256. placessidebar row:drop(active):not(:disabled):selected {
  4257.  
  4258. background-color: #F08437; }
  4259.  
  4260. placessidebar row:drop(active):not(:disabled):selected,
  4261. placessidebar row:drop(active):not(:disabled):selected label,
  4262. placessidebar row:drop(active):not(:disabled):selected image {
  4263.  
  4264. color: #ffffff; }
  4265.  
  4266. placesview .server-list-button > image {
  4267.  
  4268. -gtk-icon-transform: rotate(0turn); }
  4269.  
  4270. placesview .server-list-button:checked > image {
  4271.  
  4272. transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  4273. -gtk-icon-transform: rotate(-0.5turn); }
  4274.  
  4275. placesview > actionbar > revealer > box > label {
  4276.  
  4277. padding-left: 8px;
  4278. padding-right: 8px; }
  4279.  
  4280. paned > separator {
  4281.  
  4282. min-width: 1px;
  4283. min-height: 1px;
  4284. -gtk-icon-source: none;
  4285. border-style: none;
  4286. background-color: transparent;
  4287. background-image: linear-gradient(to bottom, rgba(105, 105, 105, 0.3), rgba(105, 105, 105, 0.3));
  4288. background-size: 1px 1px; }
  4289.  
  4290. paned > separator:selected {
  4291.  
  4292. background-image: linear-gradient(to bottom, #4a85cb, #4a85cb); }
  4293.  
  4294. paned > separator.wide {
  4295.  
  4296. min-width: 5px;
  4297. min-height: 5px;
  4298. background-color: rgba(239,244,247,1);
  4299. background-image: linear-gradient(to bottom, rgba(105, 105, 105, 0.3), rgba(105, 105, 105, 0.3)), linear-gradient(to bottom, rgba(105, 105, 105, 0.3), rgba(105, 105, 105, 0.3));
  4300. background-size: 1px 1px, 1px 1px; }
  4301.  
  4302. paned.horizontal > separator {
  4303.  
  4304. background-repeat: repeat-y; }
  4305.  
  4306. paned.horizontal > separator:dir(ltr) {
  4307.  
  4308. margin: 0 -8px 0 0;
  4309. padding: 0 8px 0 0;
  4310. background-position: left; }
  4311.  
  4312. paned.horizontal > separator:dir(rtl) {
  4313.  
  4314. margin: 0 0 0 -8px;
  4315. padding: 0 0 0 8px;
  4316. background-position: right; }
  4317.  
  4318. paned.horizontal > separator.wide {
  4319.  
  4320. margin: 0;
  4321. padding: 0;
  4322. background-repeat: repeat-y, repeat-y;
  4323. background-position: left, right; }
  4324.  
  4325. paned.vertical > separator {
  4326.  
  4327. margin: 0 0 -8px 0;
  4328. padding: 0 0 8px 0;
  4329. background-repeat: repeat-x;
  4330. background-position: top; }
  4331.  
  4332. paned.vertical > separator.wide {
  4333.  
  4334. margin: 0;
  4335. padding: 0;
  4336. background-repeat: repeat-x, repeat-x;
  4337. background-position: bottom, top; }
  4338.  
  4339. infobar {
  4340.  
  4341. border-style: none; }
  4342.  
  4343. infobar.info, infobar.question, infobar.warning, infobar.error {
  4344.  
  4345. background-color: #4a85cb;
  4346. color: #ffffff;
  4347. caret-color: currentColor; }
  4348.  
  4349. infobar.info selection, infobar.question selection, infobar.warning selection, infobar.error selection {
  4350.  
  4351. color: #4a85cb;
  4352. background-color: #ffffff; }
  4353.  
  4354. .selection-mode.primary-toolbar button:hover,
  4355. headerbar.selection-mode button:hover,
  4356. row:selected button,
  4357. infobar.info button,
  4358. infobar.question button,
  4359. infobar.warning button,
  4360. infobar.error button,
  4361. .nautilus-window .floating-bar button {
  4362.  
  4363. color: #ffffff;
  4364. background-color: rgba(255, 255, 255, 0);
  4365. border-color: rgba(255, 255, 255, 0.5); }
  4366.  
  4367. row:selected button.flat,
  4368. row:selected button.sidebar-button,
  4369. infobar.info button.flat,
  4370. infobar.info button.sidebar-button,
  4371. infobar.question button.flat,
  4372. infobar.question button.sidebar-button,
  4373. infobar.warning button.flat,
  4374. infobar.warning button.sidebar-button,
  4375. infobar.error button.flat,
  4376. infobar.error button.sidebar-button,
  4377. .nautilus-window .floating-bar button.flat,
  4378. .nautilus-window .floating-bar button.sidebar-button {
  4379.  
  4380. border-color: transparent;
  4381. background-color: transparent;
  4382. background-image: none;
  4383. color: #ffffff;
  4384. background-color: rgba(255, 255, 255, 0); }
  4385.  
  4386. .selection-mode.primary-toolbar button:disabled,
  4387. headerbar.selection-mode button:disabled,
  4388. row:selected button.flat:disabled,
  4389. row:selected button.sidebar-button:disabled,
  4390. infobar.info button.flat:disabled,
  4391. infobar.info button.sidebar-button:disabled,
  4392. infobar.question button.flat:disabled,
  4393. infobar.question button.sidebar-button:disabled,
  4394. infobar.warning button.flat:disabled,
  4395. infobar.warning button.sidebar-button:disabled,
  4396. infobar.error button.flat:disabled,
  4397. infobar.error button.sidebar-button:disabled,
  4398. .nautilus-window .floating-bar button.flat:disabled,
  4399. .nautilus-window .floating-bar button.sidebar-button:disabled,
  4400. .selection-mode.primary-toolbar button:disabled label,
  4401. headerbar.selection-mode button:disabled label,
  4402. row:selected button.flat:disabled label,
  4403. row:selected button.sidebar-button:disabled label,
  4404. infobar.info button.flat:disabled label,
  4405. infobar.info button.sidebar-button:disabled label,
  4406. infobar.question button.flat:disabled label,
  4407. infobar.question button.sidebar-button:disabled label,
  4408. infobar.warning button.flat:disabled label,
  4409. infobar.warning button.sidebar-button:disabled label,
  4410. infobar.error button.flat:disabled label,
  4411. infobar.error button.sidebar-button:disabled label,
  4412. .nautilus-window .floating-bar button.flat:disabled label,
  4413. .nautilus-window .floating-bar button.sidebar-button:disabled label {
  4414.  
  4415. color: rgba(255, 255, 255, 0.4); }
  4416.  
  4417. row:selected button:hover,
  4418. infobar.info button:hover,
  4419. infobar.question button:hover,
  4420. infobar.warning button:hover,
  4421. infobar.error button:hover,
  4422. .nautilus-window .floating-bar button:hover {
  4423.  
  4424. color: #ffffff;
  4425. background-color: rgba(255, 255, 255, 0.2);
  4426. border-color: rgba(255, 255, 255, 0.8); }
  4427.  
  4428. .selection-mode.primary-toolbar button:active,
  4429. headerbar.selection-mode button:active,
  4430. .selection-mode.primary-toolbar button:checked,
  4431. headerbar.selection-mode button:checked,
  4432. row:selected button:active, infobar.info button:active,
  4433. infobar.question button:active,
  4434. infobar.warning button:active,
  4435. infobar.error button:active,
  4436. .nautilus-window .floating-bar button:active,
  4437. .selection-mode.primary-toolbar button:hover:active,
  4438. headerbar.selection-mode button:hover:active,
  4439. .selection-mode.primary-toolbar button:hover:checked,
  4440. headerbar.selection-mode button:hover:checked,
  4441. row:selected button:active:hover,
  4442. infobar.info button:active:hover,
  4443. infobar.question button:active:hover,
  4444. infobar.warning button:active:hover,
  4445. infobar.error button:active:hover,
  4446. .nautilus-window .floating-bar button:active:hover,
  4447. row:selected button:checked,
  4448. infobar.info button:checked,
  4449. infobar.question button:checked,
  4450. infobar.warning button:checked,
  4451. infobar.error button:checked,
  4452. .nautilus-window .floating-bar button:checked {
  4453.  
  4454. color: #4a85cb;
  4455. background-color: #ffffff;
  4456. border-color: #ffffff; }
  4457.  
  4458. row:selected button:disabled,
  4459. infobar.info button:disabled,
  4460. infobar.question button:disabled,
  4461. infobar.warning button:disabled,
  4462. infobar.error button:disabled,
  4463. .nautilus-window .floating-bar button:disabled {
  4464.  
  4465. background-color: rgba(255, 255, 255, 0);
  4466. border-color: rgba(255, 255, 255, 0.4); }
  4467.  
  4468. row:selected button:disabled,
  4469. infobar.info button:disabled,
  4470. infobar.question button:disabled,
  4471. infobar.warning button:disabled,
  4472. infobar.error button:disabled,
  4473. .nautilus-window .floating-bar button:disabled,
  4474. row:selected button:disabled label,
  4475. infobar.info button:disabled label,
  4476. infobar.question button:disabled label,
  4477. infobar.warning button:disabled label,
  4478. infobar.error button:disabled label,
  4479. .nautilus-window .floating-bar button:disabled label {
  4480.  
  4481. color: rgba(255, 255, 255, 0.5); }
  4482.  
  4483. .selection-mode.primary-toolbar button:disabled:active,
  4484. headerbar.selection-mode button:disabled:active,
  4485. .selection-mode.primary-toolbar button:disabled:checked,
  4486. headerbar.selection-mode button:disabled:checked,
  4487. row:selected button:disabled:active,
  4488. infobar.info button:disabled:active,
  4489. infobar.question button:disabled:active,
  4490. infobar.warning button:disabled:active,
  4491. infobar.error button:disabled:active,
  4492. .nautilus-window .floating-bar button:disabled:active,
  4493. .selection-mode.primary-toolbar button:disabled:checked,
  4494. headerbar.selection-mode button:disabled:checked,
  4495. .selection-mode.primary-toolbar button:disabled:active,
  4496. headerbar.selection-mode button:disabled:active,
  4497. row:selected button:disabled:checked,
  4498. infobar.info button:disabled:checked,
  4499. infobar.question button:disabled:checked,
  4500. infobar.warning button:disabled:checked,
  4501. infobar.error button:disabled:checked, .nautilus-window .floating-bar button:disabled:checked {
  4502.  
  4503. color: #4a85cb;
  4504. background-color: rgba(255, 255, 255, 0.5);
  4505. border-color: rgba(255, 255, 255, 0.4); }
  4506.  
  4507. tooltip {
  4508.  
  4509. border-radius: 5px;
  4510. box-shadow: none; }
  4511.  
  4512. tooltip.background {
  4513.  
  4514. background-color:transparent;
  4515. background-image: linear-gradient(to bottom,rgba(0,0,0,0.75),rgba(0,0,0,0.75));
  4516. background-clip: padding-box; }
  4517.  
  4518. tooltip.background label {
  4519.  
  4520. padding-left: 6px;
  4521. padding-right: 6px;
  4522. padding-top: 0px;
  4523. padding-bottom:0px;}
  4524.  
  4525. tooltip decoration {
  4526.  
  4527. background-color: transparent; }
  4528.  
  4529. tooltip * {
  4530.  
  4531. background-color: rgba(0,0,0,0);
  4532. color: #ffffff; }
  4533.  
  4534.  
  4535.  
  4536. colorswatch, colorswatch:drop(active) {
  4537.  
  4538. border-style: none; }
  4539.  
  4540. colorswatch.top {
  4541.  
  4542. border-top-left-radius: 2.5px;
  4543. border-top-right-radius: 2.5px; }
  4544.  
  4545. colorswatch.top overlay {
  4546.  
  4547. border-top-left-radius: 2px;
  4548. border-top-right-radius: 2px; }
  4549.  
  4550. colorswatch.bottom {
  4551.  
  4552. border-bottom-left-radius: 2.5px;
  4553. border-bottom-right-radius: 2.5px; }
  4554.  
  4555. colorswatch.bottom overlay {
  4556.  
  4557. border-bottom-left-radius: 2px;
  4558. border-bottom-right-radius: 2px; }
  4559.  
  4560. colorswatch.left, colorswatch:first-child:not(.top) {
  4561.  
  4562. border-top-left-radius: 2.5px;
  4563. border-bottom-left-radius: 2.5px; }
  4564.  
  4565. colorswatch.left overlay, colorswatch:first-child:not(.top) overlay {
  4566.  
  4567. border-top-left-radius: 2px;
  4568. border-bottom-left-radius: 2px; }
  4569.  
  4570. colorswatch.right, colorswatch:last-child:not(.bottom) {
  4571.  
  4572. border-top-right-radius: 2.5px;
  4573. border-bottom-right-radius: 2.5px; }
  4574.  
  4575. colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay {
  4576.  
  4577. border-top-right-radius: 2px;
  4578. border-bottom-right-radius: 2px; }
  4579.  
  4580. colorswatch.dark overlay {
  4581.  
  4582. color: rgba(255, 255, 255, 0.7); }
  4583.  
  4584. colorswatch.dark overlay:hover {
  4585.  
  4586. border-color: rgba(0, 0, 0, 0.5); }
  4587.  
  4588. colorswatch.light overlay {
  4589.  
  4590. color: rgba(0, 0, 0, 0.7); }
  4591.  
  4592. colorswatch.light overlay:hover {
  4593.  
  4594. border-color: rgba(0, 0, 0, 0.3); }
  4595.  
  4596. colorswatch overlay {
  4597.  
  4598. border: 1px solid rgba(0, 0, 0, 0.15); }
  4599.  
  4600. colorswatch overlay:hover {
  4601.  
  4602. background-color: rgba(255, 255, 255, 0.2); }
  4603.  
  4604. colorswatch:disabled {
  4605.  
  4606. opacity: 0.5; }
  4607.  
  4608. colorswatch:disabled overlay {
  4609.  
  4610. border-color: rgba(0, 0, 0, 0.6);
  4611. box-shadow: none; }
  4612.  
  4613. colorswatch#add-color-button {
  4614.  
  4615. border-style: solid;
  4616. border-width: 1px;
  4617. color: #252525;
  4618. border-color: rgba(0, 0, 0, 0.2);
  4619. background-color: white; }
  4620.  
  4621. colorswatch#add-color-button:hover {
  4622.  
  4623. color: #252525;
  4624. border-color: rgba(0, 0, 0, 0.1);
  4625. background-color: white; }
  4626.  
  4627. colorswatch#add-color-button overlay {
  4628.  
  4629. border-color: transparent;
  4630. background-color: transparent;
  4631. background-image: none; }
  4632.  
  4633. button.color {
  4634.  
  4635. padding: 0; }
  4636.  
  4637. button.color colorswatch:first-child:last-child, button.color colorswatch:first-child:last-child overlay {
  4638.  
  4639. margin: 4px;
  4640. border-radius: 0; }
  4641.  
  4642. colorchooser .popover.osd {
  4643.  
  4644. border-radius: 3px; }
  4645.  
  4646. .content-view {
  4647.  
  4648. background-color: #ffffff; }
  4649. .content-view:hover {
  4650. -gtk-icon-effect: highlight; }
  4651.  
  4652. .scale-popup button:hover {
  4653.  
  4654. color: #252525;
  4655. border-color: rgba(0, 0, 0, 0.1);
  4656. background-color: white; }
  4657.  
  4658. .context-menu, popover.touch-selection,
  4659. .csd popover.touch-selection,
  4660. popover.background.touch-selection,
  4661. .csd popover.background.touch-selection {
  4662.  
  4663. font: initial; }
  4664.  
  4665. .monospace {
  4666.  
  4667. font-family: Monospace; }
  4668.  
  4669. button.circular,
  4670. button.nautilus-circular-button.image-button,
  4671. button.circular-button {
  4672.  
  4673. padding: 0;
  4674. min-width: 16px;
  4675. min-height: 24px;
  4676. padding: 2px 6px;
  4677. border-radius: 50%;
  4678. }
  4679.  
  4680. button.circular label, button.nautilus-circular-button.image-button label,
  4681. button.circular-button label {
  4682.  
  4683. padding: 0; }
  4684.  
  4685. .keycap {
  4686.  
  4687. min-width: 16px;
  4688. min-height: 20px;
  4689. padding: 3px 6px 4px 6px;
  4690. color: #252525;
  4691. background-color: #ffffff;
  4692. border: 1px solid rgba(105, 105, 105, 0.3);
  4693. border-radius: 2.5px;
  4694. box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.05); }
  4695.  
  4696. stackswitcher button.text-button {
  4697.  
  4698. min-width: 80px; }
  4699.  
  4700. stackswitcher button.circular, stackswitcher button.nautilus-circular-button.image-button {
  4701.  
  4702. min-width: 0; }
  4703.  
  4704. *:drop(active):focus,
  4705. *:drop(active) {
  4706.  
  4707. box-shadow: inset 0 0 0 1px #F08437; }
  4708.  
  4709. /*************************************************************************************************/
  4710. /*-------------------------------- DECORATION ---------------------------------------------------*/
  4711. /*************************************************************************************************/
  4712.  
  4713. decoration {
  4714.  
  4715. border-radius: 6px 6px 0 0;
  4716. border-width: 0px;
  4717. box-shadow: 1px 20px 20px 20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.18);
  4718. margin: 10px;
  4719. }
  4720.  
  4721. decoration:backdrop {
  4722.  
  4723. box-shadow: 1px 20px 20px 20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.18);
  4724. margin: 10px;
  4725. /*transition: all 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);*/
  4726. }
  4727.  
  4728. .maximized decoration,
  4729. .fullscreen decoration,
  4730. .tiled decoration {
  4731.  
  4732. border-radius: 0;
  4733. }
  4734.  
  4735. .popup decoration {
  4736. box-shadow: none;
  4737. }
  4738.  
  4739. .ssd decoration {
  4740.  
  4741. box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.23);
  4742. }
  4743.  
  4744. .csd.popup decoration {
  4745.  
  4746. border-radius: 0;
  4747. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 0, 0, 0.13);
  4748. }
  4749.  
  4750. tooltip.csd decoration {
  4751.  
  4752. border-radius: 5px;
  4753. box-shadow: none;
  4754. }
  4755.  
  4756. messagedialog.csd decoration {
  4757.  
  4758. border-radius: 4px;
  4759. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.13);
  4760. }
  4761.  
  4762. .solid-csd decoration {
  4763.  
  4764. margin: 0;
  4765. padding: 2px;
  4766. background-color: #c4c4bf;
  4767. border: solid 1px #c4c4bf;
  4768. border-radius: 0;
  4769. box-shadow: inset 0 0 0 3px white, inset 0 1px rgba(255, 255, 255, 0.8);
  4770. }
  4771.  
  4772. .solid-csd decoration:backdrop {
  4773.  
  4774. box-shadow: inset 0 0 0 3px #f5f5f4, inset 0 1px rgba(255, 255, 255, 0.8);
  4775. }
  4776.  
  4777. /*********************************************************************************************************/
  4778. /*---------------------------TITLE BUTTON ---------------------------------------------------------------*/
  4779. /*********************************************************************************************************/
  4780.  
  4781. headerbar.default-decoration button.titlebutton,
  4782. .titlebar.default-decoration button.titlebutton {
  4783.  
  4784. padding: 0 0px;
  4785. min-width: 0;
  4786. min-height: 0;
  4787. margin: 0;
  4788. box-shadow: none; }
  4789.  
  4790. headerbar button.titlebutton,
  4791. .titlebar button.titlebutton {
  4792.  
  4793. padding: 0;
  4794. min-width: 18px;
  4795. box-shadow: none;
  4796. border-color: transparent;
  4797. background-color: transparent;
  4798. background-image: none;}
  4799.  
  4800. headerbar button.titlebutton:hover,
  4801. .titlebar button.titlebutton:hover,
  4802. headerbar button.titlebutton:active,
  4803. headerbar button.titlebutton:checked,
  4804. .titlebar button.titlebutton:active,
  4805. .titlebar button.titlebutton:checked {
  4806.  
  4807. color: transparent;
  4808. border-color: transparent;
  4809. background-color: transparent;}
  4810.  
  4811. headerbar button.titlebutton.close,
  4812. headerbar button.titlebutton.maximize,
  4813. headerbar button.titlebutton.minimize,
  4814. .titlebar button.titlebutton.close,
  4815. .titlebar button.titlebutton.maximize,
  4816. .titlebar button.titlebutton.minimize {
  4817.  
  4818. color: transparent;
  4819. background-color: transparent;
  4820. background-position: center;
  4821. background-repeat: no-repeat;
  4822. border-width: 0; }
  4823.  
  4824. headerbar button.titlebutton.close:backdrop,
  4825. headerbar button.titlebutton.maximize:backdrop,
  4826. headerbar button.titlebutton.minimize:backdrop,
  4827. .titlebar button.titlebutton.close:backdrop,
  4828. .titlebar button.titlebutton.maximize:backdrop,
  4829. .titlebar button.titlebutton.minimize:backdrop {
  4830.  
  4831. opacity: 1; }
  4832.  
  4833. headerbar button.titlebutton.close,
  4834. .titlebar button.titlebutton.close {
  4835.  
  4836. background-image: -gtk-scaled(url("objects/title-buttons/titlebutton-close.svg"), url("objects/title-buttons/titlebutton-close@2.svg")); }
  4837.  
  4838. headerbar button.titlebutton.close:backdrop,
  4839. .titlebar button.titlebutton.close:backdrop {
  4840.  
  4841. background-image: -gtk-scaled(url("objects/title-buttons/titlebutton-close-backdrop.svg"), url("objects/title-buttons/titlebutton-close-backdrop@2.svg")); }
  4842.  
  4843. headerbar button.titlebutton.close:hover,
  4844. .titlebar button.titlebutton.close:hover {
  4845.  
  4846. background-image: -gtk-scaled(url("objects/title-buttons/titlebutton-close-hover.svg"), url("objects/title-buttons/titlebutton-close-hover@2.svg")); }
  4847.  
  4848. headerbar button.titlebutton.close:active,
  4849. .titlebar button.titlebutton.close:active {
  4850.  
  4851. background-image: -gtk-scaled(url("objects/title-buttons/titlebutton-close-active.svg"), url("objects/title-buttons/titlebutton-close-active@2.svg")); }
  4852.  
  4853. headerbar button.titlebutton.maximize,
  4854. .titlebar button.titlebutton.maximize {
  4855.  
  4856. background-image: -gtk-scaled(url("objects/title-buttons/titlebutton-maximize.svg"), url("objects/title-buttons/titlebutton-maximize@2.svg")); }
  4857.  
  4858. headerbar button.titlebutton.maximize:backdrop,
  4859. .titlebar button.titlebutton.maximize:backdrop {
  4860.  
  4861. background-image: -gtk-scaled(url("objects/title-buttons/titlebutton-maximize-backdrop.svg"), url("objects/title-buttons/titlebutton-maximize-backdrop@2.svg")); }
  4862.  
  4863. headerbar button.titlebutton.maximize:hover,
  4864. .titlebar button.titlebutton.maximize:hover {
  4865.  
  4866. background-image: -gtk-scaled(url("objects/title-buttons/titlebutton-maximize-hover.svg"), url("objects/title-buttons/titlebutton-maximize-hover@2.svg")); }
  4867.  
  4868. headerbar button.titlebutton.maximize:active,
  4869. .titlebar button.titlebutton.maximize:active {
  4870.  
  4871. background-image: -gtk-scaled(url("objects/title-buttons/titlebutton-maximize-active.svg"), url("objects/title-buttons/titlebutton-maximize-active@2.svg")); }
  4872.  
  4873. headerbar button.titlebutton.minimize,
  4874. .titlebar button.titlebutton.minimize {
  4875.  
  4876. background-image: -gtk-scaled(url("objects/title-buttons/titlebutton-minimize.svg"), url("objects/title-buttons/titlebutton-minimize@2.svg")); }
  4877.  
  4878. headerbar button.titlebutton.minimize:backdrop,
  4879. .titlebar button.titlebutton.minimize:backdrop {
  4880.  
  4881. background-image: -gtk-scaled(url("objects/title-buttons/titlebutton-minimize-backdrop.svg"), url("objects/title-buttons/titlebutton-minimize-backdrop@2.svg")); }
  4882.  
  4883. headerbar button.titlebutton.minimize:hover,
  4884. .titlebar button.titlebutton.minimize:hover {
  4885.  
  4886. background-image: -gtk-scaled(url("objects/title-buttons/titlebutton-minimize-hover.svg"), url("objects/title-buttons/titlebutton-minimize-hover@2.svg")); }
  4887.  
  4888. headerbar button.titlebutton.minimize:active,
  4889. .titlebar button.titlebutton.minimize:active {
  4890.  
  4891. background-image: -gtk-scaled(url("objects/title-buttons/titlebutton-minimize-active.svg"), url("objects/title-buttons/titlebutton-minimize-active@2.svg")); }
  4892.  
  4893. .view:selected,
  4894. iconview:selected,
  4895. .view:selected:focus,
  4896. iconview:selected:focus,
  4897. .view text:selected,
  4898. iconview text:selected,
  4899. textview text:selected,
  4900. iconview text:selected:focus,
  4901. textview text:selected:focus,
  4902. .view text selection:focus,
  4903. iconview text selection:focus,
  4904. .view text selection,
  4905. iconview text selection,
  4906. textview text selection:focus,
  4907. textview text selection,
  4908. flowbox flowboxchild:selected,
  4909. entry selection:focus,
  4910. entry selection,
  4911. menuitem.button.flat:active,
  4912. menuitem.button.flat:active arrow,
  4913. menuitem.button.flat:selected,
  4914. menuitem.button.flat:selected arrow,
  4915. modelbutton.flat:active,
  4916. modelbutton.flat:active arrow,
  4917. modelbutton.flat:selected,
  4918. modelbutton.flat:selected arrow,
  4919. treeview.view:selected,
  4920. treeview.view:selected:focus,
  4921. row:selected, calendar:selected
  4922. /*filechooser placessidebar.sidebar row.sidebar-row.has-open-popup:selected,
  4923. filechooser placessidebar.sidebar row.sidebar-row:selected,
  4924. filechooser placessidebar.sidebar row.sidebar-row:selected:hover,
  4925. filechooser placessidebar.sidebar row.sidebar-row:active:hover,
  4926. .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup:selected,
  4927. .nautilus-window placessidebar.sidebar row.sidebar-row:selected,
  4928. .nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover,
  4929. .nautilus-window placessidebar.sidebar row.sidebar-row:active:hover */
  4930. {
  4931.  
  4932. background-color: #4a85cb; }
  4933.  
  4934. row:selected label,
  4935. label:selected,
  4936. .view:selected,
  4937. iconview:selected,
  4938. .view:selected:focus,
  4939. iconview:selected:focus,
  4940. .view text:selected,
  4941. iconview text:selected,
  4942. textview text:selected,
  4943. iconview text:selected:focus,
  4944. textview text:selected:focus,
  4945. .view text selection:focus,
  4946. iconview text selection:focus,
  4947. .view text selection,
  4948. iconview text selection,
  4949. textview text selection:focus,
  4950. textview text selection,
  4951. flowbox flowboxchild:selected,
  4952. entry selection:focus,
  4953. entry selection, menuitem.button.flat:active,
  4954. menuitem.button.flat:active arrow,
  4955. menuitem.button.flat:selected,
  4956. menuitem.button.flat:selected arrow,
  4957. modelbutton.flat:active,
  4958. modelbutton.flat:active arrow,
  4959. modelbutton.flat:selected,
  4960. modelbutton.flat:selected arrow,
  4961. treeview.view:selected,
  4962. treeview.view:selected:focus,
  4963. row:selected, calendar:selected,
  4964. filechooser placessidebar.sidebar row.sidebar-row.has-open-popup:selected,
  4965. filechooser placessidebar.sidebar row.sidebar-row:selected,
  4966. filechooser placessidebar.sidebar row.sidebar-row:selected:hover,
  4967. filechooser placessidebar.sidebar row.sidebar-row:active:hover,
  4968. .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup:selected,
  4969. .nautilus-window placessidebar.sidebar row.sidebar-row:selected,
  4970. .nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover,
  4971. .nautilus-window placessidebar.sidebar row.sidebar-row:active:hover {
  4972.  
  4973. color: #ffffff; }
  4974.  
  4975. row:selected label:disabled,
  4976. label:disabled:selected,
  4977. .view:disabled:selected,
  4978. iconview:disabled:selected,
  4979. iconview:disabled:selected:focus,
  4980. .view text:disabled:selected,
  4981. iconview text:disabled:selected,
  4982. textview text:disabled:selected,
  4983. iconview text selection:disabled:focus,
  4984. .view text selection:disabled,
  4985. iconview text selection:disabled,
  4986. textview text selection:disabled,
  4987. flowbox flowboxchild:disabled:selected,
  4988. label:disabled selection,
  4989. entry selection:disabled,
  4990. menuitem.button.flat:disabled:active,
  4991. menuitem.button.flat:active arrow:disabled,
  4992. menuitem.button.flat:disabled:selected,
  4993. menuitem.button.flat:selected arrow:disabled,
  4994. modelbutton.flat:disabled:active,
  4995. modelbutton.flat:active arrow:disabled,
  4996. modelbutton.flat:disabled:selected,
  4997. modelbutton.flat:selected arrow:disabled,
  4998. treeview.view:disabled:selected:focus,
  4999. row:disabled:selected,
  5000. calendar:disabled:selected{
  5001.  
  5002. color: #90b5ec; }
  5003.  
  5004. .gedit-bottom-panel-paned notebook > header.top > tabs > tab:checked,
  5005. terminal-window notebook > header.top > tabs > tab:checked {
  5006.  
  5007. box-shadow: inset 0 -1px rgba(105, 105, 105, 0.3); }
  5008.  
  5009. terminal-window notebook > header.top,
  5010. .mate-terminal notebook > header.top {
  5011.  
  5012. padding-top: 3px;
  5013. box-shadow: inset 0 1px #d4d5db, inset 0 -1px rgba(105, 105, 105, 0.3); }
  5014.  
  5015. terminal-window notebook > header.top button,
  5016. .mate-terminal notebook > header.top button {
  5017.  
  5018. padding: 0;
  5019. min-width: 24px;
  5020. min-height: 24px; }
  5021.  
  5022. .nautilus-canvas-item {
  5023.  
  5024. border-radius: 2px; }
  5025.  
  5026. .nautilus-desktop.nautilus-canvas-item {
  5027.  
  5028. color: white;
  5029. text-shadow: 1px 1px rgba(0, 0, 0, 0.6); }
  5030.  
  5031. .nautilus-desktop.nautilus-canvas-item:active {
  5032.  
  5033. color: #252525; }
  5034.  
  5035. .nautilus-desktop.nautilus-canvas-item:selected {
  5036.  
  5037. color: #ffffff;
  5038. text-shadow: none; }
  5039.  
  5040. .nautilus-canvas-item.dim-label,
  5041. label.nautilus-canvas-item.separator,
  5042. popover.background label.nautilus-canvas-item.separator,
  5043. headerbar .nautilus-canvas-item.subtitle,
  5044. .titlebar:not(headerbar) .nautilus-canvas-item.subtitle,
  5045. .nautilus-list-dim-label {
  5046.  
  5047. color: #8d8d8d; }
  5048.  
  5049. .nautilus-canvas-item.dim-label:selected,
  5050. label.nautilus-canvas-item.separator:selected,
  5051. headerbar .nautilus-canvas-item.subtitle:selected,
  5052. .titlebar:not(headerbar) .nautilus-canvas-item.subtitle:selected,
  5053. .nautilus-canvas-item.dim-label:selected:focus,
  5054. label.nautilus-canvas-item.separator:selected:focus,
  5055. headerbar .nautilus-canvas-item.subtitle:selected:focus,
  5056. .titlebar:not(headerbar) .nautilus-canvas-item.subtitle:selected:focus,
  5057. .nautilus-list-dim-label:selected,
  5058. .nautilus-list-dim-label:selected:focus {
  5059.  
  5060. color: #d2e1f7;}
  5061.  
  5062. .nautilus-window searchbar {
  5063.  
  5064. border-top: 1px solid rgba(105, 105, 105, 0.3); }
  5065.  
  5066. .nautilus-window .searchbar-container {
  5067.  
  5068. margin-top: -1px; }
  5069.  
  5070. .nautilus-window notebook,
  5071. .nautilus-window notebook > stack:not(:only-child) searchbar {
  5072.  
  5073. background-color: #ffffff; }
  5074.  
  5075. .disk-space-display {
  5076.  
  5077. border-style: solid;
  5078. border-width: 1px; }
  5079.  
  5080. .disk-space-display {
  5081.  
  5082. border-style: solid;
  5083. border-width: 1px; }
  5084.  
  5085. .disk-space-display.unknown {
  5086.  
  5087. background-color: rgba(37, 37, 37, 0.5);
  5088. border-color: rgba(12, 12, 12, 0.5); }
  5089.  
  5090. .disk-space-display.used {
  5091.  
  5092. background-color: rgba(32, 106, 217, 0.8);
  5093. border-color: rgba(25, 84, 173, 0.8); }
  5094.  
  5095. .disk-space-display.free {
  5096. background-color: #ededed;
  5097. border-color: #d4d4d4; }
  5098.  
  5099. @keyframes needs_attention_keyframes {
  5100.  
  5101. 0% {
  5102. color: #696969;
  5103. border-color: rgba(105, 105, 105, 0.3);
  5104. background-color: white; }
  5105. 100% {
  5106. color: #ffffff;
  5107. border-color: rgba(105, 105, 105, 0.3);
  5108. background-color: rgba(0, 0, 0, 0.45); } }
  5109.  
  5110. .nautilus-operations-button-needs-attention {
  5111.  
  5112. animation: needs_attention_keyframes 2s ease-in-out; }
  5113.  
  5114. .nautilus-operations-button-needs-attention-multiple {
  5115.  
  5116. animation: needs_attention_keyframes 3s ease-in-out;
  5117. animation-iteration-count: 3; }
  5118.  
  5119. .conflict-row.activatable, .conflict-row.activatable:active {
  5120.  
  5121. color: white;
  5122. background-color: #FC4138; }
  5123.  
  5124. .conflict-row.activatable:hover {
  5125.  
  5126. background-color: #fd716a; }
  5127.  
  5128. .conflict-row.activatable:selected {
  5129.  
  5130. color: #ffffff;
  5131. background-color: #4a85cb; }
  5132.  
  5133.  
  5134. .open-document-selector-treeview.view, iconview.open-document-selector-treeview {
  5135.  
  5136. padding: 3px 6px 3px 6px;
  5137. border-color: #ffffff; }
  5138.  
  5139. .open-document-selector-treeview.view:hover, iconview.open-document-selector-treeview:hover {
  5140.  
  5141. background-color: #f4f4f5; }
  5142.  
  5143. .open-document-selector-treeview.view:hover:selected, iconview.open-document-selector-treeview:hover:selected {
  5144.  
  5145. color: #ffffff;
  5146. background-color: #4a85cb; }
  5147.  
  5148. .open-document-selector-name-label {
  5149.  
  5150. color: #252525; }
  5151.  
  5152. .open-document-selector-path-label {
  5153.  
  5154. color: #929292;
  5155. font-size: smaller; }
  5156.  
  5157. .open-document-selector-path-label:selected {
  5158.  
  5159. color: rgba(255, 255, 255, 0.9); }
  5160.  
  5161. .gedit-document-panel row button {
  5162.  
  5163. min-width: 22px;
  5164. min-height: 22px;
  5165. padding: 0;
  5166. color: transparent;
  5167. background: none;
  5168. border: none;
  5169. box-shadow: none; }
  5170.  
  5171. .gedit-document-panel row button image {
  5172.  
  5173. color: inherit; }
  5174.  
  5175. .gedit-document-panel row:hover:not(:selected) button {
  5176.  
  5177. color: #6e6e6e; }
  5178.  
  5179. .gedit-document-panel row:hover:not(:selected) button:hover {
  5180.  
  5181. color: #ff4d4d; }
  5182.  
  5183. .gedit-document-panel row:hover:not(:selected) button:active {
  5184.  
  5185. color: #252525; }
  5186.  
  5187. .gedit-document-panel row:hover:selected button:hover {
  5188.  
  5189. color: #ff6666;
  5190. background: none;
  5191. border: none;
  5192. box-shadow: none; }
  5193.  
  5194. .gedit-document-panel row:hover:selected button:hover:active {
  5195.  
  5196. color: #ffffff; }
  5197.  
  5198. .gedit-document-panel-dragged-row {
  5199.  
  5200. border: 1px solid rgba(105, 105, 105, 0.3);
  5201. background-color: gainsboro;
  5202. color: #252525; }
  5203.  
  5204. .gedit-side-panel-paned statusbar {
  5205.  
  5206. border-top: 1px solid rgba(105, 105, 105, 0.3);
  5207. background-color: rgba(239,244,247,1); }
  5208.  
  5209. .gedit-search-slider {
  5210.  
  5211. background-color: #f6f8fa;
  5212. padding: 6px;
  5213. border-color: rgba(105, 105, 105, 0.3);
  5214. border-radius: 0 0 2px 2px;
  5215. border-width: 0 1px 1px 1px;
  5216. border-style: solid; }
  5217.  
  5218. .gedit-search-entry-occurrences-tag {
  5219.  
  5220. color: rgba(37, 37, 37, 0.6);
  5221. border: none;
  5222. margin: 2px;
  5223. padding: 2px; }
  5224.  
  5225. .gedit-map-frame border {
  5226.  
  5227. border-color: rgba(0, 0, 0, 0.3);
  5228. border-width: 0; }
  5229.  
  5230. .gedit-map-frame border:dir(ltr) {
  5231.  
  5232. border-left-width: 1px; }
  5233.  
  5234. .gedit-map-frame border:dir(rtl) {
  5235.  
  5236. border-right-width: 1px; }
  5237.  
  5238. .pluma-window statusbar frame > border {
  5239.  
  5240. border: none; }
  5241.  
  5242. .pluma-window notebook > stack scrolledwindow {
  5243.  
  5244. border-width: 0 0 1px 0; }
  5245.  
  5246. #pluma-status-combo-button {
  5247. min-height: 0;
  5248. padding: 0;
  5249. border-top: none;
  5250. border-bottom: none;
  5251. border-radius: 0; }
  5252.  
  5253. .gb-search-entry-occurrences-tag {
  5254.  
  5255. background: none; }
  5256.  
  5257. workbench.csd > stack.titlebar:not(headerbar) {
  5258.  
  5259. padding: 0;
  5260. background: none;
  5261. border: none;
  5262. box-shadow: none; }
  5263.  
  5264. workbench.csd > stack.titlebar:not(headerbar) headerbar,
  5265. workbench.csd > stack.titlebar:not(headerbar) headerbar:first-child,
  5266. workbench.csd > stack.titlebar:not(headerbar) headerbar:last-child {
  5267.  
  5268. border-radius: 4px 4px 0 0; }
  5269.  
  5270. editortweak .linked > entry.search:focus + .gb-linked-scroller {
  5271.  
  5272. border-top-color: #4a85cb; }
  5273.  
  5274. layouttab {
  5275.  
  5276. background-color: #ffffff; }
  5277.  
  5278. layout {
  5279.  
  5280. border: 1px solid rgba(105, 105, 105, 0.3);
  5281. -PnlDockBin-handle-size: 1; }
  5282.  
  5283. eggsearchbar box.search-bar {
  5284.  
  5285. border-bottom: 1px solid rgba(105, 105, 105, 0.3); }
  5286.  
  5287. pillbox {
  5288.  
  5289. color: #ffffff;
  5290. background-color: #4a85cb;
  5291. border-radius: 3px; }
  5292. pillbox:disabled label {
  5293. color: rgba(255, 255, 255, 0.5); }
  5294.  
  5295. docktabstrip {
  5296.  
  5297. padding: 0 6px;
  5298. background-color: rgba(239,244,247,1);
  5299. border-bottom: 1px solid rgba(105, 105, 105, 0.3); }
  5300. docktabstrip docktab {
  5301.  
  5302. min-height: 28px;
  5303. border: solid transparent;
  5304. border-width: 0 1px; }
  5305.  
  5306. docktabstrip docktab label {
  5307.  
  5308. opacity: 0.5; }
  5309.  
  5310. docktabstrip docktab:checked label, docktabstrip docktab:hover label {
  5311.  
  5312. opacity: 1; }
  5313.  
  5314. docktabstrip docktab:checked {
  5315.  
  5316. border-color: rgba(105, 105, 105, 0.3);
  5317. background-color: #ffffff; }
  5318.  
  5319. dockbin {
  5320.  
  5321. border: 1px solid rgba(105, 105, 105, 0.3);
  5322. -PnlDockBin-handle-size: 1; }
  5323.  
  5324. dockpaned {
  5325.  
  5326. border: 1px solid rgba(105, 105, 105, 0.3); }
  5327.  
  5328. dockoverlayedge {
  5329.  
  5330. background-color: rgba(239,244,247,1); }
  5331.  
  5332. dockoverlayedge docktabstrip {
  5333.  
  5334. padding: 0;
  5335. border: none; }
  5336.  
  5337. dockoverlayedge.left-edge tab:checked,
  5338. dockoverlayedge.right-edge tab:checked {
  5339.  
  5340. border-width: 1px 0; }
  5341.  
  5342. popover.messagepopover.background {
  5343.  
  5344. padding: 0; }
  5345.  
  5346. popover.messagepopover .popover-content-area {
  5347.  
  5348. margin: 16px; }
  5349.  
  5350. popover.messagepopover .popover-action-area {
  5351.  
  5352. margin: 8px; }
  5353.  
  5354. popover.messagepopover .popover-action-area button:not(:first-child):not(:last-child) {
  5355. margin: 0 4px; }
  5356.  
  5357. popover.popover-selector {
  5358.  
  5359. padding: 0; }
  5360.  
  5361. popover.popover-selector list row {
  5362.  
  5363. padding: 5px 0; }
  5364.  
  5365. popover.popover-selector list row image {
  5366.  
  5367. margin-left: 3px;
  5368. margin-right: 10px; }
  5369.  
  5370. entry.search.preferences-search {
  5371.  
  5372. border: none;
  5373. border-right: 1px solid rgba(105, 105, 105, 0.3);
  5374. border-bottom: 1px solid rgba(105, 105, 105, 0.3);
  5375. border-radius: 0; }
  5376.  
  5377. preferences stacksidebar.sidebar list {
  5378.  
  5379. background-image: linear-gradient(to bottom, #ffffff, #ffffff); }
  5380.  
  5381. preferences stacksidebar.sidebar list separator {
  5382.  
  5383. background-color: transparent; }
  5384.  
  5385. devhelppanel entry:focus,
  5386. symboltreepanel entry:focus {
  5387.  
  5388. border-color: rgba(105, 105, 105, 0.3); }
  5389.  
  5390. button.run-arrow-button {
  5391.  
  5392. min-width: 12px; }
  5393.  
  5394. omnibar.linked > entry:not(:only-child) {
  5395.  
  5396. border-style: solid;
  5397. border-radius: 3px;
  5398. margin-left: 1px;
  5399. margin-right: 1px; }
  5400.  
  5401. gstyleslidein #scale_box button.toggle:checked,
  5402. gstyleslidein #strings_controls button.toggle:checked,
  5403. gstyleslidein #palette_controls button.toggle:checked,
  5404. gstyleslidein #components_controls button.toggle:checked {
  5405.  
  5406. color: #252525; }
  5407.  
  5408. configurationview entry.flat {
  5409.  
  5410. background: none; }
  5411.  
  5412. configurationview list {
  5413.  
  5414. border-width: 0; }
  5415.  
  5416. .documents-scrolledwin.frame {
  5417.  
  5418. border-width: 0; }
  5419.  
  5420. button.documents-load-more {
  5421.  
  5422. border-width: 1px 0 0;
  5423. border-radius: 0; }
  5424.  
  5425. .documents-icon-bg {
  5426.  
  5427. background-color: #4a85cb;
  5428. color: #ffffff;
  5429. border-radius: 2px; }
  5430.  
  5431. .documents-collection-icon, .photos-collection-icon {
  5432.  
  5433. background-color: rgba(37, 37, 37, 0.3);
  5434. border-radius: 2px; }
  5435.  
  5436. button.documents-favorite:active,
  5437. button.documents-favorite:active:hover {
  5438.  
  5439. color: #74a4eb; }
  5440.  
  5441. .documents-entry-tag, .photos-entry-tag {
  5442.  
  5443. color: #ffffff;
  5444. background: #4a85cb;
  5445. border-radius: 2px;
  5446. border-width: 0;
  5447. margin: 2px;
  5448. padding: 4px; }
  5449.  
  5450. .documents-entry-tag:hover, .photos-entry-tag:hover {
  5451.  
  5452. color: #ffffff;
  5453. background: #2d75e0; }
  5454.  
  5455. .documents-entry-tag:active, .photos-entry-tag:active {
  5456.  
  5457. color: #ffffff;
  5458. background: #1d61c7; }
  5459.  
  5460. .content-view.document-page {
  5461.  
  5462. border-style: solid;
  5463. border-width: 3px 3px 6px 4px;
  5464. border-image: url("objects/other/thumbnail-frame.png") 3 3 6 4; }
  5465.  
  5466. .photos-fade-in {
  5467.  
  5468. opacity: 1.0;
  5469. transition: opacity 0.2s ease-out; }
  5470.  
  5471. .photos-fade-out {
  5472.  
  5473. opacity: 0.0;
  5474. transition: opacity 0.2s ease-out; }
  5475.  
  5476. .tweak-categories,
  5477. .tweak-category:not(:selected):not(:hover) {
  5478.  
  5479. background-image: linear-gradient(to bottom, #ffffff, #ffffff); }
  5480.  
  5481. .tweak-categories separator {
  5482.  
  5483. min-width: 0;
  5484. min-height: 0;
  5485. background: transparent; }
  5486.  
  5487. .tr-workarea undershoot,
  5488. .tr-workarea overshoot {
  5489.  
  5490. border-color: transparent; }
  5491.  
  5492. .atril-window .primary-toolbar toolbar, .atril-window .primary-toolbar .inline-toolbar {
  5493.  
  5494. background: none; }
  5495.  
  5496. #gf-bubble, #gf-bubble.solid,
  5497. #gf-osd-window,
  5498. #gf-osd-window.solid,
  5499. #gf-input-source-popup,
  5500. #gf-input-source-popup.solid,
  5501. #gf-candidate-popup,
  5502. #gf-candidate-popup.solid {
  5503. color: #cfd5de;
  5504. background-color: rgba(53, 57, 69, 0.95);
  5505. border: 1px solid rgba(35, 38, 46, 0.95);
  5506. border-radius: 2px; }
  5507.  
  5508. #gf-bubble levelbar block.low, #gf-bubble levelbar block.high, #gf-bubble levelbar block.full,
  5509. #gf-osd-window levelbar block.low,
  5510. #gf-osd-window levelbar block.high,
  5511. #gf-osd-window levelbar block.full,
  5512. #gf-input-source-popup levelbar block.low,
  5513. #gf-input-source-popup levelbar block.high,
  5514. #gf-input-source-popup levelbar block.full,
  5515. #gf-candidate-popup levelbar block.low,
  5516. #gf-candidate-popup levelbar block.high,
  5517. #gf-candidate-popup levelbar block.full {
  5518. background-color: #4a85cb;
  5519. border-color: #4a85cb; }
  5520.  
  5521. #gf-bubble levelbar block.empty,
  5522. #gf-osd-window levelbar block.empty,
  5523. #gf-input-source-popup levelbar block.empty,
  5524. #gf-candidate-popup levelbar block.empty {
  5525. background-color: rgba(42, 45, 55, 0.95); }
  5526.  
  5527. #gf-bubble levelbar trough,
  5528. #gf-osd-window levelbar trough,
  5529. #gf-input-source-popup levelbar trough,
  5530. #gf-candidate-popup levelbar trough {
  5531. background: none; }
  5532.  
  5533. #gf-input-source {
  5534. min-height: 32px;
  5535. min-width: 40px; }
  5536. #gf-input-source:selected {
  5537. color: #ffffff;
  5538. background-color: #4a85cb;
  5539. border-radius: 2px; }
  5540.  
  5541. gf-candidate-box label {
  5542.  
  5543. padding: 3px; }
  5544.  
  5545. gf-candidate-box:hover, gf-candidate-box:selected {
  5546.  
  5547. color: #ffffff;
  5548. background-color: #4a85cb;
  5549. border-radius: 2px; }
  5550.  
  5551. MsdOsdWindow.background.osd {
  5552.  
  5553. border-radius: 2px;
  5554. border: 1px solid rgba(35, 38, 46, 0.95); }
  5555.  
  5556. MsdOsdWindow.background.osd .progressbar {
  5557.  
  5558. background-color: #4a85cb;
  5559. border: none;
  5560. border-color: red;
  5561. border-radius: 5px; }
  5562.  
  5563. MsdOsdWindow.background.osd .trough {
  5564.  
  5565. background-color: rgba(42, 45, 55, 0.95);
  5566. border: none;
  5567. border-radius: 5px; }
  5568.  
  5569.  
  5570. #tasklist-button {
  5571. color: rgba(186, 195, 207, 0.8);
  5572. border-radius: 0;
  5573. border: none;
  5574. background-color: rgba(43, 46, 55, 0); }
  5575. #tasklist-button:hover {
  5576. color: #d8dde4;
  5577. background-color: rgba(0, 0, 0, 0.17); }
  5578. #tasklist-button:checked {
  5579. color: white;
  5580. background-color: rgba(0, 0, 0, 0.25);
  5581. box-shadow: inset 0 -2px #4a85cb; }
  5582.  
  5583. .nautilus-window .floating-bar {
  5584.  
  5585. padding: 1px;
  5586. background-color: #4a85cb;
  5587. color: #ffffff;
  5588. border-radius: 2px 2px 0 0; }
  5589.  
  5590. .nautilus-window .floating-bar.bottom.left {
  5591.  
  5592. border-top-left-radius: 0; }
  5593.  
  5594. .nautilus-window .floating-bar.bottom.right {
  5595.  
  5596. border-top-right-radius: 0; }
  5597.  
  5598. .nautilus-window .floating-bar button {
  5599.  
  5600. border: none;
  5601. border-radius: 0;
  5602. min-height: 0; }
  5603.  
  5604. .panel {
  5605.  
  5606. background-color: transparent;
  5607. color: white;
  5608. font-weight: bold;
  5609. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  5610. -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  5611.  
  5612. .panel-shadow {
  5613.  
  5614. background-image: none;
  5615. background-color: transparent; }
  5616.  
  5617. .panel .menu {
  5618.  
  5619. box-shadow: none; }
  5620.  
  5621. .panel .menu .menuitem {
  5622.  
  5623. font-weight: normal;
  5624. text-shadow: none;
  5625. -gtk-icon-shadow: none; }
  5626.  
  5627. .panel .menu .window-frame.menu.csd,
  5628. .panel .menu .window-frame.popup.csd {
  5629.  
  5630. 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); }
  5631.  
  5632. .panel .menubar > .menuitem {
  5633.  
  5634. padding: 3px 6px; }
  5635.  
  5636. .panel .menubar > .menuitem:hover {
  5637.  
  5638. background-color: transparent; }
  5639.  
  5640. .panel .window-frame.menu.csd,
  5641. .panel .window-frame.popup.csd {
  5642.  
  5643. box-shadow: none; }
  5644.  
  5645. .composited-indicator {
  5646.  
  5647. background-color: transparent;
  5648. color: white;
  5649. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  5650. -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  5651.  
  5652. .composited-indicator > GtkWidget > GtkWidget:first-child {
  5653.  
  5654. padding: 0 2px; }
  5655.  
  5656. .composited-indicator .menuitem:active, .composited-indicator .menuitem:hover {
  5657.  
  5658. border-style: none;
  5659. background-image: none;
  5660. box-shadow: none; }
  5661.  
  5662. .composited-indicator > .popup > .menu {
  5663.  
  5664. padding-top: 8px;
  5665. padding-bottom: 8px; }
  5666.  
  5667. .panel-app-button > GtkWidget > GtkWidget:first-child {
  5668.  
  5669. padding: 0 2px 0 4px; }
  5670.  
  5671. .panel .menu .spinner,
  5672. .menu .spinner {
  5673.  
  5674. opacity: 1; }
  5675.  
  5676.  
  5677.  
  5678. .lightdm.menu {
  5679.  
  5680. background-image: none;
  5681. background-color: rgba(0, 0, 0, 0.4);
  5682. border-color: rgba(255, 255, 255, 0.8);
  5683. border-radius: 4px;
  5684. padding: 1px;
  5685. color: white; }
  5686.  
  5687. .lightdm-combo .menu {
  5688.  
  5689. background-color: rgba(253, 253, 254, 0.95);
  5690. border-radius: 0px;
  5691. padding: 0px;
  5692. color: white; }
  5693.  
  5694. .lightdm.menu .menuitem *,
  5695. .lightdm.menu .menuitem.check:active,
  5696. .lightdm.menu .menuitem.radio:active {
  5697.  
  5698. color: white; }
  5699.  
  5700. .lightdm.menubar {
  5701.  
  5702. color: rgba(255, 255, 255, 0.8);
  5703. background-image: none;
  5704. background-color: rgba(0, 0, 0, 0.5); }
  5705.  
  5706. .lightdm.menubar > .menuitem {
  5707.  
  5708. padding: 2px 6px; }
  5709.  
  5710. .lightdm-combo.combobox-entry .button,
  5711. .lightdm-combo .cell,
  5712. .lightdm-combo .button,
  5713. .lightdm-combo .entry,
  5714. .lightdm.button,
  5715. .lightdm.entry {
  5716.  
  5717. background-image: none;
  5718. background-color: rgba(0, 0, 0, 0.3);
  5719. border-color: rgba(255, 255, 255, 0.4);
  5720. border-radius: 10px;
  5721. padding: 7px;
  5722. color: white;
  5723. text-shadow: none; }
  5724.  
  5725. .lightdm.button,
  5726. .lightdm.button:hover,
  5727. .lightdm.button:active,
  5728. .lightdm.button:active:focus,
  5729. .lightdm.entry,
  5730. .lightdm.entry:hover,
  5731. .lightdm.entry:active,
  5732. .lightdm.entry:active:focus {
  5733.  
  5734. background-image: none;
  5735. border-image: none; }
  5736.  
  5737. .lightdm.button:focus,
  5738. .lightdm.entry:focus {
  5739.  
  5740. border-color: rgba(255, 255, 255, 0.1);
  5741. border-width: 1px;
  5742. border-style: solid;
  5743. color: white; }
  5744.  
  5745. .lightdm.entry:selected {
  5746.  
  5747. background-color: rgba(255, 255, 255, 0.8); }
  5748.  
  5749. .lightdm.entry:active {
  5750.  
  5751. -gtk-icon-source: -gtk-icontheme("process-working-symbolic");
  5752. animation: dashentry_spinner 1s infinite linear; }
  5753.  
  5754. .lightdm.option-button {
  5755.  
  5756. padding: 2px;
  5757. background: none;
  5758. border: 0; }
  5759.  
  5760. .lightdm.toggle-button {
  5761.  
  5762. background: none;
  5763. border-width: 0; }
  5764. .lightdm.toggle-button.selected {
  5765.  
  5766. background-color: rgba(0, 0, 0, 0.7);
  5767. border-width: 1px; }
  5768.  
  5769. @keyframes dashentry_spinner {
  5770. to {
  5771. -gtk-icon-transform: rotate(1turn); } }
  5772.  
  5773. .overlay-bar {
  5774.  
  5775. background-color: #4a85cb;
  5776. border-color: #4a85cb;
  5777. border-radius: 2px;
  5778. padding: 3px 6px;
  5779. margin: 3px; }
  5780.  
  5781. .overlay-bar label {
  5782.  
  5783. color: #ffffff; }
  5784.  
  5785. GraniteWidgetsThinPaned {
  5786.  
  5787. background-color: transparent;
  5788. background-image: none;
  5789. margin: 0;
  5790. border-left: 1px solid rgba(105, 105, 105, 0.3);
  5791. border-right: 1px solid rgba(105, 105, 105, 0.3); }
  5792.  
  5793. GraniteWidgetsPopOver .frame,
  5794. GraniteWidgetsStaticNotebook .frame {
  5795.  
  5796. border: none; }
  5797.  
  5798. .help_button {
  5799.  
  5800. border-radius: 100px;
  5801. padding: 3px 9px; }
  5802.  
  5803. toolbar.secondary-toolbar,
  5804. .secondary-toolbar.inline-toolbar {
  5805.  
  5806. padding: 3px;
  5807. border-bottom: 1px solid rgba(105, 105, 105, 0.3); }
  5808.  
  5809. toolbar.secondary-toolbar button,
  5810. .secondary-toolbar.inline-toolbar button {
  5811.  
  5812. padding: 0 3px 0 3px; }
  5813.  
  5814. toolbar.bottom-toolbar, .bottom-toolbar.inline-toolbar {
  5815.  
  5816. padding: 5px;
  5817. border-width: 1px 0 0 0;
  5818. border-style: solid;
  5819. border-color: rgba(105, 105, 105, 0.3);
  5820. background-color: rgba(239,244,247,1); }
  5821.  
  5822. toolbar.bottom-toolbar button,
  5823. .bottom-toolbar.inline-toolbar button {
  5824.  
  5825. padding: 2px 3px 2px 3px; }
  5826.  
  5827. .source-list {
  5828.  
  5829. -GtkTreeView-horizontal-separator: 1px;
  5830. -GtkTreeView-vertical-separator: 6px; }
  5831.  
  5832. .source-list,
  5833. .source-list.view,
  5834. iconview.source-list {
  5835.  
  5836. background-color: rgba(239,244,247,1);
  5837. color: #252525;
  5838. -gtk-icon-style: regular; }
  5839.  
  5840. .source-list.category-expander {
  5841.  
  5842. color: transparent; }
  5843.  
  5844. .source-list.view:hover, iconview.source-list:hover {
  5845.  
  5846. background-color: white; }
  5847.  
  5848. .source-list.view:selected, iconview.source-list:selected,
  5849. .source-list.view:hover:selected,
  5850. iconview.source-list:hover:selected,
  5851. .source-list.view:selected:focus,
  5852. iconview.source-list:selected:focus,
  5853. .source-list.category-expander:hover {
  5854.  
  5855. color: #ffffff;
  5856. background-color: #4a85cb; }
  5857.  
  5858. .source-list scrollbar,
  5859. .source-list junction {
  5860.  
  5861. border-image: none;
  5862. border-color: transparent;
  5863. background-color: rgba(239,244,247,1);
  5864. background-image: none; }
  5865.  
  5866. .source-list.badge,
  5867. .source-list.badge:hover,
  5868. .source-list.badge:selected,
  5869. .source-list.badge:selected:focus,
  5870. .source-list.badge:hover:selected {
  5871.  
  5872. background-image: none;
  5873. background-color: #4a85cb;
  5874. color: #ffffff;
  5875. border-radius: 10px;
  5876. padding: 0 6px;
  5877. margin: 0 3px;
  5878. border-width: 0; }
  5879.  
  5880. .source-list.badge:selected,
  5881. .source-list.badge:selected:focus,
  5882. .source-list.badge:hover:selected {
  5883.  
  5884. background-color: #ffffff;
  5885. color: #4a85cb; }
  5886.  
  5887. .source-list.category-expander {
  5888.  
  5889. color: #252525;
  5890. -gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
  5891. -GtkTreeView-expander-size: 16; }
  5892.  
  5893. .source-list.category-expander,
  5894. .source-list.category-expander:backdrop {
  5895.  
  5896. color: transparent;
  5897. border: none; }
  5898.  
  5899. .source-list.category-expander:checked {
  5900.  
  5901. -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
  5902.  
  5903. GraniteWidgetsWelcome {
  5904.  
  5905. background-color: #ffffff; }
  5906.  
  5907. GraniteWidgetsWelcome label {
  5908.  
  5909. color: #a9acb2;
  5910. font-size: 11px;
  5911. text-shadow: none; }
  5912.  
  5913. GraniteWidgetsWelcome .h1,
  5914. GraniteWidgetsWelcome .h3 {
  5915.  
  5916. color: rgba(92, 97, 108, 0.8); }
  5917.  
  5918. .help_button {
  5919.  
  5920. border-radius: 0; }
  5921.  
  5922. GraniteWidgetsPopOver {
  5923.  
  5924. -GraniteWidgetsPopOver-arrow-width: 21;
  5925. -GraniteWidgetsPopOver-arrow-height: 10;
  5926. -GraniteWidgetsPopOver-border-radius: 2px;
  5927. -GraniteWidgetsPopOver-border-width: 1;
  5928. -GraniteWidgetsPopOver-shadow-size: 12;
  5929. border: 1px solid rgba(0, 0, 0, 0.3);
  5930. margin: 0; }
  5931.  
  5932. .popover_bg {
  5933.  
  5934. background-image: linear-gradient(to bottom, #ffffff, #ffffff);
  5935. border: 1px solid rgba(0, 0, 0, 0.3); }
  5936.  
  5937. GraniteWidgetsPopOver .sidebar.view,
  5938. GraniteWidgetsPopOver iconview.sidebar,
  5939. GraniteWidgetsPopOver * {
  5940.  
  5941. background-color: transparent; }
  5942.  
  5943. GraniteWidgetsXsEntry entry {
  5944.  
  5945. padding: 4px; }
  5946.  
  5947. .h1 {
  5948.  
  5949. font-size: 24px; }
  5950.  
  5951. .h2 {
  5952.  
  5953. font-size: 18px; }
  5954.  
  5955. .h3 {
  5956.  
  5957. font-size: 11px; }
  5958.  
  5959. .h4,
  5960. .category-label {
  5961.  
  5962. color: #636363;
  5963. font-weight: 600; }
  5964.  
  5965. .h4 {
  5966.  
  5967. padding-bottom: 6px;
  5968. padding-top: 6px; }
  5969.  
  5970. GtkListBox .h4 {
  5971.  
  5972. padding-left: 6px; }
  5973.  
  5974. #panel_window {
  5975. background-color: rgba(43, 46, 55, 0.95);
  5976. color: #BAC3CF;
  5977. font-weight: bold;
  5978. box-shadow: inset 0 -1px rgba(27, 29, 35, 0.95); }
  5979. #panel_window menubar {
  5980. padding-left: 5px; }
  5981. #panel_window menubar, #panel_window menubar > menuitem {
  5982. background-color: transparent;
  5983. color: #BAC3CF;
  5984. font-weight: bold; }
  5985. #panel_window menubar menuitem:disabled {
  5986. color: rgba(186, 195, 207, 0.5); }
  5987. #panel_window menubar menuitem:disabled label {
  5988. color: inherit; }
  5989. #panel_window menubar menu > menuitem {
  5990. font-weight: normal; }
  5991.  
  5992. #login_window,
  5993. #shutdown_dialog,
  5994. #restart_dialog {
  5995. font-weight: normal;
  5996. border-style: none;
  5997. background-color: transparent;
  5998. color: #252525; }
  5999.  
  6000. #content_frame {
  6001. padding-bottom: 14px;
  6002. background-color: rgba(239,244,247,1);
  6003. border-top-left-radius: 2px;
  6004. border-top-right-radius: 2px;
  6005. border: solid rgba(0, 0, 0, 0.1);
  6006. border-width: 1px 1px 0 1px; }
  6007.  
  6008. #content_frame button {
  6009. color: #252525;
  6010. border-color: #cfd6e6;
  6011. background-color: #f6f8fa; }
  6012. #content_frame button:hover {
  6013. color: #252525;
  6014. border-color: #cfd6e6;
  6015. background-color: white; }
  6016. #content_frame button:active, #content_frame button:checked {
  6017. color: #ffffff;
  6018. border-color: #4a85cb;
  6019. background-color: #4a85cb; }
  6020. #content_frame button:disabled {
  6021. border-color: rgba(207, 214, 230, 0.55);
  6022. background-color: rgba(251, 251, 252, 0.55); }
  6023. #content_frame button:disabled label, #content_frame button:disabled {
  6024. color: rgba(92, 97, 108, 0.55); }
  6025.  
  6026. #buttonbox_frame {
  6027. padding-top: 20px;
  6028. padding-bottom: 0px;
  6029. border-style: none;
  6030. background-color: rgba(53, 57, 69, 0.95);
  6031. border-bottom-left-radius: 3px;
  6032. border-bottom-right-radius: 3px;
  6033. border: solid rgba(0, 0, 0, 0.1);
  6034. border-width: 0 1px 1px 1px;
  6035. box-shadow: inset 0 1px rgba(53, 57, 69, 0.95); }
  6036.  
  6037. #buttonbox_frame button {
  6038. color: #BAC3CF;
  6039. border-color: rgba(26, 28, 34, 0.35);
  6040. background-color: rgba(102, 109, 132, 0.35); }
  6041. #buttonbox_frame button:hover {
  6042. color: #BAC3CF;
  6043. border-color: rgba(26, 28, 34, 0.35);
  6044. background-color: rgba(119, 127, 151, 0.45); }
  6045. #buttonbox_frame button:active, #buttonbox_frame button:checked {
  6046. color: #ffffff;
  6047. border-color: rgba(26, 28, 34, 0.35);
  6048. background-color: #4a85cb; }
  6049. #buttonbox_frame button:disabled {
  6050. color: #5d626e;
  6051. border-color: rgba(26, 28, 34, 0.35);
  6052. background-color: rgba(102, 109, 132, 0.2); }
  6053.  
  6054. #login_window #user_combobox {
  6055. color: #252525;
  6056. font-size: 13px; }
  6057. #login_window #user_combobox menu {
  6058. font-weight: normal; }
  6059.  
  6060. #user_image {
  6061. padding: 3px;
  6062. border-radius: 2px; }
  6063.  
  6064. #shutdown_button.button {
  6065. background-clip: border-box;
  6066. color: green;
  6067. background-color: #F04A50;
  6068. border-color: #F04A50; }
  6069. #shutdown_button.button:hover {
  6070. background-clip: border-box;
  6071. color: green;
  6072. background-color: #f4797e;
  6073. border-color: #f4797e; }
  6074. #shutdown_button.button:active, #shutdown_button.button:checked {
  6075. background-clip: border-box;
  6076. color: green;
  6077. background-color: #ec1b22;
  6078. border-color: #ec1b22; }
  6079.  
  6080. #restart_button.button {
  6081. background-clip: border-box;
  6082. color: green;
  6083. background-color: #4DADD4;
  6084. border-color: #4DADD4; }
  6085. #restart_button.button:hover {
  6086. background-clip: border-box;
  6087. color: green;
  6088. background-color: #76c0de;
  6089. border-color: #76c0de; }
  6090. #restart_button.button:active, #restart_button.button:checked {
  6091. background-clip: border-box;
  6092. color: green;
  6093. background-color: #2e96c0;
  6094. border-color: #2e96c0; }
  6095.  
  6096. #greeter_infobar {
  6097. border-bottom-width: 0;
  6098. font-weight: bold }
  6099.  
  6100. .nautilus-window paned > separator {
  6101.  
  6102. background-image: linear-gradient(to bottom, rgba(240, 242, 248, 0.85), rgba(240, 242, 248, 0.85)); }
  6103.  
  6104. .nautilus-window paned > separator:dir(ltr) {
  6105.  
  6106. margin-left: -1px; }
  6107.  
  6108. .nautilus-window paned > separator:dir(rtl) {
  6109.  
  6110. margin-right: -1px; }
  6111.  
  6112. filechooser paned > separator {
  6113.  
  6114. background-image: linear-gradient(to bottom, rgba(240, 242, 248, 0.85), rgba(240, 242, 248, 0.85)); }
  6115.  
  6116. filechooser.csd.background,
  6117. filechooser placessidebar list,
  6118. .nautilus-window.csd.background,
  6119. .nautilus-window placessidebar list {
  6120.  
  6121. background-color: transparent; }
  6122.  
  6123. nautilus-window.maximized headerbar, .nautilus-window headerbar {
  6124. padding-left: 88px;}
  6125.  
  6126. filechooser placessidebar.sidebar,
  6127. .nautilus-window placessidebar.sidebar {
  6128.  
  6129. background-color: #e7edf1;
  6130. /*background-image:
  6131. linear-gradient(to bottom left,rgba(242,243,246,1),rgba(213,218,224,0.92),rgba(213,218,224,0.92),rgba(242,243,246,0.92));*/
  6132. }
  6133.  
  6134. filechooser placessidebar.sidebar row.sidebar-row,
  6135. .nautilus-window placessidebar.sidebar row.sidebar-row {
  6136.  
  6137. border: none;
  6138. color: black;
  6139. text-shadow: 0 1px alpha(#fff, 0.65); }
  6140.  
  6141. filechooser placessidebar.sidebar row.sidebar-row .sidebar-icon,
  6142. .nautilus-window placessidebar.sidebar row.sidebar-row .sidebar-icon {
  6143.  
  6144. color: rgba(80, 80, 80, 0.9); }
  6145.  
  6146. filechooser placessidebar.sidebar row.sidebar-row.has-open-popup,
  6147. filechooser placessidebar.sidebar row.sidebar-row:hover,
  6148. .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup,
  6149. .nautilus-window placessidebar.sidebar row.sidebar-row:hover {
  6150.  
  6151. background-color: rgba(80, 80, 80, 0.15); }
  6152.  
  6153. filechooser placessidebar.sidebar row.sidebar-row:disabled,
  6154. filechooser placessidebar.sidebar row.sidebar-row:disabled label,
  6155. filechooser placessidebar.sidebar row.sidebar-row:disabled image,
  6156. .nautilus-window placessidebar.sidebar row.sidebar-row:disabled,
  6157. .nautilus-window placessidebar.sidebar row.sidebar-row:disabled label,
  6158. .nautilus-window placessidebar.sidebar row.sidebar-row:disabled image {
  6159.  
  6160. color: rgba(80, 80, 80, 0.4); }
  6161.  
  6162. filechooser placessidebar.sidebar row.sidebar-row:selected.has-open-popup, filechooser placessidebar.sidebar row.sidebar-row:selected,
  6163. .nautilus-window placessidebar.sidebar row.sidebar-row:selected.has-open-popup,
  6164. .nautilus-window placessidebar.sidebar row.sidebar-row:selected {
  6165.  
  6166. color: #ffffff;
  6167. text-shadow: 0 -1px alpha(#000, 0.02),
  6168. -1px 0 alpha(#000, 0.05),
  6169. 1px 0 alpha(#000, 0.05),
  6170. 0 1px alpha(#000, 0.15),
  6171. 0 2px alpha(#000, 0.05);
  6172. -gtk-icon-shadow: 0 1px alpha(#000, 0.2);
  6173. background-color: rgba(0, 0, 0, 0.45); }
  6174.  
  6175. filechooser placessidebar.sidebar row.sidebar-row:selected.has-open-popup .sidebar-icon,
  6176. filechooser placessidebar.sidebar row.sidebar-row:selected .sidebar-icon,
  6177. .nautilus-window placessidebar.sidebar row.sidebar-row:selected.has-open-popup .sidebar-icon,
  6178. .nautilus-window placessidebar.sidebar row.sidebar-row:selected .sidebar-icon {
  6179.  
  6180. /*gtk-icon-shadow: 0 1px alpha(#000, 0.2);*/
  6181. color: inherit; }
  6182.  
  6183. filechooser placessidebar.sidebar row.sidebar-row:selected:hover,
  6184. .nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover {
  6185.  
  6186. color: #ffffff;
  6187. text-shadow: 0 -1px alpha(#000, 0.02),
  6188. -1px 0 alpha(#000, 0.05),
  6189. 1px 0 alpha(#000, 0.05),
  6190. 0 1px alpha(#000, 0.15),
  6191. 0 2px alpha(#000, 0.05);
  6192. -gtk-icon-shadow: 0 1px alpha(#000, 0.2);
  6193. background-color: rgba(0, 0, 0, 0.55); }
  6194.  
  6195. filechooser placessidebar.sidebar row.sidebar-row:selected:hover .sidebar-icon,
  6196. .nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover .sidebar-icon {
  6197.  
  6198. color: #ffffff;
  6199. text-shadow: 0 -1px alpha(#000, 0.02),
  6200. -1px 0 alpha(#000, 0.05),
  6201. 1px 0 alpha(#000, 0.05),
  6202. 0 1px alpha(#000, 0.15),
  6203. 0 2px alpha(#000, 0.05);
  6204. -gtk-icon-shadow: 0 1px alpha(#000, 0.2); }
  6205.  
  6206. filechooser placessidebar.sidebar row.sidebar-row:active:hover,
  6207. .nautilus-window placessidebar.sidebar row.sidebar-row:active:hover {
  6208.  
  6209. color: #ffffff;
  6210. text-shadow: 0 -1px alpha(#000, 0.02),
  6211. -1px 0 alpha(#000, 0.05),
  6212. 1px 0 alpha(#000, 0.05),
  6213. 0 1px alpha(#000, 0.15),
  6214. 0 2px alpha(#000, 0.05);
  6215. -gtk-icon-shadow: 0 1px alpha(#000, 0.2);
  6216. background-color: rgba(0, 0, 0, 0.55); }
  6217.  
  6218. filechooser placessidebar.sidebar row.sidebar-row:active:hover .sidebar-icon,
  6219. .nautilus-window placessidebar.sidebar row.sidebar-row:active:hover .sidebar-icon {
  6220.  
  6221. color: inherit; }
  6222.  
  6223. filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button,
  6224. .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button {
  6225.  
  6226. color: #505050; }
  6227.  
  6228. filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:hover,
  6229. .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:hover {
  6230.  
  6231. color: #505050;
  6232. border-color: rgba(198, 205, 229, 0.25);
  6233. background-color: rgba(255, 255, 255, 0.35); }
  6234.  
  6235. filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:active,
  6236. .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:active {
  6237.  
  6238. color: #ffffff;
  6239. border-color: #4a85cb;
  6240. background-color: #4a85cb; }
  6241.  
  6242. filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:not(:hover):not(:active) > image,
  6243. .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:not(:hover):not(:active) > image {
  6244.  
  6245. opacity: 0.5; }
  6246.  
  6247. filechooser placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row,
  6248. .nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row {
  6249.  
  6250. color: #4a85cb; }
  6251.  
  6252. filechooser placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon,
  6253. .nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon {
  6254.  
  6255. color: inherit; }
  6256.  
  6257. filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled),
  6258. filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) label,
  6259. filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) .sidebar-icon,
  6260. .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled),
  6261. .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) label,
  6262. .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) .sidebar-icon {
  6263.  
  6264. color: #F08437; }
  6265.  
  6266. filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected,
  6267. .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected {
  6268. background-color: #F08437; }
  6269.  
  6270. filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected,
  6271. filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected label,
  6272. filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected .sidebar-icon,
  6273. .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected,
  6274. .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected label,
  6275. .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected .sidebar-icon {
  6276.  
  6277. color: #ffffff; }
  6278.  
  6279. filechooser placessidebar.sidebar separator,
  6280. .nautilus-window placessidebar.sidebar separator {
  6281.  
  6282. background-color: transparent; }
  6283.  
  6284. filechooser.maximized placessidebar.sidebar,
  6285. .nautilus-window.maximized placessidebar.sidebar {
  6286.  
  6287. background-color: rgba(242, 243, 246, 0.9);}
  6288.  
  6289.  
  6290. filechooser actionbar {
  6291.  
  6292. color: #505050;
  6293. background-color: rgba(240, 242, 248, 0.85);
  6294. border-color: rgba(215, 221, 237, 0.85); }
  6295.  
  6296. filechooser actionbar label, filechooser actionbar combobox {
  6297.  
  6298. color: #505050; }
  6299.  
  6300. .gedit-bottom-panel-paned {
  6301.  
  6302. background-color: #ffffff; }
  6303.  
  6304. .gedit-side-panel-paned > separator {
  6305.  
  6306. background-image: linear-gradient(to bottom, rgba(240, 242, 248, 0.85), rgba(240, 242, 248, 0.85)); }
  6307.  
  6308. .gedit-bottom-panel-paned > separator {
  6309.  
  6310. background-image: linear-gradient(to bottom, rgba(105, 105, 105, 0.3), rgba(105, 105, 105, 0.3)); }
  6311.  
  6312. .gedit-document-panel {
  6313.  
  6314. background-color: rgba(240, 242, 248, 0.85); }
  6315.  
  6316. .maximized .gedit-document-panel {
  6317.  
  6318. background-color: #f0f2f8; }
  6319.  
  6320. .gedit-document-panel row {
  6321.  
  6322. color: #505050;
  6323. background-color: rgba(80, 80, 80, 0); }
  6324.  
  6325. .gedit-document-panel row:hover {
  6326.  
  6327. background-color: rgba(80, 80, 80, 0.15); }
  6328.  
  6329. .gedit-document-panel row:active {
  6330. color: #ffffff;
  6331. background-color: #4a85cb; }
  6332.  
  6333. .gedit-document-panel row:active button {
  6334.  
  6335. color: #ffffff; }
  6336.  
  6337. .gedit-document-panel row:selected, .gedit-document-panel row:selected:hover {
  6338.  
  6339. color: #ffffff;
  6340. background-color: #4a85cb; }
  6341.  
  6342. .gedit-document-panel row:hover:not(:selected) button:active {
  6343.  
  6344. color: #505050; }
  6345.  
  6346. filechooser actionbar button {
  6347.  
  6348.  
  6349. color: #505050;
  6350. border-color: rgba(198, 205, 229, 0.25);
  6351. background-color: rgba(255, 255, 255, 0.25); }
  6352.  
  6353. filechooser actionbar button:hover {
  6354.  
  6355. color: #505050;
  6356. border-color: rgba(198, 205, 229, 0.25);
  6357. background-color: rgba(255, 255, 255, 0.35); }
  6358.  
  6359. filechooser actionbar button:active, filechooser actionbar button:checked {
  6360.  
  6361. color: #ffffff;
  6362. border-color: rgba(198, 205, 229, 0.25);
  6363. background-color: #4a85cb; }
  6364.  
  6365. filechooser actionbar button:disabled {
  6366.  
  6367. color: #c0c1c6;
  6368. border-color: rgba(198, 205, 229, 0.25);
  6369. background-color: rgba(255, 255, 255, 0.1); }
  6370.  
  6371. filechooser actionbar entry {
  6372.  
  6373. color: #505050;
  6374. border-color: rgba(198, 205, 229, 0.25);
  6375. background-color: rgba(255, 255, 255, 0.25); }
  6376.  
  6377. filechooser actionbar entry image,
  6378. filechooser actionbar entry image:hover {
  6379.  
  6380. color: #505050; }
  6381.  
  6382.  
  6383. filechooser actionbar entry:focus {
  6384.  
  6385. color: #ffffff;
  6386. border-color: rgba(26, 28, 34, 0.35);
  6387. background-color: #4a85cb; }
  6388.  
  6389. filechooser actionbar entry:disabled {
  6390.  
  6391. color: rgba(80, 80, 80, 0.55);
  6392. background-color: rgba(255, 255, 255, 0.1); }
  6393.  
  6394. filechooser placessidebar.sidebar scrollbar,
  6395. .nautilus-window placessidebar.sidebar scrollbar {
  6396.  
  6397. border-color: rgba(222, 227, 240, 0.85); }
  6398.  
  6399. filechooser placessidebar.sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider,
  6400. .nautilus-window placessidebar.sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider {
  6401.  
  6402. background-color: #767676;
  6403. border: 1px solid rgba(0, 0, 0, 0.3); }
  6404.  
  6405. filechooser placessidebar.sidebar scrollbar slider,
  6406. .nautilus-window placessidebar.sidebar scrollbar slider {
  6407.  
  6408. background-color: rgba(118, 118, 118, 0.7); }
  6409.  
  6410. filechooser placessidebar.sidebar scrollbar slider:hover,
  6411. .nautilus-window placessidebar.sidebar scrollbar slider:hover {
  6412.  
  6413. background-color: #838383; }
  6414.  
  6415. filechooser placessidebar.sidebar scrollbar slider:hover:active,
  6416. .nautilus-window placessidebar.sidebar scrollbar slider:hover:active {
  6417.  
  6418. background-color: #4a85cb; }
  6419.  
  6420. filechooser placessidebar.sidebar scrollbar slider:disabled,
  6421. .nautilus-window placessidebar.sidebar scrollbar slider:disabled {
  6422.  
  6423. background-color: transparent; }
  6424.  
  6425. filechooser placessidebar.sidebar scrollbar trough,
  6426. .nautilus-window placessidebar.sidebar scrollbar trough {
  6427.  
  6428. background-color: rgba(222, 227, 240, 0.85); }
  6429. /*******************************************************************************/
  6430.  
  6431. /*********************************************************************/
  6432.  
  6433.  
  6434. @define-color theme_fg_color #252525;
  6435. @define-color theme_text_color #252525;
  6436. @define-color theme_bg_color rgba(239,244,247,1);
  6437. @define-color theme_base_color #ffffff;
  6438. @define-color theme_selected_bg_color #4a85cb;
  6439. @define-color theme_selected_fg_color #ffffff;
  6440. @define-color fg_color #252525;
  6441. @define-color text_color #252525;
  6442. @define-color bg_color #ebf0f4;
  6443. @define-color base_color #ffffff;
  6444. @define-color selected_bg_color #4a85cb;
  6445. @define-color selected_fg_color #ffffff;
  6446. @define-color insensitive_bg_color #f6f8fa;
  6447. @define-color insensitive_fg_color alpha(#252525, 0.5);
  6448. @define-color insensitive_base_color #ffffff;
  6449. @define-color theme_unfocused_fg_color #252525;
  6450. @define-color theme_unfocused_text_color #252525;
  6451. @define-color theme_unfocused_bg_color #ebf0f4;
  6452. @define-color theme_unfocused_base_color #ffffff;
  6453. @define-color borders rgba(105, 105, 105, 0.3);
  6454. @define-color unfocused_borders rgba(105, 105, 105, 0.3);
  6455. @define-color warning_color #F27835;
  6456. @define-color error_color #FC4138;
  6457. @define-color success_color #73d216;
  6458. @define-color placeholder_text_color #A8A8A8;
  6459. @define-color link_color #1954ad;
  6460. @define-color content_view_bg #ffffff;
  6461. @define-color wm_title alpha(#292121, 0.8);
  6462. @define-color wm_unfocused_title alpha(#292121, 0.5);
  6463. @define-color wm_bg #ebf0f4;
  6464. @define-color wm_bg_unfocused #eff0f2;
  6465. @define-color wm_highlight #eff0f2;
  6466. @define-color wm_shadow alpha(black, 0.35);
  6467. @define-color wm_button_close_bg #f46067;
  6468. @define-color wm_button_close_hover_bg #f68086;
  6469. @define-color wm_button_close_active_bg #f13039;
  6470. @define-color wm_icon_close_bg #F8F8F9;
  6471. @define-color wm_button_hover_bg #fdfdfd;
  6472. @define-color wm_button_active_bg #4a85cb;
  6473. @define-color wm_button_hover_border #D1D3DA;
  6474. @define-color wm_icon_bg #90949E;
  6475. @define-color wm_icon_unfocused_bg #B6B8C0;
  6476. @define-color wm_icon_hover_bg #7A7F8B;
  6477. @define-color wm_icon_active_bg #ffffff;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement