light_theme.css 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885
  1. /*******************************************************************************
  2. * *
  3. * Fonts *
  4. * *
  5. ******************************************************************************/
  6. @font-face {
  7. src: url('opensans_regular.ttf');
  8. }
  9. @font-face {
  10. src: url('opensans_semibold.ttf');
  11. }
  12. @font-face {
  13. src: url('opensans_bold.ttf');
  14. }
  15. /*******************************************************************************
  16. * *
  17. * Root Styling & Colors *
  18. * *
  19. ******************************************************************************/
  20. .root {
  21. PRIMARY_D2: #2D4D2E;
  22. PRIMARY_D1: #407F41;
  23. PRIMARY: #49B04A;
  24. PRIMARY_L1: #66CC68;
  25. PRIMARY_L2: #EBF5EB;
  26. SECONDARY: #008A7B;
  27. GRAY_0: #222222;
  28. GRAY_1: #3B3B3B;
  29. GRAY_2: #515151;
  30. GRAY_3: #626262;
  31. GRAY_4: #7E7E7E;
  32. GRAY_5: #9E9E9E;
  33. GRAY_6: #B1B1B1;
  34. GRAY_7: #CFCFCF;
  35. GRAY_8: #E1E1E1;
  36. GRAY_9: #F7F7F7;
  37. GREEN_3: PRIMARY_D1;
  38. GREEN_5: PRIMARY;
  39. RED_5: #E74C3C;
  40. ORANGE_5: #E67E22;
  41. YELLOW_5: #F1C40F;
  42. MAIN_BG: GRAY_9;
  43. MUTED_BG: GRAY_5;
  44. TEXT_FILL: GRAY_0;
  45. TEXT_FILL_HIGHLIGHTED: PRIMARY;
  46. TEXT_FILL_MUTED: GRAY_5;
  47. TITLE_BG: PRIMARY;
  48. TITLE_TEXT_FILL: white;
  49. CONTROL_BORDER_NORMAL: GRAY_7;
  50. CONTROL_BORDER_FOCUSED: GRAY_5;
  51. CONTROL_BORDER_DISABLED: GRAY_8;
  52. CONTROL_BG_NORMAL: white;
  53. CONTROL_BG_HOVER: GRAY_9;
  54. CONTROL_BG_ARMED: GRAY_8;
  55. CONTROL_BG_DISABLED: GRAY_9;
  56. CONTROL_BG_SELECTED: PRIMARY_L2;
  57. CONTROL_PRIMARY_BORDER_NORMAL: PRIMARY_D1;
  58. CONTROL_PRIMARY_BORDER_ARMED: PRIMARY_D2;
  59. CONTROL_PRIMARY_BORDER_FOCUSED: SECONDARY;
  60. CONTROL_PRIMARY_BG_NORMAL: PRIMARY;
  61. CONTROL_PRIMARY_BG_ARMED: PRIMARY_D1;
  62. SCROLL_BAR_THUMB_NORMAL: GRAY_7;
  63. SCROLL_BAR_THUMB_HOVER: GRAY_6;
  64. PROGRESS_INDICATOR_BEGIN: GRAY_2;
  65. PROGRESS_INDICATOR_END: GRAY_4;
  66. PROGRESS_BAR_BG: GRAY_8;
  67. -fx-background-color: MAIN_BG;
  68. -fx-text-fill: TEXT_FILL;
  69. -fx-font-family: 'Open Sans';
  70. }
  71. /*******************************************************************************
  72. * *
  73. * Labels *
  74. * *
  75. ******************************************************************************/
  76. .label {
  77. -fx-text-fill: TEXT_FILL;
  78. }
  79. .label-muted {
  80. -fx-text-fill: TEXT_FILL_MUTED;
  81. }
  82. .label-extra-large {
  83. -fx-font-family: 'Open Sans SemiBold';
  84. -fx-font-size: 1.5em;
  85. }
  86. .label-large {
  87. -fx-font-family: 'Open Sans SemiBold';
  88. -fx-font-size: 1.2em;
  89. }
  90. .label-small {
  91. -fx-font-size: 0.8em;
  92. }
  93. .label-extra-small {
  94. -fx-font-size: 0.64em;
  95. }
  96. .text-flow > * {
  97. -fx-fill: TEXT_FILL;
  98. }
  99. /*******************************************************************************
  100. * *
  101. * Glyph Icons *
  102. * *
  103. ******************************************************************************/
  104. .glyph-icon {
  105. -fx-fill: TEXT_FILL;
  106. }
  107. .glyph-icon-primary,
  108. .glyph-icon.glyph-icon-primary,
  109. .list-cell .glyph-icon.glyph-icon-primary,
  110. .list-cell:selected .glyph-icon.glyph-icon-primary {
  111. -fx-fill: PRIMARY;
  112. }
  113. .glyph-icon-muted,
  114. .glyph-icon.glyph-icon-muted,
  115. .list-cell .glyph-icon.glyph-icon-muted,
  116. .list-cell:selected .glyph-icon.glyph-icon-muted {
  117. -fx-fill: TEXT_FILL_MUTED;
  118. }
  119. .glyph-icon-white,
  120. .glyph-icon.glyph-icon-white,
  121. .list-cell .glyph-icon.glyph-icon-white,
  122. .list-cell:selected .glyph-icon.glyph-icon-white {
  123. -fx-fill: white;
  124. }
  125. .glyph-icon-red,
  126. .glyph-icon.glyph-icon-red,
  127. .list-cell .glyph-icon.glyph-icon-red,
  128. .list-cell:selected .glyph-icon.glyph-icon-red {
  129. -fx-fill: RED_5;
  130. }
  131. .glyph-icon-orange,
  132. .glyph-icon.glyph-icon-orange,
  133. .list-cell .glyph-icon.glyph-icon-orange,
  134. .list-cell:selected .glyph-icon.glyph-icon-orange {
  135. -fx-fill: ORANGE_5;
  136. }
  137. /*******************************************************************************
  138. * *
  139. * Main Window *
  140. * *
  141. ******************************************************************************/
  142. /* windows needs an explicit border: */
  143. .main-window.os-windows {
  144. -fx-border-color: TITLE_BG;
  145. -fx-border-width: 1px;
  146. }
  147. .main-window .title {
  148. -fx-background-color: TITLE_BG;
  149. }
  150. .main-window .title .button {
  151. -fx-pref-height: 30px;
  152. -fx-pref-width: 30px;
  153. -fx-background-color: none;
  154. -fx-padding: 0;
  155. }
  156. .main-window .title .button .glyph-icon {
  157. -fx-fill: white;
  158. }
  159. .main-window .title .button:armed .glyph-icon {
  160. -fx-fill: GRAY_8;
  161. }
  162. .main-window .update-indicator {
  163. -fx-background-color: white, RED_5;
  164. -fx-background-insets: 1px, 2px;
  165. -fx-background-radius: 6px, 5px;
  166. -fx-effect: dropshadow(three-pass-box, rgba(0, 0, 0, 0.8), 2, 0, 0, 0);
  167. }
  168. .main-window .drag-n-drop-indicator {
  169. -fx-border-color: SECONDARY;
  170. -fx-border-width: 3px;
  171. }
  172. .main-window .drag-n-drop-indicator .drag-n-drop-header {
  173. -fx-background-color: SECONDARY;
  174. -fx-padding: 3px;
  175. }
  176. /*******************************************************************************
  177. * *
  178. * TabPane *
  179. * *
  180. ******************************************************************************/
  181. .tab-pane {
  182. -fx-tab-min-height: 2em;
  183. }
  184. .tab-pane > .tab-header-area {
  185. -fx-padding: 0 12px;
  186. -fx-background-color: CONTROL_BORDER_NORMAL, CONTROL_BG_NORMAL;
  187. -fx-background-insets: 0, 0 0 3px 0;
  188. }
  189. .tab-pane .tab {
  190. -fx-background-color: CONTROL_BORDER_NORMAL, CONTROL_BG_NORMAL;
  191. -fx-background-insets: 0, 0 0 3px 0;
  192. -fx-padding: 6px 12px;
  193. }
  194. .tab-pane .tab:selected {
  195. -fx-background-color: PRIMARY, CONTROL_BG_SELECTED;
  196. }
  197. .tab-pane .tab .tab-label {
  198. -fx-text-fill: TEXT_FILL_MUTED;
  199. -fx-alignment: CENTER;
  200. }
  201. .tab-pane .tab .glyph-icon {
  202. -fx-fill: TEXT_FILL_MUTED;
  203. }
  204. .tab-pane .tab:selected .glyph-icon {
  205. -fx-fill: PRIMARY;
  206. }
  207. .tab-pane .tab:selected .tab-label {
  208. -fx-text-fill: TEXT_FILL_HIGHLIGHTED;
  209. }
  210. /*******************************************************************************
  211. * *
  212. * SplitPane *
  213. * *
  214. ******************************************************************************/
  215. .split-pane > .split-pane-divider {
  216. -fx-padding: 0px 1px;
  217. }
  218. .split-pane:horizontal > .split-pane-divider {
  219. -fx-background-color: MAIN_BG, CONTROL_BORDER_NORMAL;
  220. -fx-background-insets: 0, 0 1 0 0;
  221. }
  222. /*******************************************************************************
  223. * *
  224. * Vault List *
  225. * *
  226. ******************************************************************************/
  227. .list-view {
  228. -fx-background-color: CONTROL_BG_NORMAL;
  229. }
  230. .list-view:focused .list-cell:selected {
  231. -fx-background-color: PRIMARY, CONTROL_BG_SELECTED;
  232. -fx-background-insets: 0, 0 0 0 3px;
  233. }
  234. .list-cell:selected {
  235. -fx-background-color: CONTROL_BG_SELECTED;
  236. }
  237. .list-cell .glyph-icon {
  238. -fx-fill: TEXT_FILL_MUTED;
  239. }
  240. .list-cell .header-label {
  241. -fx-font-family: 'Open Sans SemiBold';
  242. -fx-font-size: 1.0em;
  243. }
  244. .list-cell .detail-label {
  245. -fx-text-fill: TEXT_FILL_MUTED;
  246. -fx-font-size: 0.8em;
  247. }
  248. .list-cell:selected .glyph-icon {
  249. -fx-fill: PRIMARY;
  250. }
  251. .list-cell:selected .header-label {
  252. -fx-text-fill: TEXT_FILL_HIGHLIGHTED;
  253. }
  254. .list-cell.drop-above {
  255. -fx-border-color: CONTROL_BG_ARMED transparent transparent transparent;
  256. -fx-border-width: 3px 0 0 0;
  257. }
  258. .list-cell.drop-below {
  259. -fx-border-color: transparent transparent CONTROL_BG_ARMED transparent;
  260. -fx-border-width: 0 0 3px 0;
  261. }
  262. .onboarding-overlay-arc {
  263. -fx-stroke: TEXT_FILL;
  264. -fx-fill: transparent;
  265. }
  266. .button.toolbar-button {
  267. -fx-min-height: 40px;
  268. -fx-background-color: transparent;
  269. -fx-background-insets: 0;
  270. -fx-background-radius: 0;
  271. -fx-border-color: CONTROL_BORDER_NORMAL transparent transparent transparent;
  272. -fx-border-width: 1px 0 0 0;
  273. -fx-padding: 0;
  274. }
  275. .button.toolbar-button:focused {
  276. -fx-background-color: CONTROL_BORDER_FOCUSED, MAIN_BG;
  277. -fx-background-insets: 0, 2px 1px 1px 1px;
  278. }
  279. .button.toolbar-button:armed {
  280. -fx-background-color: CONTROL_BG_ARMED;
  281. }
  282. /*******************************************************************************
  283. * *
  284. * ScrollBar *
  285. * *
  286. ******************************************************************************/
  287. .scroll-bar > .thumb {
  288. -fx-background-color: SCROLL_BAR_THUMB_NORMAL;
  289. -fx-background-insets: 1px;
  290. -fx-background-radius: 2px;
  291. }
  292. .scroll-bar > .thumb:hover {
  293. -fx-background-color: SCROLL_BAR_THUMB_HOVER;
  294. }
  295. .scroll-bar:horizontal > .increment-button,
  296. .scroll-bar:horizontal > .decrement-button {
  297. -fx-padding: 3 0 3 0;
  298. }
  299. .scroll-bar:vertical > .increment-button,
  300. .scroll-bar:vertical > .decrement-button {
  301. -fx-padding: 0 3 0 3;
  302. }
  303. /*******************************************************************************
  304. * *
  305. * Badge *
  306. * *
  307. ******************************************************************************/
  308. .badge {
  309. -fx-font-family: 'Open Sans Bold';
  310. -fx-font-size: 0.8em;
  311. -fx-background-radius: 4px;
  312. -fx-padding: 0.2em 0.4em 0.2em 0.4em;
  313. }
  314. .badge-pill {
  315. -fx-background-radius: 1em;
  316. }
  317. .badge-primary {
  318. -fx-text-fill: white;
  319. -fx-background-color: PRIMARY;
  320. }
  321. .badge-muted {
  322. -fx-text-fill: white;
  323. -fx-background-color: MUTED_BG;
  324. }
  325. /* Note: These values below are kinda random such that it looks ok. I'm pretty sure there is room for improvement. Additionally, fx-text-fill does not work*/
  326. .badge-debug {
  327. -fx-font-family: 'Open Sans Bold';
  328. -fx-font-size: 1.0em;
  329. -fx-background-radius: 8px;
  330. -fx-padding: 0.3em 0.55em 0.3em 0.55em;
  331. -fx-background-color: RED_5;
  332. -fx-background-radius: 2em;
  333. }
  334. /*******************************************************************************
  335. * *
  336. * Password Strength Indicator *
  337. * *
  338. ******************************************************************************/
  339. .password-strength-indicator .segment {
  340. -fx-background-color: CONTROL_BORDER_NORMAL;
  341. }
  342. .password-strength-indicator.strength-0 .segment.active {
  343. -fx-background-color: RED_5;
  344. }
  345. .password-strength-indicator.strength-1 .segment.active {
  346. -fx-background-color: ORANGE_5;
  347. }
  348. .password-strength-indicator.strength-2 .segment.active {
  349. -fx-background-color: YELLOW_5;
  350. }
  351. .password-strength-indicator.strength-3 .segment.active {
  352. -fx-background-color: GREEN_5;
  353. }
  354. .password-strength-indicator.strength-4 .segment.active {
  355. -fx-background-color: GREEN_3;
  356. }
  357. /*******************************************************************************
  358. * *
  359. * Tooltip *
  360. * *
  361. ******************************************************************************/
  362. .tooltip {
  363. -fx-font-family: 'Open Sans';
  364. -fx-text-fill: TEXT_FILL;
  365. -fx-font-size: 0.8em;
  366. -fx-background-color: CONTROL_BG_NORMAL;
  367. -fx-padding: 0.2em 0.4em 0.2em 0.4em;
  368. -fx-effect: dropshadow(three-pass-box, rgba(0, 0, 0, 0.5), 2, 0, 0, 0);
  369. }
  370. /*******************************************************************************
  371. * *
  372. * Text Fields *
  373. * *
  374. ******************************************************************************/
  375. .text-input {
  376. -fx-cursor: text;
  377. -fx-text-fill: TEXT_FILL;
  378. -fx-highlight-fill: PRIMARY;
  379. -fx-prompt-text-fill: TEXT_FILL_MUTED;
  380. -fx-background-color: CONTROL_BORDER_NORMAL, CONTROL_BG_NORMAL;
  381. -fx-background-insets: 0, 1px;
  382. -fx-background-radius: 4px;
  383. -fx-padding: 0.3em 0.5em 0.3em 0.5em;
  384. }
  385. .text-input:focused {
  386. -fx-background-color: CONTROL_BORDER_FOCUSED, CONTROL_BG_NORMAL;
  387. }
  388. .text-input:disabled {
  389. -fx-text-fill: TEXT_FILL_MUTED;
  390. -fx-background-color: CONTROL_BORDER_DISABLED, CONTROL_BG_DISABLED;
  391. }
  392. .nice-secure-password-field .secure-password-field {
  393. -fx-padding: 0.3em 48px 0.3em 0.5em;
  394. }
  395. .nice-secure-password-field .icons {
  396. -fx-width: 42px;
  397. -fx-padding: 4px 6px 4px 0;
  398. }
  399. /*******************************************************************************
  400. * *
  401. * Text Areas *
  402. * *
  403. ******************************************************************************/
  404. .text-area {
  405. -fx-cursor: default;
  406. -fx-background-color: CONTROL_BORDER_NORMAL, CONTROL_BG_NORMAL;
  407. -fx-background-insets: 0, 1px;
  408. -fx-background-radius: 4px;
  409. -fx-padding: 0;
  410. }
  411. .text-input:focused {
  412. -fx-background-color: CONTROL_BORDER_FOCUSED, CONTROL_BG_NORMAL;
  413. }
  414. .text-input:disabled {
  415. -fx-text-fill: TEXT_FILL_MUTED;
  416. -fx-background-color: CONTROL_BORDER_DISABLED, CONTROL_BG_DISABLED;
  417. }
  418. .text-area > .scroll-pane > .scroll-bar {
  419. -fx-padding: 2px;
  420. }
  421. .text-area .content {
  422. -fx-padding: 0.2em 0.5em 0.2em 0.5em;
  423. -fx-cursor: text;
  424. -fx-text-fill: TEXT_FILL;
  425. -fx-highlight-fill: PRIMARY;
  426. -fx-prompt-text-fill: TEXT_FILL_MUTED;
  427. -fx-background-color: null;
  428. }
  429. /*******************************************************************************
  430. * *
  431. * Buttons *
  432. * *
  433. ******************************************************************************/
  434. .button {
  435. -fx-text-fill: TEXT_FILL;
  436. -fx-alignment: CENTER;
  437. -fx-background-color: CONTROL_BORDER_NORMAL, CONTROL_BG_NORMAL;
  438. -fx-background-insets: 0, 1px;
  439. -fx-background-radius: 4px;
  440. -fx-padding: 0.3em 1em 0.3em 1em;
  441. -fx-graphic-text-gap: 6px;
  442. }
  443. .button:focused {
  444. -fx-background-color: CONTROL_BORDER_FOCUSED, CONTROL_BG_NORMAL;
  445. }
  446. .button:armed {
  447. -fx-background-color: CONTROL_BORDER_NORMAL, CONTROL_BG_ARMED;
  448. }
  449. .button:default {
  450. -fx-text-fill: white;
  451. -fx-background-color: CONTROL_PRIMARY_BORDER_NORMAL, CONTROL_PRIMARY_BG_NORMAL;
  452. }
  453. .button:default:focused {
  454. -fx-background-color: CONTROL_PRIMARY_BORDER_FOCUSED, CONTROL_PRIMARY_BG_NORMAL;
  455. }
  456. .button:default:armed {
  457. -fx-background-color: CONTROL_PRIMARY_BORDER_ARMED, CONTROL_PRIMARY_BG_ARMED;
  458. }
  459. .button:disabled,
  460. .button:default:disabled {
  461. -fx-text-fill: TEXT_FILL_MUTED;
  462. -fx-background-color: CONTROL_BORDER_DISABLED, CONTROL_BG_DISABLED;
  463. }
  464. .button:disabled .glyph-icon {
  465. -fx-fill: TEXT_FILL_MUTED;
  466. }
  467. .button:default .glyph-icon {
  468. -fx-fill: white;
  469. }
  470. .button:default:disabled .glyph-icon {
  471. -fx-fill: TEXT_FILL_MUTED;
  472. }
  473. .button:default .label {
  474. -fx-text-fill: white;
  475. }
  476. .button-large {
  477. -fx-font-size: 1.25em;
  478. -fx-padding: 0.6em 1.5em 0.6em 1.5em;
  479. -fx-graphic-text-gap: 9px;
  480. }
  481. /*******************************************************************************
  482. * *
  483. * Hyperlinks *
  484. * *
  485. ******************************************************************************/
  486. .hyperlink {
  487. -fx-text-fill: TEXT_FILL;
  488. -fx-graphic-text-gap: 6px;
  489. }
  490. .hyperlink.hyperlink-underline {
  491. -fx-underline: true;
  492. }
  493. .hyperlink.hyperlink-muted {
  494. -fx-text-fill: TEXT_FILL_MUTED;
  495. }
  496. .hyperlink-hover-icon {
  497. -fx-content-display: text-only;
  498. }
  499. .hyperlink-hover-icon:hover {
  500. -fx-content-display: right;
  501. }
  502. /*******************************************************************************
  503. * *
  504. * CheckBox *
  505. * *
  506. ******************************************************************************/
  507. .check-box {
  508. -fx-text-fill: TEXT_FILL;
  509. -fx-label-padding: 0 0 0 6px;
  510. -fx-padding: 4px 0 4px 0;
  511. }
  512. .check-box:disabled {
  513. -fx-text-fill: TEXT_FILL_MUTED;
  514. }
  515. .check-box > .box {
  516. -fx-background-color: CONTROL_BORDER_NORMAL, CONTROL_BG_NORMAL;
  517. -fx-background-insets: 0, 1px;
  518. -fx-background-radius: 4px;
  519. -fx-padding: 0.3em;
  520. }
  521. .check-box:focused > .box {
  522. -fx-background-color: CONTROL_BORDER_FOCUSED, CONTROL_BG_NORMAL;
  523. }
  524. .check-box:disabled > .box {
  525. -fx-background-color: CONTROL_BORDER_DISABLED, CONTROL_BG_DISABLED;
  526. }
  527. .check-box > .box > .mark {
  528. -fx-background-color: transparent;
  529. -fx-padding: 0.4em;
  530. -fx-shape: "M-1,4, L-1,5.5 L3.5,8.5 L9,0 L9,-1 L7,-1 L3,6 L1,4 Z";
  531. }
  532. .check-box:selected > .box > .mark {
  533. -fx-background-color: TEXT_FILL;
  534. }
  535. .check-box:selected:disabled > .box > .mark {
  536. -fx-background-color: TEXT_FILL_MUTED;
  537. }
  538. /*******************************************************************************
  539. * *
  540. * RadioButton *
  541. * *
  542. ******************************************************************************/
  543. .radio-button {
  544. -fx-text-fill: TEXT_FILL;
  545. -fx-label-padding: 0 0 0 6px;
  546. -fx-padding: 4px 0 4px 0;
  547. }
  548. .radio-button > .radio {
  549. -fx-border-color: CONTROL_BORDER_NORMAL;
  550. -fx-border-radius: 1em; /* large value to make sure this remains circular */
  551. -fx-background-color: CONTROL_BG_NORMAL;
  552. -fx-background-radius: 1em;
  553. -fx-padding: 0.3em; /* padding from outside edge to the inner black dot */
  554. }
  555. .radio-button:focused > .radio {
  556. -fx-border-color: CONTROL_BORDER_FOCUSED;
  557. }
  558. .text-input:disabled > .radio {
  559. -fx-border-color: CONTROL_BORDER_DISABLED;
  560. -fx-background-color: CONTROL_BG_DISABLED;
  561. }
  562. .radio-button > .radio > .dot {
  563. -fx-background-color: transparent;
  564. -fx-background-radius: 1em; /* large value to make sure this remains circular */
  565. -fx-padding: 0.2em; /* radius of the inner black dot when selected */
  566. }
  567. .radio-button:selected > .radio > .dot {
  568. -fx-background-color: TEXT_FILL;
  569. }
  570. /*******************************************************************************
  571. * *
  572. * ChoiceBox *
  573. * *
  574. ******************************************************************************/
  575. .choice-box {
  576. -fx-background-color: CONTROL_BORDER_NORMAL, CONTROL_BG_NORMAL;
  577. -fx-background-insets: 0, 1px;
  578. -fx-background-radius: 4px;
  579. -fx-padding: 0.3em 0.5em 0.3em 0.5em;
  580. }
  581. .choice-box:focused {
  582. -fx-background-color: CONTROL_BORDER_FOCUSED, CONTROL_BG_NORMAL;
  583. }
  584. .choice-box:disabled {
  585. -fx-background-color: CONTROL_BORDER_DISABLED, CONTROL_BG_DISABLED;
  586. }
  587. .choice-box > .label {
  588. -fx-text-fill: TEXT_FILL;
  589. }
  590. .choice-box:disabled > .label {
  591. -fx-text-fill: TEXT_FILL_MUTED;
  592. }
  593. .choice-box > .open-button {
  594. -fx-padding: 0 0 0 0.3em;
  595. }
  596. .choice-box > .open-button > .arrow {
  597. -fx-background-color: transparent, TEXT_FILL;
  598. -fx-background-insets: 0 0 -1 0, 0;
  599. -fx-padding: 0.15em 0.3em 0.15em 0.3em;
  600. -fx-shape: "M 0 0 h 7 l -3.5 4 z";
  601. }
  602. .choice-box:disabled > .open-button > .arrow {
  603. -fx-background-color: transparent, TEXT_FILL_MUTED;
  604. }
  605. .choice-box .context-menu {
  606. -fx-translate-x: -1.4em;
  607. }
  608. /*******************************************************************************
  609. * *
  610. * ContextMenu *
  611. * *
  612. ******************************************************************************/
  613. .context-menu {
  614. -fx-background-color: CONTROL_BORDER_NORMAL, CONTROL_BG_NORMAL;
  615. -fx-background-insets: 0, 1px;
  616. -fx-background-radius: 4px;
  617. -fx-padding: 0.2em 0 0.2em 0;
  618. -fx-effect: dropshadow(three-pass-box, rgba(0, 0, 0, 0.2), 8, 0, 0, 0);
  619. }
  620. /*******************************************************************************
  621. * *
  622. * MenuItem *
  623. * *
  624. ******************************************************************************/
  625. .menu-item {
  626. -fx-padding: 0.2em 0.4em 0.2em 0.4em;
  627. }
  628. .menu-item:focused {
  629. -fx-background-color: transparent, CONTROL_BG_ARMED;
  630. -fx-background-insets: 0, 0 1px 0 1px;
  631. }
  632. .menu-item:disabled {
  633. -fx-background-color: transparent;
  634. }
  635. .menu-item > .left-container {
  636. -fx-padding: 0.5em 0.25em 0.5em 0.5em;
  637. }
  638. .menu-item > .label {
  639. -fx-padding: 1px 0.5em 1px 0.5em;
  640. }
  641. .menu-item:disabled > .label {
  642. -fx-text-fill: TEXT_FILL_MUTED;
  643. }
  644. .radio-menu-item:checked > .left-container > .radio {
  645. -fx-background-color: TEXT_FILL;
  646. -fx-shape: "M-1,4, L-1,5.5 L3.5,8.5 L9,0 L9,-1 L7,-1 L3,6 L1,4 Z";
  647. -fx-scale-shape: false;
  648. }
  649. /*******************************************************************************
  650. * *
  651. * ProgressBar *
  652. * *
  653. ******************************************************************************/
  654. .progress-bar {
  655. -fx-indeterminate-bar-length: 100;
  656. -fx-indeterminate-bar-escape: true;
  657. -fx-indeterminate-bar-flip: true;
  658. -fx-indeterminate-bar-animation-time: 2;
  659. }
  660. .progress-bar > .bar {
  661. -fx-background-color: CONTROL_PRIMARY_BG_NORMAL;
  662. -fx-background-radius: 4px;
  663. -fx-padding: 1em 0.5em;
  664. }
  665. .progress-bar:indeterminate > .bar {
  666. -fx-background-color: linear-gradient(to left, transparent, CONTROL_PRIMARY_BG_NORMAL);
  667. }
  668. .progress-bar > .track {
  669. -fx-background-color: PROGRESS_BAR_BG;
  670. -fx-background-radius: 4px;
  671. }
  672. /*******************************************************************************
  673. * *
  674. * I/O Statistics *
  675. * *
  676. ******************************************************************************/
  677. .cache-arc-background {
  678. -fx-fill: transparent;
  679. -fx-stroke: MUTED_BG;
  680. -fx-stroke-type: centered;
  681. -fx-stroke-width: 12;
  682. -fx-stroke-line-cap: butt;
  683. }
  684. .cache-arc-foreground {
  685. -fx-fill: transparent;
  686. -fx-stroke: PRIMARY;
  687. -fx-stroke-type: centered;
  688. -fx-stroke-width: 12;
  689. -fx-stroke-line-cap: butt;
  690. }
  691. .chart.io-stats {
  692. -fx-padding: 10px;
  693. -fx-horizontal-grid-lines-visible: false;
  694. -fx-horizontal-zero-line-visible: false;
  695. -fx-vertical-grid-lines-visible: false;
  696. -fx-vertical-zero-line-visible: false;
  697. }
  698. .axis.io-stats {
  699. -fx-tick-mark-visible: false;
  700. -fx-minor-tick-visible: false;
  701. -fx-tick-labels-visible: false;
  702. }
  703. .chart-plot-background {
  704. -fx-background-color: transparent;
  705. }
  706. .chart-vertical-zero-line,
  707. .chart-horizontal-zero-line,
  708. .chart-alternative-row-fill {
  709. -fx-stroke: transparent;
  710. -fx-stroke-width: 0;
  711. }
  712. .default-color0.chart-series-area-line {
  713. -fx-stroke: PRIMARY;
  714. }
  715. .default-color0.chart-series-area-fill {
  716. -fx-fill: linear-gradient(to bottom, PRIMARY, transparent);
  717. -fx-stroke: transparent;
  718. }