dark-gogs.dev.css 20 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171
  1. /* System */
  2. html {
  3. color-scheme: dark;
  4. }
  5. /* Main */
  6. body {
  7. background-color: #0d1117 !important;
  8. color: #c9d1d9;
  9. }
  10. body:not(.full-width) {
  11. background-color: #0d1117 !important;
  12. }
  13. footer {
  14. background-color: #161b22;
  15. border-top: 1px solid #161b22;
  16. color: #c9d1d9;
  17. }
  18. footer .container .fa {
  19. color: #58a6ff;
  20. }
  21. a {
  22. color: #58a6ff;
  23. }
  24. a:hover {
  25. color: #58a6ff;
  26. opacity: 0.6;
  27. }
  28. hr {
  29. background-color: #30363d !important;
  30. }
  31. .full.height {
  32. margin: 53px 0 -80px 0 !important;
  33. }
  34. .following.bar.light {
  35. position: fixed;
  36. top: 0px;
  37. }
  38. .ui.attached.header .right .button {
  39. color: #fff !important;
  40. }
  41. .ui.top.attached.header {
  42. background: #21262d !important;
  43. border-color: #30363d !important;
  44. color: #e7e7e7 !important;
  45. }
  46. .ui.table thead th {
  47. background: #21262d !important;
  48. border-color: #21262d !important;
  49. color: #e7e7e7 !important;
  50. }
  51. three.wide.text.grey.right.age,
  52. .time-since.poping.up {
  53. color: #e7e7e7 !important;
  54. }
  55. .ui.dropdown .menu {
  56. background: #161b22 !important;
  57. border: 1px solid #30363d;
  58. }
  59. /* Navigation */
  60. .ui.menu .ui.dropdown .menu > .item {
  61. color: rgba(255, 255, 255, 0.9) !important;
  62. }
  63. .following.bar.light {
  64. background-color: #161b22;
  65. border-bottom: 1px solid #28313d;
  66. }
  67. .ui.secondary.menu .active.item {
  68. background-color: #0d1117;
  69. color: #c9d1d9;
  70. font-weight: bold;
  71. }
  72. .ui.menu .item {
  73. color: #c9d1d9;
  74. }
  75. .ui.menu {
  76. background: #161b22;
  77. border: none;
  78. }
  79. .repository .milestone.list > .item > a {
  80. color: #fff;
  81. }
  82. .issue.list > .item .desc a.milestone:hover {
  83. color: #fff !important;
  84. }
  85. .repository .metas .ui.list a .text {
  86. color: #fff;
  87. }
  88. h2 a.anchor .octicon.octicon-link {
  89. color: #fff;
  90. }
  91. .following.bar .top.menu a.item:hover {
  92. color: #b4b7b4;
  93. }
  94. .ui .text.black {
  95. color: #c9d1d9;
  96. }
  97. .context.user.overflow.menu.transition {
  98. background-color: #343544;
  99. color: lightgrey !important;
  100. }
  101. .ui.dropdown .menu > .header {
  102. color: rgba(255, 255, 255, 0.9);
  103. }
  104. .overflow.menu .items .item:hover {
  105. color: rgba(255, 255, 255, 0.9);
  106. }
  107. .overflow.menu .items .item {
  108. color: rgba(255, 255, 255, 0.9) !important;
  109. }
  110. .ui.dropdown .menu > .item {
  111. color: #fff !important;
  112. }
  113. .repository .filter.dropdown .menu {
  114. background-color: #161b22 !important;
  115. color: lightgrey !important;
  116. }
  117. .ui.menu .ui.dropdown .menu > .active.item {
  118. color: rgb(73, 95, 140) !important;
  119. }
  120. .ui.icon.input > input {
  121. background-color: #222831 !important;
  122. border: none !important;
  123. color: lightgrey;
  124. }
  125. .reference.column .text.black {
  126. color: #fff !important;
  127. }
  128. .ui.menu .ui.dropdown .menu > .item:hover,
  129. .ui.menu .ui.dropdown .menu > .selected.item,
  130. #branch-list {
  131. background-color: #1f6feb !important;
  132. color: #fff !important;
  133. }
  134. .filter.icon {
  135. color: #fff;
  136. }
  137. /* Home */
  138. .home a {
  139. color: #7ee787;
  140. }
  141. .home .hero .octicon {
  142. color: #7ee787;
  143. }
  144. .ui.header {
  145. color: #c9d1d9;
  146. }
  147. .feeds .list ul li.private {
  148. background-color: #161b22;
  149. border-bottom: none;
  150. }
  151. .feeds .list ul li:not(:last-child) {
  152. border-bottom: 1px solid #161b22;
  153. }
  154. .ui.accordion .title:not(.ui) {
  155. color: #c9d1d9;
  156. }
  157. #auth_password {
  158. background: #161b22;
  159. color: #c9d1d9;
  160. }
  161. .ui.checkbox label:hover,
  162. .ui.checkbox+label:hover {
  163. color: #c9d1d9;
  164. opacity: 0.6;
  165. }
  166. .ui.secondary.menu .dropdown.item:hover,
  167. .ui.secondary.menu .link.item:hover,
  168. .ui.secondary.menu a.item:hover {
  169. color: rgba(224, 224, 224, 0.6);
  170. }
  171. /* Explore */
  172. .ui.vertical.menu {
  173. background-color: #161b22;
  174. }
  175. .ui.vertical.menu .header.item {
  176. background-color: #161b22;
  177. }
  178. .ui.vertical.menu .active.item {
  179. background-color: #161b22;
  180. }
  181. .ui.menu .active.item {
  182. background: #161b22;
  183. color: #c9d1d9;
  184. }
  185. .ui.menu a.item:hover {
  186. background-color: #161b22;
  187. color: #fff;
  188. }
  189. .ui.repository.list .item:not(:first-child) {
  190. border-top: 1px solid #161b22;
  191. }
  192. .ui.menu .active.item:hover,
  193. .ui.vertical.menu .active.item:hover {
  194. background-color: #161b22;
  195. color: #c9d1d9;
  196. }
  197. .ui.form input:not([type]),
  198. .ui.form input:not([type]):focus,
  199. .repository.new.migrate #auth_password,
  200. .repository.new.migrate #auth_password:focus {
  201. background-color: #010409 !important;
  202. color: #b4b7b4;
  203. }
  204. .ui.form input:not([type]):focus {
  205. border-bottom-color: #58a6ff;
  206. border-left-color: #58a6ff;
  207. border-top-color: #58a6ff;
  208. color: #c9d1d9;
  209. }
  210. .ui.list .list>.item .description,
  211. .ui.list>.item .description {
  212. color: #969896;
  213. }
  214. .ui.repository.list .item .time {
  215. color: #969896;
  216. }
  217. .ui .text.grey {
  218. color: #969896 !important;
  219. }
  220. .ui.user.list .item:not(:first-child) {
  221. border-top: 1px solid #161b22;
  222. }
  223. .ui.divider:not(.vertical):not(.horizontal) {
  224. border-bottom: 1px solid #28313d;
  225. }
  226. .ui.list .list>.item .header,
  227. .ui.list>.item .header {
  228. color: #c9d1d9;
  229. }
  230. .ui.pagination.menu .active.item {
  231. background-color: #161b22;
  232. color: #c9d1d9;
  233. }
  234. .ui.menu .item.disabled,
  235. .ui.menu:hover .item.disabled:hover {
  236. color: #c9d1d9;
  237. }
  238. .ui.menu:hover .item.disabled:hover {
  239. background-color: #161b22 !important;
  240. }
  241. .ui.user.list .item .description a {
  242. color: #58a6ff !important;
  243. }
  244. .ui.sha.label,
  245. a.ui.label:hover,
  246. a.ui.labels .label:hover {
  247. background-color: #454a57;
  248. color: #d7d7d7;
  249. }
  250. .ui.breadcrumb a.section {
  251. display: none;
  252. }
  253. #search-repo-box .results .item:hover,
  254. #search-user-box .results .item:hover {
  255. color: rgb(152, 165, 201) !important;
  256. }
  257. /* Repos */
  258. .repository .header-wrapper {
  259. background-color: #161b22;
  260. }
  261. .ui.basic.button,
  262. .ui.basic.buttons .button {
  263. color: #c9d1d9 !important;
  264. }
  265. .ui.tabular.menu .item {
  266. color: #c9d1d9;
  267. }
  268. .ui.tabular.menu .active.item {
  269. background: none #0d1117;
  270. border-color: transparent;
  271. color: #c9d1d9;
  272. }
  273. .ui .text.black {
  274. color: #c9d1d9;
  275. }
  276. .ui .text.black:hover {
  277. color: #c9d1d9;
  278. }
  279. .ui.segment {
  280. background: #161b22;
  281. border: 1px solid #28313d;
  282. }
  283. .ui.input input {
  284. background: #161b22 !important;
  285. border: none !important;
  286. color: #c9d1d9 !important;
  287. }
  288. .ui.input input:focus {
  289. background: #222831 !important;
  290. color: #c9d1d9 !important;
  291. }
  292. .ui.black.button,
  293. .ui.black.buttons .button {
  294. background: #161b22 !important;
  295. color: #c9d1d9 !important;
  296. }
  297. .ui.basic.button:hover,
  298. .ui.basic.buttons .button:hover {
  299. background: #c9d1d9 !important;
  300. }
  301. .ui.basic.label {
  302. background: none #c9d1d9;
  303. }
  304. span.ui.basic.yellow.label {
  305. background-color: transparent !important;
  306. }
  307. .ui.dropdown .menu {
  308. background: #c9d1d9;
  309. }
  310. .reference.column .text.black {
  311. color: #0d1117;
  312. }
  313. .ui.table {
  314. background: #161b22;
  315. border: 1px solid #30363d;
  316. color: #c9d1d9;
  317. }
  318. .ui.table thead th {
  319. background: #c9d1d9;
  320. color: #0d1117;
  321. }
  322. .repository.file.list #repo-files-table tr:hover {
  323. background-color: #222831;
  324. }
  325. .ui.breadcrumb a {
  326. color: #58a6ff;
  327. }
  328. .ui.breadcrumb a:hover {
  329. color: #58a6ff;
  330. opacity: 0.6;
  331. }
  332. .ui.basic.blue.button,
  333. .ui.basic.blue.buttons .button {
  334. box-shadow: 0 0 0 1px #58a6ff inset !important;
  335. color: #58a6ff !important;
  336. }
  337. .ui.basic.blue.button:hover,
  338. .ui.basic.blue.buttons .button:hover {
  339. color: #58a6ff !important;
  340. opacity: 0.6;
  341. }
  342. .ui.basic.orange.label {
  343. background: none !important;
  344. border-color: #f2711c !important;
  345. color: #f2711c !important;
  346. }
  347. .ui .text.grey a:hover {
  348. color: #fff !important;
  349. }
  350. .ui .text.grey a {
  351. color: #fff !important;
  352. }
  353. .ui.button {
  354. background-color: #0000001a;
  355. color: #999;
  356. }
  357. .ui.top.attached .ui.button {
  358. margin-right: 0;
  359. }
  360. .CodeMirror {
  361. background: #0d1117;
  362. border: 1px solid #30363d;
  363. color: #c9d1d9;
  364. }
  365. .ui.form textarea,
  366. .repository.file.editor .commit-form-wrapper .commit-form .quick-pull-choice .new-branch-name-input input {
  367. background-color: #161b22 !important;
  368. color: #b4b7b4 !important;
  369. }
  370. .ui.menu .item>.label {
  371. color: #0d1117;
  372. }
  373. .ui.tabular.menu .item:hover {
  374. color: #c9d1d9;
  375. opacity: 0.6;
  376. }
  377. .ui.breadcrumb .divider {
  378. color: #c9d1d9;
  379. }
  380. .three.wide.text.grey.right.age .time-since.poping.up {
  381. color: #0d1117;
  382. }
  383. .ui.attached.header {
  384. background: #c9d1d9;
  385. }
  386. .ui.top.attached.header {
  387. background: #c9d1d9;
  388. color: #161b22;
  389. }
  390. .ui .warning.header {
  391. background-color: #de935f !important;
  392. border-color: #de935f !important;
  393. }
  394. .ui.attached.table {
  395. border: transparent;
  396. }
  397. .markdown:not(code) .highlight pre,
  398. .markdown:not(code) pre {
  399. background-color: #0d1117;
  400. }
  401. .hljs {
  402. color: #c9d1d9 !important;
  403. }
  404. .hljs-built_in,
  405. .hljs-builtin-name {
  406. color: #58a6ff !important;
  407. }
  408. .hljs-comment,
  409. .hljs-quote {
  410. color: #969896 !important;
  411. opacity: 0.7;
  412. }
  413. .hljs-keyword,
  414. .hljs-selector-tag,
  415. .hljs-subst {
  416. color: #c9d1d9 !important;
  417. }
  418. .hljs-tag,
  419. .hljs-name,
  420. .hljs-attribute {
  421. color: #58a6ff !important;
  422. }
  423. .hljs-number,
  424. .hljs-literal,
  425. .hljs-variable,
  426. .hljs-template-variable,
  427. .hljs-tag .hljs-attr {
  428. color: #a3e5ff !important;
  429. }
  430. .hljs-string,
  431. .hljs-doctag {
  432. color: #7ee787 !important;
  433. }
  434. .markdown:not(code) h1,
  435. .markdown:not(code) h2,
  436. .markdown:not(code) h3,
  437. .markdown:not(code) h4,
  438. .markdown:not(code) h5,
  439. .markdown:not(code) h6 {
  440. border-bottom: 1px solid #21262d;
  441. }
  442. .markdown:not(code) h1 code,
  443. .markdown:not(code) h2 code,
  444. .markdown:not(code) h3 code,
  445. .markdown:not(code) h4 code,
  446. .markdown:not(code) h5 code,
  447. .markdown:not(code) h6 code {
  448. padding-bottom: 0;
  449. }
  450. .markdown:not(code) h1 code:before,
  451. .markdown:not(code) h2 code:before,
  452. .markdown:not(code) h3 code:before,
  453. .markdown:not(code) h4 code:before,
  454. .markdown:not(code) h5 code:before,
  455. .markdown:not(code) h6 code:before,
  456. .markdown:not(code) h1 code:after,
  457. .markdown:not(code) h2 code:after,
  458. .markdown:not(code) h3 code:after,
  459. .markdown:not(code) h4 code:after,
  460. .markdown:not(code) h5 code:after,
  461. .markdown:not(code) h6 code:after {
  462. display: none;
  463. }
  464. .ui.basic.small.button {
  465. background: #161b22 !important;
  466. }
  467. .linenums>li {
  468. background-color: #161b22;
  469. }
  470. .lines-num>span {
  471. background: #161b22;
  472. }
  473. .ui.blue.button:hover,
  474. .ui.blue.buttons .button:hover {
  475. background-color: #58a6ff;
  476. opacity: 0.6;
  477. }
  478. .repository .diff-file-box .code-diff tbody tr.add-code td {
  479. background-color: rgba(181, 189, 104, 0.1) !important;
  480. }
  481. .ui .info.segment.top {
  482. background-color: #161b22 !important;
  483. }
  484. .tag-code.nl-0.ol-0>.lines-code>pre>code {
  485. color: #fff !important;
  486. }
  487. .repository .diff-file-box .code-diff tbody tr.tag-code td,
  488. .tag-code {
  489. background-color: #31363b !important;
  490. }
  491. .repository .diff-file-box .code-diff tbody tr .removed-code {
  492. background-color: #723b3b;
  493. color: #fff;
  494. }
  495. .repository .diff-file-box .code-diff tbody tr .added-code {
  496. background-color: #148414;
  497. color: #fff;
  498. }
  499. .hljs-title,
  500. .hljs-section,
  501. .hljs-selector-id {
  502. color: #7ee787 !important;
  503. }
  504. .ui.checkbox label,
  505. .ui.checkbox+label {
  506. color: #c9d1d9;
  507. }
  508. .ui.checkbox input:focus~label {
  509. color: #c9d1d9 !important;
  510. }
  511. .ui.red.button,
  512. .ui.red.buttons .button {
  513. background-color: #da3633;
  514. }
  515. .ui.green.button:hover,
  516. .ui.green.buttons .button:hover {
  517. background-color: #238636;
  518. opacity: 0.6;
  519. }
  520. .ui.blue.button,
  521. .ui.blue.buttons .button {
  522. background-color: #1f6feb !important;
  523. }
  524. #repo-clone-https,
  525. #repo-clone-https:hover {
  526. background-color: #21262d !important;
  527. box-shadow: 0 0 0 1px #3c3c3c inset !important;
  528. color: #fff !important;
  529. }
  530. .ui.basic.label {
  531. background-color: #282e38 !important;
  532. border-color: #343434;
  533. color: #c9d1d9;
  534. }
  535. .ui.basic.button {
  536. background-color: #21262d !important;
  537. }
  538. .repository .diff-file-box .code-diff tbody tr.del-code td {
  539. background-color: rgba(204, 102, 102, 0.1) !important;
  540. }
  541. .ui.secondary.pointing.menu a.item:hover {
  542. background-color: #161b22;
  543. color: #c9d1d9 !important;
  544. }
  545. .markdown:not(code) table tr {
  546. background-color: #0d1117;
  547. }
  548. .markdown:not(code) table tr:nth-child(2n) {
  549. background-color: #161b22;
  550. }
  551. .markdown:not(code) table th,
  552. .markdown:not(code) table td {
  553. border: none !important;
  554. }
  555. .markdown:not(code) blockquote {
  556. background-color: #5454541a;
  557. border-left: 4px solid #5a5a5a;
  558. color: #b4b7b4 !important;
  559. }
  560. .markdown:not(code) code,
  561. .markdown:not(code) tt {
  562. background-color: #161b22;
  563. }
  564. /* Issues */
  565. .ui.basic.green.active.button,
  566. .ui.basic.green.buttons .active.button {
  567. box-shadow: 0 0 0 1px #7ee787 inset !important;
  568. color: #7ee787 !important;
  569. }
  570. .ui.basic.button:hover,
  571. .ui.basic.buttons .button:hover {
  572. background: #161b22 !important;
  573. color: #c9d1d9 !important;
  574. }
  575. .ui.basic.red.active.button,
  576. .ui.basic.red.buttons .active.button {
  577. box-shadow: 0 0 0 1px #da3633 inset !important;
  578. color: #da3633 !important;
  579. }
  580. .ui.compact.small.menu {
  581. background: #161b22 !important;
  582. }
  583. .issue.list>.item .title {
  584. color: #c9d1d9;
  585. }
  586. .ui.black.label,
  587. .ui.black.labels .label {
  588. background-color: #161b22 !important;
  589. color: #c9d1d9;
  590. }
  591. .issue.list>.item .desc {
  592. color: #c9d1d9;
  593. opacity: 0.6;
  594. }
  595. .issue.list>.item .title:hover {
  596. color: #c9d1d9;
  597. opacity: 0.6;
  598. }
  599. .repository.view.issue .comment-list .comment .content .header {
  600. background-color: #c9d1d9;
  601. }
  602. .ui .text.grey a {
  603. color: #b4b4b4 !important;
  604. }
  605. .ui.attached.segment {
  606. border: 1px solid #30363d;
  607. }
  608. .ui.warning.message {
  609. background-color: #c9d1d9;
  610. }
  611. .ui.green.label,
  612. .ui.green.labels .label {
  613. background-color: #238636 !important;
  614. border-color: #238636 !important;
  615. color: #fff !important;
  616. }
  617. .ui.green.button,
  618. .ui.green.buttons .button {
  619. background-color: #238636 !important;
  620. color: #fff !important;
  621. }
  622. .ui.basic.red.button,
  623. .ui.basic.red.buttons .button {
  624. box-shadow: 0 0 0 1px #da3633 inset !important;
  625. color: #da3633 !important;
  626. }
  627. .ui.basic.green.button,
  628. .ui.basic.green.buttons .button {
  629. box-shadow: none !important;
  630. color: #fff !important;
  631. }
  632. .ui.red.label,
  633. .ui.red.labels .label {
  634. background-color: #da3633 !important;
  635. border-color: inherit !important;
  636. }
  637. .ui.form textarea {
  638. background: #010409 !important;
  639. }
  640. .ui.basic.green.button:hover,
  641. .ui.basic.green.buttons .button:hover {
  642. box-shadow: 0 0 0 1px #7ee787 inset !important;
  643. color: #7ee787 !important;
  644. }
  645. .ui.tabular.menu {
  646. border-bottom: 1px solid #21262d;
  647. }
  648. .repository.new.issue .comment.form .content:before,
  649. .repository.new.issue .comment.form .content:after {
  650. border-right-color: #161b22;
  651. }
  652. .repository.view.issue .comment-list .comment .content .header:before,
  653. .repository.view.issue .comment-list .comment .content .header:after {
  654. border-right-color: #21262d;
  655. }
  656. .repository .comment.form .content .form:before,
  657. .repository .comment.form .content .form:after {
  658. border-right-color: #161b22;
  659. }
  660. .repository.view.issue .comment-list:before {
  661. background-color: #28313d;
  662. }
  663. .ui.comments .comment .actions a {
  664. color: #c9d1d9;
  665. }
  666. .ui.comments .comment .actions a.active,
  667. .ui.comments .comment .actions a:hover {
  668. color: #c9d1d9;
  669. opacity: 0.6;
  670. }
  671. /* Pull requests */
  672. .ui.header .sub.header {
  673. color: #c9d1d9 !important;
  674. }
  675. .editor-toolbar a {
  676. color: #58a6ff !important;
  677. }
  678. /* Wiki */
  679. .repository.wiki.view .markdown {
  680. background: #161b22;
  681. border-radius: 15px;
  682. margin-left: 0px;
  683. padding: 25px;
  684. }
  685. /* Profile drop down */
  686. .ui.menu .dropdown.item .menu {
  687. background: #c9d1d9;
  688. }
  689. .ui.menu .ui.dropdown .menu>.item:hover,
  690. .ui.menu .ui.dropdown .menu>.selected.item {
  691. background: #b4b7b4;
  692. border-radius: 0;
  693. opacity: 1;
  694. }
  695. .ui.menu .ui.dropdown .menu>.item:first-child:hover,
  696. .ui.menu .ui.dropdown .menu>.selected.item:first-child {
  697. border-radius: .28571429rem .28571429rem 0 0;
  698. }
  699. .ui.menu .ui.dropdown .menu>.item:last-child:hover,
  700. .ui.menu .ui.dropdown .menu>.selected.item:last-child {
  701. border-radius: 0 0 .28571429rem .28571429rem;
  702. }
  703. /* Profile */
  704. .ui.card,
  705. .ui.cards>.card {
  706. background: #161b22;
  707. box-shadow: none;
  708. }
  709. .ui.card>.extra a:not(.ui),
  710. .ui.cards>.card>.extra a:not(.ui) {
  711. color: #58a6ff;
  712. }
  713. .ui.card>.extra,
  714. .ui.cards>.card>.extra {
  715. border-top: 1px solid #161b22 !important;
  716. }
  717. .user.profile .ui.card .extra.content ul li:not(:last-child) {
  718. border-bottom: 1px solid #161b22 !important;
  719. }
  720. .ui.secondary.pointing.menu .active.item {
  721. color: #c9d1d9;
  722. }
  723. /* Settings */
  724. .ui.form .field>label {
  725. color: #c9d1d9;
  726. }
  727. #website {
  728. background: #010409 !important;
  729. color: #c9d1d9;
  730. }
  731. .inline.box.field>label {
  732. color: #c9d1d9 !important;
  733. }
  734. .inline.box.field>input {
  735. background: #161b22;
  736. color: #c9d1d9;
  737. }
  738. #old_password,
  739. #password,
  740. #retype,
  741. #email,
  742. #description {
  743. background: #010409 !important;
  744. color: #c9d1d9;
  745. }
  746. label[for=org_name] {
  747. color: #c9d1d9 !important;
  748. }
  749. .ui.red.message {
  750. color: #da3633;
  751. }
  752. .ui.very.basic.striped.table>thead>tr>th {
  753. color: #c9d1d9;
  754. }
  755. .ui.form .inline.field>label,
  756. .ui.form .inline.field>p,
  757. .ui.form .inline.fields .field>label,
  758. .ui.form .inline.fields .field>p,
  759. .ui.form .inline.fields>label {
  760. color: #c9d1d9;
  761. }
  762. .ui.very.basic.select.selectable.table>thead>tr>th {
  763. color: #c9d1d9;
  764. }
  765. .ui.teal.button,
  766. .ui.teal.buttons .button {
  767. background-color: #8abeb7;
  768. }
  769. .ui.form input[type=file],
  770. .ui.form input[type=number],
  771. .ui.form input[type=url],
  772. .ui.form input[type=password] {
  773. background: #222831;
  774. color: #c9d1d9;
  775. }
  776. .ui.selection.dropdown {
  777. background: #010409 !important;
  778. color: #c9d1d9;
  779. }
  780. .organization.members .list .item {
  781. border-bottom: 1px solid #161b22 !important;
  782. }
  783. .settings .hook.list>.item:not(:first-child) {
  784. border-top: 1px solid #161b22 !important;
  785. }
  786. .settings .key.list .item:not(:first-child) {
  787. border-top: 1px solid #161b22 !important;
  788. }
  789. /* Commit */
  790. .repository .diff-box .file {
  791. color: #969896;
  792. }
  793. .ui.blue.button,
  794. .ui.blue.buttons .button {
  795. background-color: #58a6ff;
  796. color: #fff !important;
  797. }
  798. .ui.basic.grey.button,
  799. .ui.basic.grey.buttons .button {
  800. color: #161b22 !important;
  801. }
  802. .added-code {
  803. background-color: #7ee787;
  804. color: #fff;
  805. }
  806. .removed-code {
  807. background-color: #da3633;
  808. color: #0d1117;
  809. }
  810. .ui.blue.label,
  811. .ui.blue.labels .label {
  812. background-color: #1f6feb !important;
  813. color: #fff !important;
  814. }
  815. .repository .diff-file-box .file-body.file-code .lines-num {
  816. background: none;
  817. }
  818. .hljs-meta {
  819. color: #959595 !important;
  820. }
  821. /* Messages */
  822. .ui.positive.message {
  823. background-color: transparent;
  824. background-image: linear-gradient(rgba(56, 139, 253, 0.15), rgba(56, 139, 253, 0.15));
  825. color: #c9d1d9;
  826. }
  827. .ui.attached.positive.message,
  828. .ui.positive.message {
  829. -webkit-box-shadow: 0 0 0 1px rgba(56, 139, 253, 0.4) inset, 0 0 0 0 transparent;
  830. box-shadow: 0 0 0 1px rgba(56, 139, 253, 0.4) inset, 0 0 0 0 transparent;
  831. }
  832. .ui.warning.message {
  833. background-color: transparent;
  834. background-image: linear-gradient(rgba(187, 128, 9, 0.15), rgba(187, 128, 9, 0.15));
  835. color: #c9d1d9;
  836. }
  837. .ui.attached.warning.message,
  838. .ui.warning.message {
  839. -webkit-box-shadow: 0 0 0 1px rgba(187, 128, 9, 0.4) inset, 0 0 0 0 transparent;
  840. box-shadow: 0 0 0 1px rgba(187, 128, 9, 0.4) inset, 0 0 0 0 transparent;
  841. }
  842. /* Modal dialogs */
  843. .ui.modal,
  844. .ui.modal>.header,
  845. .ui.modal>.content {
  846. background: #0d1117;
  847. }
  848. .ui.modal>.header {
  849. color: #c9d1d9;
  850. }
  851. /* Else */
  852. .ui.danger .item h5 {
  853. margin-bottom: 0;
  854. }
  855. .ui.danger .item p {
  856. font-size: 0.8em;
  857. }
  858. .ui.danger .item .ui.right {
  859. margin-left: 15px;
  860. }
  861. .ui.basic.button:active,
  862. .ui.basic.buttons .button:active,
  863. .ui.basic.button:focus,
  864. .ui.basic.buttons .button:focus {
  865. background: #21262d !important;
  866. color: #fff !important;
  867. }
  868. .markdown:not(code) h1 .octicon-link,
  869. .markdown:not(code) h2 .octicon-link,
  870. .markdown:not(code) h3 .octicon-link,
  871. .markdown:not(code) h4 .octicon-link,
  872. .markdown:not(code) h5 .octicon-link,
  873. .markdown:not(code) h6 .octicon-link {
  874. color: #fff;
  875. }
  876. .editor-toolbar {
  877. border-left: 1px solid #30363d;
  878. border-right: 1px solid #30363d;
  879. border-top: 1px solid #30363d;
  880. }
  881. .CodeMirror-cursor {
  882. border-left: 1px solid #fff;
  883. }
  884. .user.settings .email.list .item:not(:first-child) {
  885. border-top: 1px solid rgba(224, 224, 224, 0.6);
  886. }
  887. .ui.selection.visible.dropdown>.text:not(.default) {
  888. color: #c9d1d9;
  889. }
  890. .ui.selection.dropdown .menu {
  891. min-width: calc(100% + 1px) !important;
  892. width: calc(100% + 1px) !important;
  893. }
  894. .ui.selection.dropdown .menu>.item {
  895. border-top: none;
  896. }
  897. .ui.selection.active.dropdown {
  898. border-color: #363f55 !important;
  899. }
  900. .ui.selection.active.dropdown .menu {
  901. border-color: #363f55 !important;
  902. }
  903. .repository.release #release-list {
  904. border-top: 1px solid #21262d;
  905. }
  906. .ui.menu .item.disabled,
  907. .ui.menu .item.disabled:hover {
  908. color: #4a4f55 !important;
  909. }
  910. .ui.table tr td {
  911. border-top: 1px solid rgb(50, 56, 62);
  912. }
  913. .repository .diff-file-box .file-body.file-code .lines-num-old,
  914. .repository .diff-file-box .code-diff .lines-num {
  915. border-right: 1px solid #4b4b4b;
  916. }
  917. .repository .diff-file-box .code-diff tbody tr.tag-code td {
  918. border-color: #4b4b4b !important;
  919. }
  920. .repository .diff-file-box .code-diff tbody tr.del-code td {
  921. border-color: #6d3030 !important;
  922. }
  923. .repository .diff-file-box .code-diff tbody tr.add-code td {
  924. border-color: #4f6d30 !important;
  925. }
  926. .ui.button:last-child {
  927. margin-right: 0;
  928. }
  929. .item:last-child .ui.label {
  930. margin-right: 0 !important;
  931. }
  932. #file-content {
  933. padding: 0 1px;
  934. }
  935. .ui.label {
  936. background-color: #454a57;
  937. color: #d7d7d7;
  938. }