dark-gogs.dev.css 21 KB

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