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

arc-green.less 28 kB

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