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 27KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423
  1. @import "_base";
  2. .hljs {
  3. display: block;
  4. overflow-x: auto;
  5. padding: 0.5em;
  6. color: #bababa;
  7. }
  8. .repository.file.list .non-diff-file-content .code-view .lines-num,
  9. .repository.file.list .non-diff-file-content .code-view .lines-code ol {
  10. background-color: #2b2b2b !important;
  11. }
  12. .hljs-strong,
  13. .hljs-emphasis {
  14. color: #a8a8a2;
  15. }
  16. .hljs-bullet,
  17. .hljs-quote,
  18. .hljs-link,
  19. .hljs-number,
  20. .hljs-regexp,
  21. .hljs-literal {
  22. color: #6896ba;
  23. }
  24. .hljs-code,
  25. .hljs-selector-class {
  26. color: #a6e22e;
  27. }
  28. .hljs-emphasis {
  29. font-style: italic;
  30. }
  31. .hljs-keyword,
  32. .hljs-selector-tag,
  33. .hljs-section,
  34. .hljs-attribute,
  35. .hljs-name,
  36. .hljs-variable {
  37. color: #cb7832;
  38. }
  39. .hljs-params {
  40. color: #b9b9b9;
  41. }
  42. .hljs-string {
  43. color: #6a8759;
  44. }
  45. .hljs-subst,
  46. .hljs-type,
  47. .hljs-built_in,
  48. .hljs-builtin-name,
  49. .hljs-symbol,
  50. .hljs-selector-id,
  51. .hljs-selector-attr,
  52. .hljs-selector-pseudo,
  53. .hljs-template-tag,
  54. .hljs-template-variable,
  55. .hljs-addition {
  56. color: #e0c46c;
  57. }
  58. .hljs-comment,
  59. .hljs-deletion,
  60. .hljs-meta {
  61. color: #7f7f7f;
  62. }
  63. .repository .ui.segment.sub-menu .list .item a {
  64. color: #dbdbdb;
  65. }
  66. .ui.horizontal.segments > .segment {
  67. background-color: #383c4a;
  68. }
  69. body {
  70. background: #383c4a;
  71. color: #9e9e9e;
  72. }
  73. /* firefox scroll bars */
  74. * {
  75. scrollbar-width: thin;
  76. scrollbar-color: #87ab63 rgba(255, 255, 255, 0.1);
  77. }
  78. /* webkit scrollbars */
  79. ::-webkit-scrollbar {
  80. -webkit-appearance: none !important;
  81. width: 10px !important;
  82. height: 10px !important;
  83. }
  84. ::-webkit-scrollbar-track {
  85. border-radius: 0 !important;
  86. background: rgba(255, 255, 255, 0.1) !important;
  87. }
  88. ::-webkit-scrollbar-thumb {
  89. cursor: pointer !important;
  90. border-radius: 5px !important;
  91. -webkit-transition: color 0.2s ease !important;
  92. transition: color 0.2s ease !important;
  93. background: #87ab63 !important;
  94. }
  95. ::-webkit-scrollbar-thumb:window-inactive {
  96. background: #87ab63 !important;
  97. }
  98. ::-webkit-scrollbar-thumb:hover {
  99. background: #87ab63 !important;
  100. }
  101. a {
  102. color: #87ab63;
  103. }
  104. a:hover {
  105. color: #a0cc75;
  106. }
  107. .ui.card > .extra a:not(.ui):hover,
  108. .ui.cards > .card > .extra a:not(.ui):hover {
  109. color: #a0cc75;
  110. }
  111. .ui.breadcrumb a:hover {
  112. color: #a0cc75;
  113. }
  114. .ui.breadcrumb a {
  115. color: #87ab63;
  116. }
  117. .repository .metas .ui.list a .text {
  118. color: #87ab63;
  119. }
  120. .repository .metas .ui.list a .text:hover {
  121. color: #a0cc75;
  122. }
  123. .repository .label.list .item a {
  124. color: #87ab63;
  125. }
  126. .repository .label.list .item a:hover {
  127. color: #a0cc75;
  128. }
  129. .repository .milestone.list > .item > a {
  130. color: #87ab63;
  131. }
  132. .repository .milestone.list > .item > a:hover {
  133. color: #a0cc75;
  134. }
  135. .repository.release #release-list {
  136. border-top: 1px solid #4c505c;
  137. }
  138. .repository .milestone.list > .item .operate > a {
  139. color: #87ab63;
  140. }
  141. .repository .milestone.list > .item .operate > a:hover {
  142. color: #a0cc75;
  143. }
  144. .ui.green.progress .bar {
  145. background-color: #668844;
  146. }
  147. .ui.progress.success .bar {
  148. background-color: #7b9e57 !important;
  149. }
  150. .following.bar.light {
  151. background: #2e323e;
  152. border-bottom: 1px solid #313131;
  153. }
  154. .ui.secondary.menu .active.item {
  155. color: #dbdbdb;
  156. }
  157. .ui.secondary.menu .item {
  158. color: #9e9e9e;
  159. }
  160. .following.bar .top.menu a.item:hover {
  161. color: #ffffff;
  162. }
  163. .repository.view.issue .comment-list .comment .content > .bottom.segment a {
  164. border: solid 1px #353945;
  165. background-color: #353945;
  166. }
  167. .ui.attached.header {
  168. background: #404552;
  169. border: 1px solid #404552;
  170. color: #dbdbdb;
  171. }
  172. .ui.attached.table {
  173. border: 1px solid #304251;
  174. background: #304251;
  175. }
  176. .feeds .list ul li:not(:last-child) {
  177. border-bottom: 1px solid #333640;
  178. }
  179. .feeds .list ul li.private {
  180. background: #353945;
  181. border: 1px solid #333640;
  182. }
  183. .ui.secondary.menu .dropdown.item:hover,
  184. .ui.secondary.menu .link.item:hover,
  185. .ui.secondary.menu a.item:hover {
  186. color: #ffffff;
  187. }
  188. .ui.menu .ui.dropdown .menu > .item {
  189. background: #2c303a !important;
  190. color: #9e9e9e !important;
  191. }
  192. .ui.secondary.menu .dropdown.item > .menu,
  193. .ui.text.menu .dropdown.item > .menu {
  194. border: 1px solid #434444;
  195. }
  196. footer {
  197. background: #2e323e;
  198. border-top: 1px solid #313131;
  199. }
  200. .ui.menu .dropdown.item .menu {
  201. background: #2c303a;
  202. }
  203. .ui.menu .ui.dropdown .menu > .item:hover,
  204. .ui.menu .ui.dropdown .menu > .selected.item {
  205. color: #ffffff !important;
  206. }
  207. .ui.dropdown .menu > .header {
  208. color: #dbdbdb;
  209. }
  210. .ui.red.label,
  211. .ui.red.labels .label {
  212. background-color: #7d3434 !important;
  213. border-color: #8a2121 !important;
  214. }
  215. .ui.menu {
  216. background: #404552;
  217. border: 1px solid #353945;
  218. }
  219. .ui.menu .active.item:hover,
  220. .ui.vertical.menu .active.item:hover {
  221. color: #dbdbdb;
  222. background: #4b5162;
  223. }
  224. .ui.link.menu .item:hover,
  225. .ui.menu .dropdown.item:hover,
  226. .ui.menu .link.item:hover,
  227. .ui.menu a.item:hover {
  228. color: #dbdbdb;
  229. background: #454b5a;
  230. }
  231. .ui.menu .active.item {
  232. background: #4b5162;
  233. color: #dbdbdb;
  234. }
  235. .ui.input input {
  236. background: #404552;
  237. border: 2px solid #353945;
  238. color: #dbdbdb;
  239. }
  240. .ui.input input:focus,
  241. .ui.input.focus input {
  242. background: #404552;
  243. border: 2px solid #353945;
  244. color: #dbdbdb;
  245. }
  246. .ui.accordion .title:not(.ui) {
  247. color: #dbdbdb;
  248. }
  249. .ui.label {
  250. color: #dbdbdb;
  251. background-color: #404552;
  252. }
  253. .issue.list > .item .title {
  254. color: #87ab63;
  255. }
  256. .issue.list > .item .title:hover {
  257. color: #a0cc75;
  258. }
  259. .issue.list > .item {
  260. border-bottom: 1px dashed #475767;
  261. }
  262. .ui.green.label,
  263. .ui.green.labels .label,
  264. .ui.basic.green.label {
  265. background-color: #2d693b !important;
  266. border-color: #2d693b !important;
  267. }
  268. .ui.basic.green.labels a.label:hover,
  269. a.ui.basic.green.label:hover {
  270. background-color: #16ab39 !important;
  271. border-color: #16ab39 !important;
  272. color: #ffffff !important;
  273. }
  274. .issue.list > .item .comment {
  275. color: #129c92;
  276. }
  277. .ui.basic.button,
  278. .ui.basic.buttons .button {
  279. color: #797979 !important;
  280. }
  281. .ui.basic.red.active.button,
  282. .ui.basic.red.buttons .active.button {
  283. box-shadow: 0 0 0 1px #c75252 inset !important;
  284. color: #c75252 !important;
  285. }
  286. .ui.basic.button:focus,
  287. .ui.basic.button:hover,
  288. .ui.basic.buttons .button:focus,
  289. .ui.basic.buttons .button:hover {
  290. background: transparent !important;
  291. color: #dbdbdb !important;
  292. }
  293. .ui.menu .item {
  294. background: #404552;
  295. color: #9e9e9e;
  296. }
  297. .ui.menu .item.disabled,
  298. .ui.menu .item.disabled:hover {
  299. color: #626773;
  300. }
  301. .ui.pagination.menu .active.item {
  302. color: #dbdbdb;
  303. background-color: #87ab63;
  304. }
  305. .repository .header-wrapper {
  306. background-color: #2a2e3a;
  307. }
  308. .ui.tabular.menu .active.item {
  309. background: #383c4a;
  310. color: #dbdbdb;
  311. border-left: 1px solid transparent;
  312. border-right: 1px solid transparent;
  313. border-top: 0;
  314. }
  315. .ui.tabular.menu .item {
  316. color: #9e9e9e;
  317. }
  318. .ui.tabular.menu .item:hover {
  319. color: #dbdbdb;
  320. }
  321. .ui.header,
  322. .ui.breadcrumb .divider {
  323. color: #9e9e9e;
  324. }
  325. .ui.blue.label,
  326. .ui.blue.labels .label {
  327. background-color: #26577b !important;
  328. border-color: #26577b !important;
  329. }
  330. .ui.menu .item > .label {
  331. background: #565454;
  332. }
  333. .ui.blue.button,
  334. .ui.blue.buttons .button {
  335. background-color: #87ab63;
  336. }
  337. .ui.blue.button:hover,
  338. .ui.blue.buttons .button:hover {
  339. background-color: #a0cc75;
  340. }
  341. .ui.form input:not([type]),
  342. .ui.form input[type="text"],
  343. .ui.form input[type="email"],
  344. .ui.form input[type="search"],
  345. .ui.form input[type="password"],
  346. .ui.form input[type="date"],
  347. .ui.form input[type="datetime-local"],
  348. .ui.form input[type="tel"],
  349. .ui.form input[type="time"],
  350. .ui.form input[type="url"],
  351. .ui.form input[type="number"] {
  352. color: #9e9e9e;
  353. background: #404552;
  354. border: 2px solid #353945;
  355. }
  356. .ui.form input:not([type]):focus,
  357. .ui.form input[type="text"]:focus,
  358. .ui.form input[type="email"]:focus,
  359. .ui.form input[type="search"]:focus,
  360. .ui.form input[type="password"]:focus,
  361. .ui.form input[type="date"]:focus,
  362. .ui.form input[type="datetime-local"]:focus,
  363. .ui.form input[type="tel"]:focus,
  364. .ui.form input[type="time"]:focus,
  365. .ui.form input[type="url"]:focus,
  366. .ui.form input[type="number"]:focus {
  367. background: #404552;
  368. border: 2px solid #4b505f;
  369. color: #dbdbdb;
  370. }
  371. .ui.action.input:not([class*="left action"]) input:focus {
  372. border-right-color: #4b505f !important;
  373. }
  374. .ui.green.button,
  375. .ui.green.buttons .button {
  376. background-color: #87ab63;
  377. }
  378. .ui.green.button:hover,
  379. .ui.green.buttons .button:hover {
  380. background-color: #a0cc75;
  381. }
  382. .ui.button {
  383. background: #383c4a;
  384. border: 1px solid #4c505c;
  385. color: #dbdbdb;
  386. }
  387. .ui.labeled.button:not([class*="left labeled"]) > .label,
  388. .ui[class*="left labeled"].button > .button {
  389. background: #404552;
  390. border: 1px solid #4c505c;
  391. color: #87ab63;
  392. }
  393. .ui.button:hover {
  394. background-color: #404552;
  395. color: #dbdbdb;
  396. }
  397. .ui.table thead th {
  398. background: #404552;
  399. color: #dbdbdb;
  400. }
  401. .repository.file.list #repo-files-table tr:hover {
  402. background-color: #393d4a;
  403. }
  404. .ui.table {
  405. color: #a5a5a5 !important;
  406. border: 1px solid #4c505c;
  407. background: #353945;
  408. }
  409. .ui.table tbody tr {
  410. border-bottom: 1px solid #333640;
  411. background: #2a2e3a;
  412. }
  413. .ui .text.grey {
  414. color: #808084 !important;
  415. }
  416. .ui.attached.table.segment {
  417. background: #353945;
  418. color: #dbdbdb !important;
  419. }
  420. .markdown:not(code) h2 {
  421. border-bottom: 1px solid #304251;
  422. }
  423. .hljs,
  424. .hljs-keyword,
  425. .hljs-selector-tag,
  426. .hljs-subst {
  427. color: #9daccc;
  428. }
  429. .markdown:not(code) .highlight pre,
  430. .markdown:not(code) pre {
  431. background-color: #2a2e3a;
  432. border: 1px solid #404552;
  433. }
  434. .markdown:not(code) table tr:nth-child(2n) {
  435. background-color: #2a2e39;
  436. }
  437. .markdown:not(code) table tr:nth-child(2n-1) {
  438. background-color: #383b44;
  439. }
  440. .markdown:not(code) table thead tr:nth-child(2n-1) {
  441. background-color: #464c5d !important;
  442. }
  443. .markdown:not(code) table td,
  444. .markdown:not(code) table th {
  445. border-color: #4c505c !important;
  446. }
  447. .repository.file.editor.edit,
  448. .repository.wiki.new .CodeMirror {
  449. border-right: 1px solid rgba(187, 187, 187, 0.6);
  450. border-left: 1px solid rgba(187, 187, 187, 0.6);
  451. border-bottom: 1px solid rgba(187, 187, 187, 0.6);
  452. .editor-preview,
  453. .editor-preview-side {
  454. background: #353945;
  455. .markdown:not(code).ui.segment {
  456. border-width: 0;
  457. }
  458. }
  459. }
  460. .ui.dropdown .menu {
  461. background: #2c303a;
  462. }
  463. .ui.dropdown .menu > .message:not(.ui) {
  464. color: #636363;
  465. }
  466. .ui.input {
  467. color: #dbdbdb;
  468. }
  469. .overflow.menu .items .item {
  470. color: #9d9d9d;
  471. }
  472. .overflow.menu .items .item:hover {
  473. color: #dbdbdb;
  474. }
  475. .ui.segment {
  476. background: #353945;
  477. color: #9e9e9e !important;
  478. border: 1px solid #404552;
  479. }
  480. .ui.active.button:active,
  481. .ui.button:active,
  482. .ui.button:focus {
  483. background-color: #2e3e4e;
  484. color: #dbdbdb;
  485. }
  486. .ui.dropdown .menu .selected.item,
  487. .ui.dropdown.selected {
  488. color: #dbdbdb;
  489. }
  490. .ui.dropdown .menu > .item:hover {
  491. color: #dbdbdb;
  492. }
  493. .ui.dropdown .menu > .item {
  494. color: #9e9e9e;
  495. }
  496. .ui.attached.segment {
  497. border: 1px solid #404552;
  498. }
  499. .repository.view.issue .comment-list .comment .content > .bottom.segment {
  500. background: #353945;
  501. }
  502. .repository.view.issue .comment-list .comment .content .header {
  503. color: #dbdbdb;
  504. background-color: #404552;
  505. border-bottom: 1px solid #353944;
  506. }
  507. .repository.view.issue .comment-list .comment .content .merge-section {
  508. background-color: #404552;
  509. border-top: 1px solid #353944;
  510. }
  511. .repository.view.issue .comment-list .event > .octicon.issue-symbol {
  512. background: #3b4954;
  513. }
  514. .repository.view.issue .comment-list .event > .octicon:not(.issue-symbol) {
  515. text-shadow: -2px 0 #383c4a, 0 2px #383c4a, 2px 0 #383c4a, 0 -2px #383c4a;
  516. }
  517. .ui .text.grey a {
  518. color: #dbdbdb !important;
  519. }
  520. .ui.comments .comment .actions a {
  521. color: #dbdbdb;
  522. }
  523. .repository.view.issue .comment-list .comment .content .header:after {
  524. border-right-color: #404552;
  525. }
  526. .repository.new.issue .comment.form .content:after {
  527. border-right-color: #353945;
  528. }
  529. .repository.view.issue .comment-list .comment .content .header:before {
  530. border-right-color: #404552;
  531. }
  532. .repository.new.issue .comment.form .content:before {
  533. border-right-color: #353945;
  534. }
  535. .repository.view.issue .comment-list:not(.prevent-before-timeline):before,
  536. .repository.view.issue .comment-list .timeline-line:before {
  537. background-color: #3b4954;
  538. }
  539. .repository .comment.form .content .form:after {
  540. border-right-color: #313c47;
  541. }
  542. .repository .comment.form .content .form:before {
  543. border-right-color: #313c47;
  544. }
  545. .ui .text.grey a:hover {
  546. color: #dbdbdb !important;
  547. }
  548. .ui.basic.green.active.button,
  549. .ui.basic.green.buttons .active.button {
  550. color: #13ae38 !important;
  551. }
  552. .ui.form textarea,
  553. .ui.form textarea:focus {
  554. color: #dbdbdb;
  555. background: #404552;
  556. border: 2px solid #353945;
  557. }
  558. .ui.form textarea:focus {
  559. border: 1px solid #456580;
  560. }
  561. .ui .info.segment.top {
  562. background-color: #404552 !important;
  563. }
  564. .repository .diff-file-box .code-diff-unified tbody tr.del-code td {
  565. background-color: #3c2626 !important;
  566. border-color: #634343 !important;
  567. }
  568. .repository .diff-file-box .code-diff-unified tbody tr.add-code td {
  569. background-color: #283e2d !important;
  570. border-color: #314a37 !important;
  571. }
  572. .repository .diff-file-box .code-diff tbody tr .added-code {
  573. background-color: #3a523a;
  574. }
  575. .repository .diff-file-box .code-diff .lines-num {
  576. border-right: 1px solid #2d2d2d;
  577. }
  578. .repository .diff-file-box .file-body.file-code .lines-num {
  579. color: #9e9e9e;
  580. background: #2e323e;
  581. }
  582. .repository .diff-file-box .file-body.file-code .lines-num-old {
  583. border-right: 1px solid #2d2d2d;
  584. }
  585. .hljs-title,
  586. .hljs-section,
  587. .hljs-selector-id {
  588. color: #986c88;
  589. }
  590. .hljs-string,
  591. .hljs-doctag {
  592. color: #8ab398;
  593. }
  594. .repository .diff-file-box .code-diff tbody tr .removed-code {
  595. background-color: #5f3737;
  596. }
  597. .repository .diff-file-box .code-diff tbody tr.tag-code td,
  598. .repository .diff-file-box .code-diff tbody tr td.tag-code {
  599. background-color: #292727 !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 #file-content .code-view .lines-num {
  849. background: #2e323e;
  850. }
  851. .repository.file.list #repo-files-table tbody .octicon.octicon-file-directory,
  852. .repository.file.list #repo-files-table tbody .octicon.octicon-file-submodule {
  853. color: #7c9b5e;
  854. }
  855. .ui.blue.button:focus,
  856. .ui.blue.buttons .button:focus {
  857. background-color: #a27558;
  858. }
  859. .ui.basic.blue.button:hover,
  860. .ui.basic.blue.buttons .button:hover {
  861. box-shadow: 0 0 0 1px #87ab63 inset !important;
  862. color: #87ab63 !important;
  863. }
  864. .ui.basic.blue.button:focus,
  865. .ui.basic.blue.buttons .button:focus {
  866. box-shadow: 0 0 0 1px #87ab63 inset !important;
  867. color: #87ab63 !important;
  868. }
  869. .repository.file.list #file-content .code-view .lines-num pre,
  870. .repository.file.list #file-content .code-view .lines-code pre,
  871. .repository.file.list #file-content .code-view .lines-num ol,
  872. .repository.file.list #file-content .code-view .lines-code ol,
  873. .repository.file.list #file-content .code-view .lines-num .hljs,
  874. .repository.file.list #file-content .code-view .lines-code .hljs {
  875. background-color: #2a2e3a;
  876. }
  877. a.ui.label:hover,
  878. a.ui.labels .label:hover {
  879. background-color: #505667 !important;
  880. color: #dbdbdb !important;
  881. }
  882. .repository #commits-table td.sha .sha.label,
  883. .repository #repo-files-table .sha.label {
  884. border-color: #888;
  885. }
  886. .repository #commits-table td.sha .sha.label.isSigned .detail.icon,
  887. .repository #repo-files-table .sha.label.isSigned .detail.icon {
  888. background: none;
  889. border-left-color: #888;
  890. }
  891. .repository .label.list .item {
  892. border-bottom: 1px dashed #4c505c;
  893. }
  894. .ui.basic.blue.button,
  895. .ui.basic.blue.buttons .button {
  896. box-shadow: 0 0 0 1px #87ab63 inset !important;
  897. color: #87ab63 !important;
  898. }
  899. .repository.file.list #file-content .code-view {
  900. .lines-num pre,
  901. .lines-code pre,
  902. .lines-num ol,
  903. .lines-code ol,
  904. .lines-num .hljs,
  905. .hljs {
  906. background-color: #2a2e3a;
  907. }
  908. }
  909. .repository .diff-file-box .code-diff-split tbody tr.add-code td:nth-child(1),
  910. .repository .diff-file-box .code-diff-split tbody tr.add-code td:nth-child(2),
  911. .repository .diff-file-box .code-diff-split tbody tr.add-code td:nth-child(3),
  912. .repository .diff-file-box .code-diff-split tbody tr.del-code td:nth-child(4),
  913. .repository .diff-file-box .code-diff-split tbody tr.del-code td:nth-child(5),
  914. .repository .diff-file-box .code-diff-split tbody tr.del-code td:nth-child(6) {
  915. background-color: #2a2e3a;
  916. }
  917. .repository .diff-file-box .code-diff-split tbody tr.add-code td:nth-child(4),
  918. .repository .diff-file-box .code-diff-split tbody tr.add-code td:nth-child(5),
  919. .repository .diff-file-box .code-diff-split tbody tr.add-code td:nth-child(6),
  920. .repository .diff-file-box .code-diff-split tbody tr td.add-code {
  921. background-color: #283e2d !important;
  922. border-color: #314a37 !important;
  923. }
  924. .repository .diff-file-box .code-diff-split tbody tr.del-code td:nth-child(1),
  925. .repository .diff-file-box .code-diff-split tbody tr.del-code td:nth-child(2),
  926. .repository .diff-file-box .code-diff-split tbody tr.del-code td:nth-child(3),
  927. .repository .diff-file-box .code-diff-split tbody tr td.del-code {
  928. background-color: #3c2626 !important;
  929. border-color: #634343 !important;
  930. }
  931. .ui.blue.button:active,
  932. .ui.blue.buttons .button:active {
  933. background-color: #a27558;
  934. }
  935. #git-graph-container li a {
  936. color: #c79575;
  937. }
  938. #git-graph-container li .author {
  939. color: #c79575;
  940. }
  941. .ui.header .sub.header {
  942. color: #9e9e9e;
  943. }
  944. .ui.dividing.header {
  945. border-bottom: 1px solid #4c505c;
  946. }
  947. .ui.modal > .header {
  948. background: #404552;
  949. color: #dbdbdb;
  950. }
  951. .ui.modal > .actions {
  952. background: #404552;
  953. border-top: 1px solid #404552;
  954. }
  955. .ui.modal > .content {
  956. background: #383c4a;
  957. }
  958. .editor-toolbar {
  959. background-color: #404552;
  960. a {
  961. color: #87ab63 !important;
  962. }
  963. }
  964. .repository .diff-detail-box {
  965. background-color: #383c4a;
  966. .detail-files {
  967. background-color: inherit;
  968. }
  969. }
  970. .comment-code-cloud {
  971. .ui.attached.tabular.menu {
  972. background: none transparent;
  973. border: 0;
  974. }
  975. .footer .markdown-info {
  976. color: inherit;
  977. }
  978. }
  979. .file-comment {
  980. color: #888888;
  981. }
  982. .ui.comments .comment {
  983. .author {
  984. color: #dbdbdb;
  985. }
  986. .metadata {
  987. color: #808084;
  988. }
  989. .text {
  990. color: #9e9e9e;
  991. }
  992. }
  993. .xdsoft_datetimepicker {
  994. background: #2a2e39;
  995. border: 1px solid #4c505c;
  996. color: #9e9e9e;
  997. .xdsoft_mounthpicker {
  998. height: 36px;
  999. background: #464c5d;
  1000. margin: -2px -8px 2px;
  1001. padding: 2px 8px 0;
  1002. button {
  1003. background-image: none;
  1004. text-indent: 0;
  1005. text-align: center;
  1006. color: #9e9e9e;
  1007. &.xdsoft_prev::before {
  1008. content: "\f0d9";
  1009. font: normal normal normal 14px/1 FontAwesome, serif;
  1010. font-size: 1.7em;
  1011. }
  1012. &.xdsoft_next::before {
  1013. content: "\f0da";
  1014. font: normal normal normal 14px/1 FontAwesome, serif;
  1015. font-size: 1.7em;
  1016. }
  1017. &.xdsoft_today_button::before {
  1018. content: "\f015";
  1019. font: normal normal normal 14px/1 FontAwesome, serif;
  1020. font-size: 1.4em;
  1021. }
  1022. }
  1023. & > div.xdsoft_label {
  1024. background: #464c5d;
  1025. i {
  1026. line-height: 14px;
  1027. background-image: none;
  1028. text-indent: 0;
  1029. text-align: center;
  1030. ::before {
  1031. content: "\f0dd";
  1032. font: normal normal normal 14px/1 FontAwesome, serif;
  1033. font-size: 0.7em;
  1034. }
  1035. }
  1036. .xdsoft_select {
  1037. background: #353945;
  1038. }
  1039. }
  1040. }
  1041. .xdsoft_datepicker .xdsoft_calendar {
  1042. td,
  1043. th {
  1044. border-color: #4c505c;
  1045. background-color: #2a2e39;
  1046. }
  1047. td.xdsoft_other_month,
  1048. td.xdsoft_disabled {
  1049. opacity: 0.8;
  1050. background: #a0cc75;
  1051. color: #000000;
  1052. }
  1053. }
  1054. }
  1055. .heatmap-color-0 {
  1056. background-color: #2d303b;
  1057. }
  1058. /* code mirror dark theme */
  1059. .CodeMirror {
  1060. color: #9daccc;
  1061. background-color: #2b2b2b;
  1062. border-top: 0;
  1063. div.CodeMirror-cursor {
  1064. border-left: 1px solid #9e9e9e;
  1065. }
  1066. .CodeMirror-gutters {
  1067. background-color: #2b2b2b;
  1068. }
  1069. ::selection,
  1070. ::-moz-selection,
  1071. .CodeMirror-selected {
  1072. background: #42402f !important;
  1073. }
  1074. &.cm-s-default,
  1075. &.cm-s-paper {
  1076. .cm-property {
  1077. color: #a0cc75;
  1078. }
  1079. .cm-header {
  1080. color: #9daccc;
  1081. }
  1082. .cm-quote {
  1083. color: #009900;
  1084. }
  1085. .cm-keyword {
  1086. color: #cc8a61;
  1087. }
  1088. .cm-atom {
  1089. color: #ef5e77;
  1090. }
  1091. .cm-number {
  1092. color: #ff5656;
  1093. }
  1094. .cm-def {
  1095. color: #e4e4e4;
  1096. }
  1097. .cm-variable-2 {
  1098. color: #00bdbf;
  1099. }
  1100. .cm-variable-3 {
  1101. color: #008855;
  1102. }
  1103. .cm-comment {
  1104. color: #8e9ab3;
  1105. }
  1106. .cm-string {
  1107. color: #a77272;
  1108. }
  1109. .cm-string-2 {
  1110. color: #ff5500;
  1111. }
  1112. .cm-meta,
  1113. .cm-qualifier {
  1114. color: #ffb176;
  1115. }
  1116. .cm-builtin {
  1117. color: #b7c951;
  1118. }
  1119. .cm-bracket {
  1120. color: #999977;
  1121. }
  1122. .cm-tag {
  1123. color: #f1d273;
  1124. }
  1125. .cm-attribute {
  1126. color: #bfcc70;
  1127. }
  1128. .cm-hr {
  1129. color: #999999;
  1130. }
  1131. .cm-url {
  1132. color: #c5cfd0;
  1133. }
  1134. .cm-link {
  1135. color: #d8c792;
  1136. }
  1137. .cm-error {
  1138. /* color: #ff6e00; */
  1139. color: #dbdbeb;
  1140. }
  1141. }
  1142. }