You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

arc-green.less 28KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480
  1. @import "_base";
  2. .hljs {
  3. display: block;
  4. overflow-x: auto;
  5. padding: 0.5em;
  6. color: #bababa;
  7. }
  8. .hljs-strong,
  9. .hljs-emphasis {
  10. color: #a8a8a2;
  11. }
  12. .hljs-bullet,
  13. .hljs-quote,
  14. .hljs-link,
  15. .hljs-number,
  16. .hljs-regexp,
  17. .hljs-literal {
  18. color: #6896ba;
  19. }
  20. .hljs-code,
  21. .hljs-selector-class {
  22. color: #a6e22e;
  23. }
  24. .hljs-emphasis {
  25. font-style: italic;
  26. }
  27. .hljs-keyword,
  28. .hljs-selector-tag,
  29. .hljs-section,
  30. .hljs-attribute,
  31. .hljs-name,
  32. .hljs-variable {
  33. color: #cb7832;
  34. }
  35. .hljs-params {
  36. color: #b9b9b9;
  37. }
  38. .hljs-string {
  39. color: #6a8759;
  40. }
  41. .hljs-subst,
  42. .hljs-type,
  43. .hljs-built_in,
  44. .hljs-builtin-name,
  45. .hljs-symbol,
  46. .hljs-selector-id,
  47. .hljs-selector-attr,
  48. .hljs-selector-pseudo,
  49. .hljs-template-tag,
  50. .hljs-template-variable,
  51. .hljs-addition {
  52. color: #e0c46c;
  53. }
  54. .hljs-comment,
  55. .hljs-deletion,
  56. .hljs-meta {
  57. color: #7f7f7f;
  58. }
  59. .repository .ui.segment.sub-menu .list .item a {
  60. color: #dbdbdb;
  61. }
  62. .ui.horizontal.segments > .segment {
  63. background-color: #383c4a;
  64. }
  65. body {
  66. background: #383c4a;
  67. color: #9e9e9e;
  68. }
  69. /* firefox scroll bars */
  70. * {
  71. scrollbar-width: thin;
  72. scrollbar-color: #87ab63 rgba(255, 255, 255, 0.1);
  73. }
  74. /* webkit scrollbars */
  75. ::-webkit-scrollbar {
  76. -webkit-appearance: none !important;
  77. width: 10px !important;
  78. height: 10px !important;
  79. }
  80. ::-webkit-scrollbar-track {
  81. border-radius: 0 !important;
  82. background: rgba(255, 255, 255, 0.1) !important;
  83. }
  84. ::-webkit-scrollbar-thumb {
  85. cursor: pointer !important;
  86. border-radius: 5px !important;
  87. -webkit-transition: color 0.2s ease !important;
  88. transition: color 0.2s ease !important;
  89. background: #87ab63 !important;
  90. }
  91. ::-webkit-scrollbar-thumb:window-inactive {
  92. background: #87ab63 !important;
  93. }
  94. ::-webkit-scrollbar-thumb:hover {
  95. background: #87ab63 !important;
  96. }
  97. a {
  98. color: #87ab63;
  99. }
  100. a:hover {
  101. color: #a0cc75;
  102. }
  103. .ui.card > .extra a:not(.ui):hover,
  104. .ui.cards > .card > .extra a:not(.ui):hover {
  105. color: #a0cc75;
  106. }
  107. .ui.breadcrumb a:hover {
  108. color: #a0cc75;
  109. }
  110. .ui.breadcrumb a {
  111. color: #87ab63;
  112. }
  113. .repository .metas .ui.list a .text {
  114. color: #87ab63;
  115. }
  116. .repository .metas .ui.list a .text:hover {
  117. color: #a0cc75;
  118. }
  119. .repository .label.list .item a {
  120. color: #87ab63;
  121. }
  122. .repository .label.list .item a:hover {
  123. color: #a0cc75;
  124. }
  125. .repository .milestone.list > .item > a {
  126. color: #87ab63;
  127. }
  128. .repository .milestone.list > .item > a:hover {
  129. color: #a0cc75;
  130. }
  131. .repository.release #release-list {
  132. border-top: 1px solid #4c505c;
  133. }
  134. .repository .milestone.list > .item .operate > a {
  135. color: #87ab63;
  136. }
  137. .repository .milestone.list > .item .operate > a:hover {
  138. color: #a0cc75;
  139. }
  140. .ui.green.progress .bar {
  141. background-color: #668844;
  142. }
  143. .ui.progress.success .bar {
  144. background-color: #7b9e57 !important;
  145. }
  146. .following.bar.light {
  147. background: #2e323e;
  148. border-bottom: 1px solid #313131;
  149. }
  150. .ui.secondary.menu .active.item {
  151. color: #dbdbdb;
  152. }
  153. .ui.secondary.menu .item {
  154. color: #9e9e9e;
  155. }
  156. .following.bar .top.menu a.item:hover {
  157. color: #ffffff;
  158. }
  159. .repository.view.issue .comment-list .comment .content > .bottom.segment a {
  160. border: solid 1px #353945;
  161. background-color: #353945;
  162. }
  163. .ui.attached.header {
  164. background: #404552;
  165. border: 1px solid #404552;
  166. color: #dbdbdb;
  167. }
  168. .ui.attached.table {
  169. border: 1px solid #304251;
  170. background: #304251;
  171. }
  172. .feeds .list ul li:not(:last-child) {
  173. border-bottom: 1px solid #333640;
  174. }
  175. .feeds .list ul li.private {
  176. background: #353945;
  177. border: 1px solid #333640;
  178. }
  179. .ui.secondary.menu .dropdown.item:hover,
  180. .ui.secondary.menu .link.item:hover,
  181. .ui.secondary.menu .active.item:hover,
  182. .ui.secondary.menu a.item:hover {
  183. color: #ffffff;
  184. }
  185. .ui.menu .ui.dropdown .menu > .item {
  186. background: #2c303a !important;
  187. color: #9e9e9e !important;
  188. }
  189. .ui.secondary.menu .dropdown.item > .menu,
  190. .ui.text.menu .dropdown.item > .menu {
  191. border: 1px solid #434444;
  192. }
  193. footer {
  194. background: #2e323e;
  195. border-top: 1px solid #313131;
  196. }
  197. .ui.menu .dropdown.item .menu {
  198. background: #2c303a;
  199. }
  200. .ui.menu .ui.dropdown .menu > .item:hover,
  201. .ui.menu .ui.dropdown .menu > .selected.item {
  202. color: #ffffff !important;
  203. }
  204. .ui.dropdown .menu > .header {
  205. color: #dbdbdb;
  206. }
  207. .ui.red.label,
  208. .ui.red.labels .label {
  209. background-color: #7d3434 !important;
  210. border-color: #8a2121 !important;
  211. }
  212. .ui.menu {
  213. background: #404552;
  214. border: 1px solid #353945;
  215. }
  216. .ui.menu .active.item:hover,
  217. .ui.vertical.menu .active.item:hover {
  218. color: #dbdbdb;
  219. background: #4b5162;
  220. }
  221. .ui.link.menu .item:hover,
  222. .ui.menu .dropdown.item:hover,
  223. .ui.menu .link.item:hover,
  224. .ui.menu a.item:hover {
  225. color: #dbdbdb;
  226. background: #454b5a;
  227. }
  228. .ui.menu .active.item {
  229. background: #4b5162;
  230. color: #dbdbdb;
  231. }
  232. .ui.input input {
  233. background: #404552;
  234. border: 2px solid #353945;
  235. color: #dbdbdb;
  236. }
  237. .ui.input input:focus,
  238. .ui.input.focus input {
  239. background: #404552;
  240. border: 2px solid #353945;
  241. color: #dbdbdb;
  242. }
  243. .ui.accordion .title:not(.ui) {
  244. color: #dbdbdb;
  245. }
  246. .ui.label,
  247. .ui.label.basic {
  248. color: #dbdbdb;
  249. background-color: #404552;
  250. }
  251. .issue.list > .item .title {
  252. color: #87ab63;
  253. }
  254. .issue.list > .item .title:hover {
  255. color: #a0cc75;
  256. }
  257. .issue.list > .item {
  258. border-bottom: 1px dashed #475767;
  259. }
  260. .ui.green.label,
  261. .ui.green.labels .label,
  262. .ui.basic.green.label {
  263. background-color: #2d693b !important;
  264. border-color: #2d693b !important;
  265. }
  266. .ui.basic.green.labels a.label:hover,
  267. a.ui.basic.green.label:hover {
  268. background-color: #16ab39 !important;
  269. border-color: #16ab39 !important;
  270. color: #ffffff !important;
  271. }
  272. .issue.list > .item .comment {
  273. color: #129c92;
  274. }
  275. .ui.basic.button,
  276. .ui.basic.buttons .button {
  277. color: #797979 !important;
  278. }
  279. .ui.basic.red.active.button,
  280. .ui.basic.red.buttons .active.button {
  281. box-shadow: 0 0 0 1px #c75252 inset !important;
  282. color: #c75252 !important;
  283. }
  284. .ui.basic.button:focus,
  285. .ui.basic.button:hover,
  286. .ui.basic.buttons .button:focus,
  287. .ui.basic.buttons .button:hover {
  288. background: transparent !important;
  289. color: #dbdbdb !important;
  290. }
  291. .ui.menu .item {
  292. background: #404552;
  293. color: #9e9e9e;
  294. }
  295. .ui.menu .item.disabled,
  296. .ui.menu .item.disabled:hover {
  297. color: #626773;
  298. }
  299. .ui.pagination.menu .active.item {
  300. color: #dbdbdb;
  301. background-color: #87ab63;
  302. }
  303. .repository .header-wrapper {
  304. background-color: #2a2e3a;
  305. }
  306. .ui.tabular.menu .active.item {
  307. background: #383c4a;
  308. color: #dbdbdb;
  309. border-left: 1px solid transparent;
  310. border-right: 1px solid transparent;
  311. border-top: 0;
  312. }
  313. .ui.tabular.menu .item {
  314. color: #9e9e9e;
  315. }
  316. .ui.tabular.menu .item:hover {
  317. color: #dbdbdb;
  318. }
  319. .ui.header,
  320. .ui.breadcrumb .divider {
  321. color: #9e9e9e;
  322. }
  323. .ui.blue.label,
  324. .ui.blue.labels .label,
  325. .repository .segment.reactions .ui.label.basic.blue {
  326. background-color: #26577b !important;
  327. border-color: #26577b !important;
  328. }
  329. .ui.menu .item > .label {
  330. background: #565454;
  331. }
  332. .ui.blue.button,
  333. .ui.blue.buttons .button {
  334. background-color: #87ab63;
  335. }
  336. .ui.blue.button:hover,
  337. .ui.blue.buttons .button:hover {
  338. background-color: #a0cc75;
  339. }
  340. .ui.form input:not([type]),
  341. .ui.form input[type="text"],
  342. .ui.form input[type="email"],
  343. .ui.form input[type="search"],
  344. .ui.form input[type="password"],
  345. .ui.form input[type="date"],
  346. .ui.form input[type="datetime-local"],
  347. .ui.form input[type="tel"],
  348. .ui.form input[type="time"],
  349. .ui.form input[type="url"],
  350. .ui.form input[type="number"] {
  351. color: #9e9e9e;
  352. background: #404552;
  353. border: 2px solid #353945;
  354. }
  355. .ui.form input:not([type]):focus,
  356. .ui.form input[type="text"]:focus,
  357. .ui.form input[type="email"]:focus,
  358. .ui.form input[type="search"]:focus,
  359. .ui.form input[type="password"]:focus,
  360. .ui.form input[type="date"]:focus,
  361. .ui.form input[type="datetime-local"]:focus,
  362. .ui.form input[type="tel"]:focus,
  363. .ui.form input[type="time"]:focus,
  364. .ui.form input[type="url"]:focus,
  365. .ui.form input[type="number"]:focus {
  366. background: #404552;
  367. border: 2px solid #4b505f;
  368. color: #dbdbdb;
  369. }
  370. .ui.action.input:not([class*="left action"]) input:focus {
  371. border-right-color: #4b505f !important;
  372. }
  373. .ui.green.button,
  374. .ui.green.buttons .button {
  375. background-color: #87ab63;
  376. }
  377. .ui.green.button:hover,
  378. .ui.green.buttons .button:hover {
  379. background-color: #a0cc75;
  380. }
  381. .ui.button {
  382. background: #383c4a;
  383. border: 1px solid #4c505c;
  384. color: #dbdbdb;
  385. }
  386. .ui.labeled.button:not([class*="left labeled"]) > .label,
  387. .ui[class*="left labeled"].button > .button {
  388. background: #404552;
  389. border: 1px solid #4c505c;
  390. color: #87ab63;
  391. }
  392. .ui.button:hover {
  393. background-color: #404552;
  394. color: #dbdbdb;
  395. }
  396. .ui.table thead th,
  397. .ui.table > thead > tr > th {
  398. background: #404552 !important;
  399. color: #dbdbdb !important;
  400. }
  401. .repository.file.list #repo-files-table tr {
  402. background: #2a2e3a;
  403. }
  404. .repository.file.list #repo-files-table tr:hover {
  405. background-color: #393d4a !important;
  406. }
  407. .ui.table {
  408. color: #a5a5a5 !important;
  409. border-color: #4c505c;
  410. background: #353945;
  411. }
  412. .ui.table tbody tr {
  413. border-color: #333640;
  414. background: #2a2e3a;
  415. }
  416. .ui .text.grey {
  417. color: #808084 !important;
  418. }
  419. .ui.attached.table.segment {
  420. background: #353945;
  421. color: #dbdbdb !important;
  422. }
  423. .markdown:not(code) h2 {
  424. border-bottom: 1px solid #304251;
  425. }
  426. .repository.wiki.new .ui.container form .ui.tabular.menu {
  427. border-bottom: 1px solid rgba(187, 187, 187, 0.6);
  428. .active.item {
  429. border-top: 1px solid rgba(187, 187, 187, 0.6);
  430. border-left: 1px solid rgba(187, 187, 187, 0.6);
  431. border-right: 1px solid rgba(187, 187, 187, 0.6);
  432. &:hover {
  433. background: #4b5162;
  434. }
  435. }
  436. }
  437. .hljs,
  438. .hljs-keyword,
  439. .hljs-selector-tag,
  440. .hljs-subst {
  441. color: #9daccc;
  442. }
  443. .markdown:not(code) .highlight pre,
  444. .markdown:not(code) pre {
  445. background-color: #2a2e3a;
  446. border: 1px solid #404552;
  447. }
  448. .markdown:not(code) table tr:nth-child(2n) {
  449. background-color: #2a2e39;
  450. }
  451. .markdown:not(code) table tr:nth-child(2n-1) {
  452. background-color: #383b44;
  453. }
  454. .markdown:not(code) table thead tr:nth-child(2n-1) {
  455. background-color: #464c5d !important;
  456. }
  457. .markdown:not(code) table td,
  458. .markdown:not(code) table th {
  459. border-color: #4c505c !important;
  460. }
  461. .repository.file.editor.edit,
  462. .repository.wiki.new .CodeMirror {
  463. border-right: 1px solid rgba(187, 187, 187, 0.6);
  464. border-left: 1px solid rgba(187, 187, 187, 0.6);
  465. border-bottom: 1px solid rgba(187, 187, 187, 0.6);
  466. .editor-preview,
  467. .editor-preview-side,
  468. & + .editor-preview-side {
  469. background: #353945;
  470. .markdown:not(code).ui.segment {
  471. border-width: 0;
  472. }
  473. }
  474. }
  475. .ui.dropdown .menu {
  476. background: #2c303a;
  477. }
  478. .ui.dropdown .menu > .message:not(.ui) {
  479. color: #636363;
  480. }
  481. .ui.input {
  482. color: #dbdbdb;
  483. }
  484. .overflow.menu .items .item {
  485. color: #9d9d9d;
  486. }
  487. .overflow.menu .items .item:hover {
  488. color: #dbdbdb;
  489. }
  490. .ui.segment {
  491. background: #353945;
  492. color: #9e9e9e !important;
  493. border: 1px solid #404552;
  494. }
  495. .ui.list > .item > .content {
  496. color: #9e9e9e !important;
  497. }
  498. .ui.active.button:active,
  499. .ui.button:active,
  500. .ui.button:focus {
  501. background-color: #2e3e4e;
  502. color: #dbdbdb;
  503. }
  504. .ui.dropdown .menu .selected.item,
  505. .ui.dropdown.selected {
  506. color: #dbdbdb;
  507. }
  508. .ui.dropdown .menu > .item:hover {
  509. color: #dbdbdb;
  510. }
  511. .ui.dropdown .menu > .item {
  512. color: #9e9e9e;
  513. }
  514. .ui.attached.segment {
  515. border: 1px solid #404552;
  516. }
  517. .repository.view.issue .comment-list .comment .content > .bottom.segment {
  518. background: #353945;
  519. }
  520. .repository.view.issue .comment-list .comment .content .header {
  521. color: #dbdbdb;
  522. background-color: #404552;
  523. border-bottom: 1px solid #353944;
  524. }
  525. .repository.view.issue .comment-list .comment .content .merge-section {
  526. background-color: #404552;
  527. border-top: 1px solid #353944;
  528. }
  529. .repository.view.issue .comment-list .event > .octicon.issue-symbol {
  530. background: #3b4954;
  531. }
  532. .repository.view.issue .comment-list .event > .octicon:not(.issue-symbol) {
  533. text-shadow: -2px 0 #383c4a, 0 2px #383c4a, 2px 0 #383c4a, 0 -2px #383c4a;
  534. }
  535. .ui .text.grey a {
  536. color: #dbdbdb !important;
  537. }
  538. .ui.comments .comment .actions a {
  539. color: #dbdbdb;
  540. }
  541. .repository.view.issue .comment-list .comment .content .header:after {
  542. border-right-color: #404552;
  543. }
  544. .repository.new.issue .comment.form .content:after {
  545. border-right-color: #353945;
  546. }
  547. .repository.view.issue .comment-list .comment .content .header:before {
  548. border-right-color: #404552;
  549. }
  550. .repository.new.issue .comment.form .content:before {
  551. border-right-color: #353945;
  552. }
  553. .repository.view.issue .comment-list:not(.prevent-before-timeline):before,
  554. .repository.view.issue .comment-list .timeline-line:before {
  555. background-color: #3b4954;
  556. }
  557. .repository .comment.form .content .form:after {
  558. border-right-color: #313c47;
  559. }
  560. .repository .comment.form .content .form:before {
  561. border-right-color: #313c47;
  562. }
  563. .ui .text.grey a:hover {
  564. color: #dbdbdb !important;
  565. }
  566. .ui.basic.green.active.button,
  567. .ui.basic.green.buttons .active.button {
  568. color: #13ae38 !important;
  569. }
  570. .ui.form textarea,
  571. .ui.form textarea:focus {
  572. color: #dbdbdb;
  573. background: #404552;
  574. border: 2px solid #353945;
  575. }
  576. .ui.form textarea:focus {
  577. border: 1px solid #456580;
  578. }
  579. .ui .info.segment.top {
  580. background-color: #404552 !important;
  581. }
  582. .repository .diff-file-box .code-diff-unified tbody tr.del-code td {
  583. background-color: #3c2626 !important;
  584. border-color: #634343 !important;
  585. }
  586. .repository .diff-file-box .code-diff-unified tbody tr.add-code td {
  587. background-color: #283e2d !important;
  588. border-color: #314a37 !important;
  589. }
  590. .repository .diff-file-box .code-diff tbody tr .added-code {
  591. background-color: #3a523a;
  592. }
  593. .hljs-title,
  594. .hljs-section,
  595. .hljs-selector-id {
  596. color: #986c88;
  597. }
  598. .hljs-string,
  599. .hljs-doctag {
  600. color: #8ab398;
  601. }
  602. .repository .diff-file-box .code-diff tbody tr .removed-code {
  603. background-color: #5f3737;
  604. }
  605. .tag-code,
  606. .tag-code td {
  607. background: #242637 !important;
  608. border-color: transparent !important;
  609. }
  610. .ui.vertical.menu .active.item {
  611. background: #4b5162;
  612. }
  613. .ui.vertical.menu .item {
  614. background: #353945;
  615. }
  616. .ui.vertical.menu .header.item {
  617. background: #404552;
  618. }
  619. .ui.vertical.menu {
  620. background: #353945;
  621. border: 1px solid #333640;
  622. }
  623. .ui.repository.list .item:not(:first-child) {
  624. border-top: 1px solid #4c505c;
  625. }
  626. .ui .text.blue {
  627. color: #87ab63 !important;
  628. }
  629. .ui.selection.active.dropdown,
  630. .ui.selection.active.dropdown .menu {
  631. border-color: #4e5361;
  632. box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
  633. }
  634. .ui.selection.active.dropdown:hover,
  635. .ui.selection.active.dropdown:hover .menu {
  636. border-color: #4e5361;
  637. box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
  638. }
  639. .ui.selection.dropdown {
  640. background: #404552;
  641. border: 1px solid #404552;
  642. color: #9e9e9e;
  643. }
  644. .ui.menu .ui.dropdown .menu > .active.item {
  645. color: #dbdbdb !important;
  646. }
  647. .ui.tabular.menu {
  648. border-bottom: 1px solid #313c47;
  649. }
  650. .ui.card,
  651. .ui.cards > .card {
  652. background: #353945;
  653. box-shadow: 0 1px 3px 0 #4c505c, 0 0 0 1px #4c505c;
  654. }
  655. .ui.card > .content > .header,
  656. .ui.cards > .card > .content > .header {
  657. color: #dbdbdb;
  658. }
  659. .ui.card > .extra a:not(.ui),
  660. .ui.cards > .card > .extra a:not(.ui) {
  661. color: #87ab63;
  662. }
  663. .ui .text.black {
  664. color: #9e9e9e;
  665. }
  666. .ui .text.black:hover {
  667. color: #dbdbdb;
  668. }
  669. .ui.secondary.segment {
  670. background: #353945;
  671. }
  672. .ui.secondary.pointing.menu .active.item {
  673. color: #dbdbdb;
  674. border: 0;
  675. background: #383c4a;
  676. }
  677. .ui.user.list .item:not(:first-child) {
  678. border-top: 1px solid #4c505c;
  679. }
  680. .ui.secondary.pointing.menu .active.item:hover {
  681. border-color: #af8b4c;
  682. color: #dbdbdb;
  683. background: #4b5162;
  684. }
  685. .ui.secondary.pointing.menu .dropdown.item:hover,
  686. .ui.secondary.pointing.menu .link.item:hover,
  687. .ui.secondary.pointing.menu a.item:hover {
  688. color: #dbdbdb;
  689. }
  690. .ui.checkbox label,
  691. .ui.checkbox + label,
  692. .ui.form .field > label {
  693. color: #9e9e9e;
  694. }
  695. .ui.form .inline.field > label,
  696. .ui.form .inline.field > p,
  697. .ui.form .inline.fields .field > label,
  698. .ui.form .inline.fields .field > p,
  699. .ui.form .inline.fields > label {
  700. color: #9e9e9e;
  701. }
  702. .user.settings .email.list .item:not(:first-child) {
  703. border-top: 1px solid #3f4451;
  704. }
  705. .explore .navbar {
  706. background-color: #2a2e3a !important;
  707. }
  708. .ui.menu.new-menu {
  709. background-color: #2a2e3a !important;
  710. @media only screen and (max-width: 1200px) {
  711. &:after {
  712. background-image: linear-gradient(to right, rgba(42, 46, 42, 0), rgba(42, 46, 42, 1) 100%);
  713. }
  714. }
  715. }
  716. input {
  717. background: #2e323e;
  718. }
  719. .settings .key.list .item:not(:first-child) {
  720. border-top: 1px solid #404552;
  721. }
  722. .ui.attached.info.message,
  723. .ui.info.message {
  724. box-shadow: 0 0 0 1px #4b5e71 inset, 0 0 0 0 transparent;
  725. }
  726. .ui.bottom.attached.message {
  727. background-color: #2c662d;
  728. color: #87ab63;
  729. }
  730. .ui.bottom.attached.message .pull-right {
  731. color: #87ab63;
  732. }
  733. .ui.info.message {
  734. background-color: #2c3b4a;
  735. color: #9ebcc5;
  736. }
  737. .ui .warning.header {
  738. background-color: #5d3a22 !important;
  739. border-color: #794f31;
  740. }
  741. .ui.red.message {
  742. background-color: rgba(80, 23, 17, 0.6);
  743. color: #f9cbcb;
  744. box-shadow: 0 0 0 1px rgba(121, 71, 66, 0.5) inset, 0 0 0 0 transparent;
  745. }
  746. .ui.red.button,
  747. .ui.red.buttons .button {
  748. background-color: #7d3434;
  749. }
  750. .ui.red.button:hover,
  751. .ui.red.buttons .button:hover {
  752. background-color: #984646;
  753. }
  754. .ui.checkbox label:hover,
  755. .ui.checkbox + label:hover {
  756. color: #dbdbdb !important;
  757. }
  758. .ui.checkbox input:checked ~ .box:after,
  759. .ui.checkbox input:checked ~ label:after {
  760. color: #7f98ad;
  761. }
  762. .ui.checkbox input:checked ~ .box:before,
  763. .ui.checkbox input:checked ~ label:before {
  764. background: #304251;
  765. opacity: 1;
  766. color: #7f98ad;
  767. border-color: #304251;
  768. }
  769. .ui.checkbox .box:hover::before,
  770. .ui.checkbox label:hover::before {
  771. background: #304251;
  772. }
  773. .ui.checkbox .box:before,
  774. .ui.checkbox label:before {
  775. background: #304251;
  776. border: 1px solid #304251;
  777. }
  778. .ui.checkbox label:before {
  779. border-color: #476075;
  780. }
  781. .ui.checkbox .box:active::before,
  782. .ui.checkbox label:active::before {
  783. background: #304251;
  784. border-color: rgba(34, 36, 38, 0.35);
  785. }
  786. .ui.checkbox input:focus ~ .box:before,
  787. .ui.checkbox input:focus ~ label:before {
  788. border-color: #304251;
  789. background: #304251;
  790. }
  791. .ui.checkbox input:checked:focus ~ .box:before,
  792. .ui.checkbox input:checked:focus ~ label:before,
  793. .ui.checkbox input:not([type="radio"]):indeterminate:focus ~ .box:before,
  794. .ui.checkbox input:not([type="radio"]):indeterminate:focus ~ label:before {
  795. border-color: #304251;
  796. background: #304251;
  797. }
  798. .ui.checkbox input:checked:focus ~ .box:after,
  799. .ui.checkbox input:checked:focus ~ label:after,
  800. .ui.checkbox input:not([type="radio"]):indeterminate:focus ~ .box:after,
  801. .ui.checkbox input:not([type="radio"]):indeterminate:focus ~ label:after {
  802. color: #7f98ad;
  803. }
  804. .ui.checkbox input:focus ~ .box:after,
  805. .ui.checkbox input:focus ~ label,
  806. .ui.checkbox input:focus ~ label:after {
  807. color: #9a9a9a;
  808. }
  809. .ui.selection.dropdown:hover {
  810. border: 1px solid #456580;
  811. }
  812. .ui.selection.dropdown .menu > .item {
  813. border-top: 1px solid #313c47;
  814. }
  815. .ui.selection.visible.dropdown > .text:not(.default) {
  816. color: #9e9e9e;
  817. }
  818. .ui.negative.message {
  819. background-color: rgba(80, 23, 17, 0.6);
  820. color: #f9cbcb;
  821. box-shadow: 0 0 0 1px rgba(121, 71, 66, 0.5) inset, 0 0 0 0 transparent;
  822. }
  823. .hljs-tag,
  824. .hljs-name,
  825. .hljs-attribute {
  826. color: #ef5e77;
  827. }
  828. .user.profile .ui.card .extra.content ul li:not(:last-child) {
  829. border-bottom: 1px solid #4c505c;
  830. }
  831. .hljs-number,
  832. .hljs-literal,
  833. .hljs-variable,
  834. .hljs-template-variable,
  835. .hljs-tag .hljs-attr {
  836. color: #bd84bf;
  837. }
  838. .ui.form .dropzone {
  839. border: 2px dashed #4c505c;
  840. }
  841. .ui.basic.red.button,
  842. .ui.basic.red.buttons .button {
  843. box-shadow: 0 0 0 1px #a04141 inset !important;
  844. color: #a04141 !important;
  845. }
  846. .ui.list .list > .item .header,
  847. .ui.list > .item .header {
  848. color: #dedede;
  849. }
  850. .ui.list .list > .item .description,
  851. .ui.list > .item .description {
  852. color: #9e9e9e;
  853. }
  854. .ui.user.list .item .description a {
  855. color: #668cb1;
  856. }
  857. .repository.file.list #repo-files-table tbody .octicon.octicon-file-directory,
  858. .repository.file.list #repo-files-table tbody .octicon.octicon-file-submodule {
  859. color: #7c9b5e;
  860. }
  861. .ui.blue.button:focus,
  862. .ui.blue.buttons .button:focus {
  863. background-color: #a27558;
  864. }
  865. .ui.basic.blue.button:hover,
  866. .ui.basic.blue.buttons .button:hover {
  867. box-shadow: 0 0 0 1px #87ab63 inset !important;
  868. color: #87ab63 !important;
  869. }
  870. .ui.basic.blue.button:focus,
  871. .ui.basic.blue.buttons .button:focus {
  872. box-shadow: 0 0 0 1px #87ab63 inset !important;
  873. color: #87ab63 !important;
  874. }
  875. .repository.labels .ui.basic.black.label {
  876. background-color: #bbbbbb !important;
  877. }
  878. .lines-commit {
  879. background: #2e323e !important;
  880. }
  881. .bottom-line {
  882. border-color: #4e525e !important;
  883. }
  884. .lines-num {
  885. background: #2e323e !important;
  886. color: #9e9e9e !important;
  887. border-color: #2d2d2d !important;
  888. }
  889. .lines-num pre,
  890. .lines-code pre,
  891. .lines-num ol,
  892. .lines-code ol,
  893. .lines-num .hljs,
  894. .lines-code .hljs {
  895. background-color: #2a2e3a !important;
  896. }
  897. .code-view .active {
  898. background: #554a00;
  899. }
  900. a.ui.label:hover,
  901. a.ui.labels .label:hover {
  902. background-color: #505667 !important;
  903. color: #dbdbdb !important;
  904. }
  905. .repository #commits-table td.sha .sha.label,
  906. .repository #repo-files-table .sha.label {
  907. border-color: #888;
  908. }
  909. .repository #commits-table td.sha .sha.label.isSigned .detail.icon,
  910. .repository #repo-files-table .sha.label.isSigned .detail.icon {
  911. background: none;
  912. border-left-color: #888;
  913. }
  914. .repository .label.list .item {
  915. border-bottom: 1px dashed #4c505c;
  916. }
  917. .ui.basic.blue.button,
  918. .ui.basic.blue.buttons .button {
  919. box-shadow: 0 0 0 1px #87ab63 inset !important;
  920. color: #87ab63 !important;
  921. }
  922. .repository .diff-file-box .code-diff-split tbody tr.add-code td:nth-child(1),
  923. .repository .diff-file-box .code-diff-split tbody tr.add-code td:nth-child(2),
  924. .repository .diff-file-box .code-diff-split tbody tr.add-code td:nth-child(3),
  925. .repository .diff-file-box .code-diff-split tbody tr.del-code td:nth-child(4),
  926. .repository .diff-file-box .code-diff-split tbody tr.del-code td:nth-child(5),
  927. .repository .diff-file-box .code-diff-split tbody tr.del-code td:nth-child(6) {
  928. background-color: #2a2e3a;
  929. }
  930. .repository .diff-file-box .code-diff-split tbody tr.add-code td:nth-child(4),
  931. .repository .diff-file-box .code-diff-split tbody tr.add-code td:nth-child(5),
  932. .repository .diff-file-box .code-diff-split tbody tr.add-code td:nth-child(6),
  933. .repository .diff-file-box .code-diff-split tbody tr td.add-code {
  934. background-color: #283e2d !important;
  935. border-color: #314a37 !important;
  936. }
  937. .repository .diff-file-box .code-diff-split tbody tr.del-code td:nth-child(1),
  938. .repository .diff-file-box .code-diff-split tbody tr.del-code td:nth-child(2),
  939. .repository .diff-file-box .code-diff-split tbody tr.del-code td:nth-child(3),
  940. .repository .diff-file-box .code-diff-split tbody tr td.del-code {
  941. background-color: #3c2626 !important;
  942. border-color: #634343 !important;
  943. }
  944. .ui.blue.button:active,
  945. .ui.blue.buttons .button:active {
  946. background-color: #a27558;
  947. }
  948. #git-graph-container li a {
  949. color: #c79575;
  950. }
  951. #git-graph-container li .author {
  952. color: #c79575;
  953. }
  954. .ui.header .sub.header {
  955. color: #9e9e9e;
  956. }
  957. .ui.dividing.header {
  958. border-bottom: 1px solid #4c505c;
  959. }
  960. .ui.modal > .header {
  961. background: #404552;
  962. color: #dbdbdb;
  963. }
  964. .ui.modal > .actions {
  965. background: #404552;
  966. border-top: 1px solid #404552;
  967. }
  968. .ui.modal > .content {
  969. background: #383c4a;
  970. }
  971. .editor-toolbar {
  972. background-color: #404552;
  973. a {
  974. color: #87ab63 !important;
  975. }
  976. }
  977. .repository .diff-detail-box {
  978. background-color: #383c4a;
  979. .detail-files {
  980. background-color: inherit;
  981. }
  982. }
  983. .comment-code-cloud {
  984. .ui.attached.tabular.menu {
  985. background: none transparent;
  986. border: 0;
  987. }
  988. .footer .markdown-info {
  989. color: inherit;
  990. }
  991. }
  992. .file-comment {
  993. color: #888888;
  994. }
  995. .ui.comments .comment {
  996. .author {
  997. color: #dbdbdb;
  998. }
  999. .metadata {
  1000. color: #808084;
  1001. }
  1002. .text {
  1003. color: #9e9e9e;
  1004. }
  1005. }
  1006. .xdsoft_datetimepicker {
  1007. background: #2a2e39;
  1008. border: 1px solid #4c505c;
  1009. color: #9e9e9e;
  1010. .xdsoft_mounthpicker {
  1011. height: 36px;
  1012. background: #464c5d;
  1013. margin: -2px -8px 2px;
  1014. padding: 2px 8px 0;
  1015. button {
  1016. background-image: none;
  1017. text-indent: 0;
  1018. text-align: center;
  1019. color: #9e9e9e;
  1020. &.xdsoft_prev::before {
  1021. content: "\f0d9";
  1022. font: normal normal normal 14px/1 FontAwesome, serif;
  1023. font-size: 1.7em;
  1024. }
  1025. &.xdsoft_next::before {
  1026. content: "\f0da";
  1027. font: normal normal normal 14px/1 FontAwesome, serif;
  1028. font-size: 1.7em;
  1029. }
  1030. &.xdsoft_today_button::before {
  1031. content: "\f015";
  1032. font: normal normal normal 14px/1 FontAwesome, serif;
  1033. font-size: 1.4em;
  1034. }
  1035. }
  1036. & > div.xdsoft_label {
  1037. background: #464c5d;
  1038. i {
  1039. line-height: 14px;
  1040. background-image: none;
  1041. text-indent: 0;
  1042. text-align: center;
  1043. ::before {
  1044. content: "\f0dd";
  1045. font: normal normal normal 14px/1 FontAwesome, serif;
  1046. font-size: 0.7em;
  1047. }
  1048. }
  1049. .xdsoft_select {
  1050. background: #353945;
  1051. }
  1052. }
  1053. }
  1054. .xdsoft_datepicker .xdsoft_calendar {
  1055. td,
  1056. th {
  1057. border-color: #4c505c;
  1058. background-color: #2a2e39;
  1059. }
  1060. td.xdsoft_other_month,
  1061. td.xdsoft_disabled {
  1062. opacity: 0.8;
  1063. background: #a0cc75;
  1064. color: #000000;
  1065. }
  1066. }
  1067. }
  1068. .heatmap(@heat) {
  1069. @heatmap-cold: #2d303b;
  1070. @heatmap-hot: #a0cc75;
  1071. background-color: mix(@heatmap-hot, @heatmap-cold, @heat);
  1072. }
  1073. .heatmap-color-0 {
  1074. .heatmap(0%);
  1075. }
  1076. .heatmap-color-1 {
  1077. .heatmap(20%);
  1078. }
  1079. .heatmap-color-2 {
  1080. .heatmap(40%);
  1081. }
  1082. .heatmap-color-3 {
  1083. .heatmap(60%);
  1084. }
  1085. .heatmap-color-4 {
  1086. .heatmap(80%);
  1087. }
  1088. .heatmap-color-5 {
  1089. .heatmap(100%);
  1090. }
  1091. .activity-bar-graph {
  1092. background-color: #a0cc75;
  1093. color: #9e9e9e;
  1094. }
  1095. /* code mirror dark theme */
  1096. .CodeMirror {
  1097. color: #9daccc;
  1098. background-color: #2b2b2b;
  1099. border-top: 0;
  1100. div.CodeMirror-cursor {
  1101. border-left: 1px solid #9e9e9e;
  1102. }
  1103. .CodeMirror-gutters {
  1104. background-color: #2b2b2b;
  1105. }
  1106. ::selection,
  1107. ::-moz-selection,
  1108. .CodeMirror-selected {
  1109. background: #42402f !important;
  1110. }
  1111. &.cm-s-default,
  1112. &.cm-s-paper {
  1113. .cm-property {
  1114. color: #a0cc75;
  1115. }
  1116. .cm-header {
  1117. color: #9daccc;
  1118. }
  1119. .cm-quote {
  1120. color: #009900;
  1121. }
  1122. .cm-keyword {
  1123. color: #cc8a61;
  1124. }
  1125. .cm-atom {
  1126. color: #ef5e77;
  1127. }
  1128. .cm-number {
  1129. color: #ff5656;
  1130. }
  1131. .cm-def {
  1132. color: #e4e4e4;
  1133. }
  1134. .cm-variable-2 {
  1135. color: #00bdbf;
  1136. }
  1137. .cm-variable-3 {
  1138. color: #008855;
  1139. }
  1140. .cm-comment {
  1141. color: #8e9ab3;
  1142. }
  1143. .cm-string {
  1144. color: #a77272;
  1145. }
  1146. .cm-string-2 {
  1147. color: #ff5500;
  1148. }
  1149. .cm-meta,
  1150. .cm-qualifier {
  1151. color: #ffb176;
  1152. }
  1153. .cm-builtin {
  1154. color: #b7c951;
  1155. }
  1156. .cm-bracket {
  1157. color: #999977;
  1158. }
  1159. .cm-tag {
  1160. color: #f1d273;
  1161. }
  1162. .cm-attribute {
  1163. color: #bfcc70;
  1164. }
  1165. .cm-hr {
  1166. color: #999999;
  1167. }
  1168. .cm-url {
  1169. color: #c5cfd0;
  1170. }
  1171. .cm-link {
  1172. color: #d8c792;
  1173. }
  1174. .cm-error {
  1175. /* color: #ff6e00; */
  1176. color: #dbdbeb;
  1177. }
  1178. }
  1179. }
  1180. .ui.popup {
  1181. background-color: #383c4a;
  1182. color: #9e9e9e;
  1183. border-color: #9e9e9e;
  1184. &.top::before {
  1185. background-color: #383c4a;
  1186. }
  1187. }