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.

theme-arc-green.less 28KB

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