_repository.less 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121
  1. .repository {
  2. @mega-octicon-width: 30px;
  3. padding-top: @15;
  4. padding-bottom: @footer-margin * 2;
  5. .head {
  6. .column {
  7. padding-top: @5 !important;
  8. padding-bottom: @5 !important;
  9. }
  10. .ui.compact.menu {
  11. margin-left: 1rem;
  12. }
  13. .ui.header {
  14. margin-top: 0;
  15. }
  16. .mega-octicon {
  17. width: @mega-octicon-width;
  18. font-size: 30px;
  19. }
  20. .ui.huge.breadcrumb {
  21. font-weight: 400;
  22. font-size: 1.7rem;
  23. }
  24. .fork-flag {
  25. margin-left: 50px;
  26. display: block;
  27. font-size: 11px;
  28. white-space: nowrap;
  29. }
  30. .octicon.octicon-repo-forked {
  31. margin-top: -1px;
  32. font-size: @15;
  33. }
  34. }
  35. .navbar {
  36. .ui.label {
  37. margin-left: 7px;
  38. padding: 3px @5;
  39. }
  40. }
  41. .owner.dropdown {
  42. min-width: 40% !important;
  43. }
  44. .metas {
  45. .menu {
  46. max-height: 300px;
  47. overflow-x: auto;
  48. }
  49. .ui.list {
  50. .hide {
  51. display: none!important;
  52. }
  53. .item {
  54. padding: 0px;
  55. }
  56. .label.color {
  57. padding: 0 8px;
  58. margin-right: @5;
  59. }
  60. a {
  61. margin: 2px 0;
  62. .text {
  63. color: #444;
  64. &:hover {
  65. color: #000;
  66. }
  67. }
  68. }
  69. }
  70. }
  71. .header-wrapper {
  72. background-color: #FAFAFA;
  73. margin-top: -@15;
  74. padding-top: @15;
  75. .ui.tabs.divider {
  76. border-bottom: none;
  77. }
  78. .ui.tabular .octicon {
  79. margin-right: @5;
  80. }
  81. }
  82. .filter.menu {
  83. .label.color {
  84. border-radius: 3px;
  85. margin-left: @15;
  86. padding: 0 8px;
  87. }
  88. .octicon {
  89. float: left;
  90. margin-left: -@5;
  91. margin-right: -7px;
  92. width: 16px;
  93. }
  94. .menu {
  95. max-height: 300px;
  96. overflow-x: auto;
  97. right: 0!important;
  98. left: auto!important;
  99. }
  100. .dropdown.item {
  101. margin: 1px;
  102. padding-right: 0;
  103. }
  104. }
  105. .ui.tabs {
  106. &.container {
  107. margin-top: 14px;
  108. margin-bottom: 0px;
  109. .ui.menu {
  110. border-bottom: none;
  111. }
  112. }
  113. &.divider {
  114. margin-top: 0;
  115. margin-bottom: @20;
  116. }
  117. }
  118. #clone-panel {
  119. margin-top: -8px;
  120. margin-left: @5;
  121. width: 360px;
  122. input {
  123. border-radius: 0;
  124. padding: @5 @10;
  125. }
  126. .clone.button {
  127. font-size: 13px;
  128. padding: 0 @5;
  129. &:first-child {
  130. border-radius: .28571429rem 0 0 .28571429rem;
  131. }
  132. }
  133. .icon.button {
  134. padding: 0 @10;
  135. }
  136. .dropdown .menu {
  137. right: 0!important;
  138. left: auto!important;
  139. }
  140. }
  141. &.branches:not(.settings) {
  142. .ui.list {
  143. padding: 0;
  144. >.item {
  145. margin: 0;
  146. line-height: 31px;
  147. &:not(:last-child) {
  148. border-bottom: 1px solid #DDD;
  149. }
  150. .column {
  151. padding: @5 @15;
  152. .octicon {
  153. vertical-align: text-bottom;
  154. }
  155. code {
  156. padding: 4px 0;
  157. font-size: 12px;
  158. }
  159. .ui.text:not(i) {
  160. font-size: 12px;
  161. }
  162. .ui.button {
  163. font-size: 12px;
  164. padding: 8px @10;
  165. }
  166. }
  167. }
  168. }
  169. }
  170. &.file.list {
  171. #repo-desc {
  172. font-size: 1.2em;
  173. }
  174. .choose.reference {
  175. .header .icon {
  176. font-size: 1.4em;
  177. }
  178. }
  179. #file-buttons {
  180. font-weight: normal;
  181. .ui.button {
  182. padding: 8px @10;
  183. font-weight: normal;
  184. }
  185. }
  186. #git-stats {
  187. padding: @10;
  188. line-height: 0;
  189. .list {
  190. width: 100%;
  191. .item {
  192. margin-left: 0;
  193. width: 33.33%;
  194. .text b {
  195. font-size: @15;
  196. }
  197. }
  198. }
  199. }
  200. #repo-files-table {
  201. thead {
  202. th {
  203. padding-top: 8px;
  204. padding-bottom: @5;
  205. font-weight: normal;
  206. &:first-child {
  207. display: block;
  208. position: relative;
  209. width: 325%;
  210. }
  211. }
  212. .ui.avatar {
  213. margin-bottom: @5;
  214. }
  215. }
  216. tbody {
  217. .octicon {
  218. margin-left: 3px;
  219. margin-right: @5;
  220. color: #777;
  221. &.octicon-mail-reply {
  222. margin-right: @10;
  223. }
  224. &.octicon-file-directory, &.octicon-file-submodule {
  225. color: #1e70bf;
  226. }
  227. }
  228. }
  229. td {
  230. padding-top: 9px;
  231. padding-bottom: 9px;
  232. }
  233. tr:hover {
  234. background-color: #ffffEE;
  235. }
  236. }
  237. #file-content {
  238. .header {
  239. .octicon {
  240. padding-right: @5;
  241. }
  242. .icon {
  243. font-size: 1em;
  244. margin-top: -2px;
  245. }
  246. .file-actions {
  247. padding-left: @20;
  248. .btn-octicon {
  249. display: inline-block;
  250. padding: @5;
  251. margin-left: @5;
  252. line-height: 1;
  253. color: #767676;
  254. vertical-align: middle;
  255. background: transparent;
  256. border: 0;
  257. outline: none;
  258. }
  259. .btn-octicon:hover {
  260. color: #4078c0;
  261. }
  262. .btn-octicon-danger:hover {
  263. color: #bd2c00;
  264. }
  265. .btn-octicon.disabled {
  266. color: #bbb;
  267. cursor: default;
  268. }
  269. #delete-file-form {
  270. display: inline-block;
  271. }
  272. }
  273. }
  274. .view-raw {
  275. padding: @5;
  276. * {
  277. max-width: 100%;
  278. }
  279. img {
  280. margin-bottom: -@5;
  281. }
  282. }
  283. #ipython-notebook {
  284. margin-left: 95px;
  285. padding-top: 1px;
  286. .nb-notebook {
  287. line-height: 1.5;
  288. }
  289. .nb-stdout, .nb-stderr {
  290. white-space: pre-wrap;
  291. margin: 1em 0;
  292. padding: 0.1em 0.5em;
  293. }
  294. .nb-stderr {
  295. background-color: #FAA;
  296. }
  297. .nb-cell + .nb-cell {
  298. margin-top: 0.5em;
  299. }
  300. .nb-cell {
  301. position: relative;
  302. &.nb-heading-cell {
  303. margin-top: 0.5em;
  304. }
  305. img {
  306. max-width: 100%;
  307. }
  308. }
  309. .nb-raw-cell {
  310. white-space: pre-wrap;
  311. background-color: #f5f2f0;
  312. font-family: Consolas, Monaco, 'Andale Mono', monospace;
  313. padding: 1em;
  314. margin: .5em 0;
  315. }
  316. .nb-input:before,
  317. .nb-output:before {
  318. position: absolute;
  319. font-family: monospace;
  320. color: #999;
  321. left: -7.5em;
  322. width: 7em;
  323. text-align: right;
  324. }
  325. .nb-input {
  326. &:before {
  327. content: "In [" attr(data-prompt-number) "]:";
  328. }
  329. pre {
  330. background-color: #f7f7f7;
  331. margin-right: @10;
  332. padding: @5 @10;
  333. code {
  334. min-height: 18px;
  335. line-height: 18px;
  336. font-size: 14px;
  337. }
  338. }
  339. }
  340. .nb-output{
  341. &:before {
  342. content: "Out [" attr(data-prompt-number) "]:";
  343. }
  344. pre {
  345. padding: @5 @10;
  346. font-size: 14px;
  347. }
  348. img {
  349. max-width: 100%;
  350. }
  351. table {
  352. border: 1px solid #000;
  353. border-collapse: collapse;
  354. }
  355. th {
  356. font-weight: bold;
  357. }
  358. th,
  359. td {
  360. border: 1px solid #000;
  361. padding: 0.25em;
  362. text-align: left;
  363. vertical-align: middle;
  364. border-collapse: collapse;
  365. }
  366. }
  367. .nb-markdown-cell {
  368. margin-top: @10;
  369. margin-right: @10;
  370. padding: @10;
  371. }
  372. // Fix pandas dataframe formatting
  373. div[style="max-height:1000px;max-width:1500px;overflow:auto;"] {
  374. max-height: none !important;
  375. }
  376. }
  377. .plain-text {
  378. font-size: 14px;
  379. padding: @15 @15 @10 @15;
  380. font-family: Consolas;
  381. }
  382. .code-view {
  383. * {
  384. font-size: 12px;
  385. font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  386. line-height: @20;
  387. }
  388. table {
  389. width: 100%;
  390. tbody {
  391. tr {
  392. padding: 0 !important;
  393. }
  394. }
  395. }
  396. .lines-num {
  397. vertical-align: top;
  398. text-align: right;
  399. color: #999;
  400. background: #f5f5f5;
  401. width: 42px;
  402. span {
  403. line-height: @20;
  404. padding: 0 @10;
  405. cursor: pointer;
  406. display: block;
  407. }
  408. }
  409. .lines-num,
  410. .lines-code {
  411. display: table-cell !important;
  412. padding: 0 !important;
  413. padding-left: 5px !important;
  414. pre,
  415. ol,
  416. .hljs {
  417. background-color: white;
  418. margin: 0;
  419. padding: 0 !important;
  420. li {
  421. display: inline-block;
  422. width: 100%;
  423. &.active {
  424. background: #ffffdd;
  425. }
  426. &:before {
  427. content: ' ';
  428. }
  429. }
  430. }
  431. }
  432. }
  433. }
  434. .sidebar {
  435. padding-left: 0;
  436. .octicon {
  437. width: 16px;
  438. }
  439. }
  440. }
  441. &.file.editor {
  442. .treepath {
  443. width: 100%;
  444. input {
  445. vertical-align: middle;
  446. box-shadow: rgba(0, 0, 0, 0.0745098) 0px 1px 2px inset;
  447. width: inherit;
  448. padding: 7px 8px;
  449. margin-right: @5;
  450. }
  451. }
  452. .tabular.menu {
  453. .octicon {
  454. margin-right: @5;
  455. }
  456. }
  457. .commit-form-wrapper {
  458. padding-left: 64px;
  459. .commit-avatar {
  460. float: left;
  461. margin-left: -64px;
  462. width: 3em;
  463. height: auto;
  464. }
  465. .commit-form {
  466. position: relative;
  467. padding: @15;
  468. margin-bottom: @10;
  469. border: 1px solid #ddd;
  470. border-radius: 3px;
  471. #avatar-arrow;
  472. &:after {
  473. border-right-color: @white;
  474. }
  475. .quick-pull-choice {
  476. .branch-name {
  477. display: inline-block;
  478. padding: 3px 6px;
  479. font: 12px Consolas, "Liberation Mono", Menlo, Courier, monospace;
  480. color: rgba(0,0,0,0.65);
  481. background-color: rgba(209,227,237,0.45);
  482. border-radius: 3px;
  483. }
  484. .new-branch-name-input {
  485. position: relative;
  486. margin-left: 25px;
  487. input {
  488. width: 240px !important;
  489. padding-left: 26px !important;
  490. }
  491. }
  492. .octicon-git-branch {
  493. position: absolute;
  494. top: 9px;
  495. left: @10;
  496. color: #b0c4ce;
  497. }
  498. }
  499. }
  500. }
  501. }
  502. &.options {
  503. #interval {
  504. width: 100px!important;
  505. min-width: 100px;
  506. }
  507. .danger {
  508. .item {
  509. padding: @20 @15;
  510. }
  511. .ui.divider {
  512. margin: 0;
  513. }
  514. }
  515. }
  516. @comment-avatar-width: 3em;
  517. &.new.issue {
  518. .comment.form {
  519. .comment {
  520. .avatar {
  521. width: @comment-avatar-width;
  522. }
  523. }
  524. .content {
  525. margin-left: 4em;
  526. #avatar-arrow;
  527. &:after {
  528. border-right-color: @white;
  529. }
  530. .markdown {
  531. font-size: 14px;
  532. }
  533. }
  534. .metas {
  535. min-width: 220px;
  536. .filter.menu {
  537. max-height: 300px;
  538. overflow-x: auto;
  539. }
  540. }
  541. }
  542. }
  543. &.view.issue {
  544. .title {
  545. padding-bottom: 0!important;
  546. h1 {
  547. font-weight: 300;
  548. font-size: 2.3rem;
  549. margin-bottom: @5;
  550. .ui.input {
  551. font-size: 0.5em;
  552. vertical-align: top;
  553. width: 50%;
  554. min-width: 600px;
  555. input {
  556. font-size: 1.5em;
  557. padding: 6px @10;
  558. }
  559. }
  560. }
  561. .index {
  562. font-weight: 300;
  563. color: #aaa;
  564. letter-spacing: -1px;
  565. }
  566. .label {
  567. margin-right: @10;
  568. }
  569. .edit-zone {
  570. margin-top: @10;
  571. }
  572. }
  573. .pull-desc {
  574. code {
  575. color: #0166E6;
  576. }
  577. }
  578. .pull {
  579. &.tabular.menu {
  580. margin-bottom: @10;
  581. .octicon {
  582. margin-right: @5;
  583. }
  584. }
  585. &.tab.segment {
  586. border: none;
  587. padding: 0;
  588. padding-top: @10;
  589. box-shadow: none;
  590. background-color: inherit;
  591. }
  592. .merge.box {
  593. .avatar {
  594. margin-left: @10;
  595. margin-top: @10;
  596. }
  597. #commit_description {
  598. height: auto;
  599. }
  600. }
  601. }
  602. .comment-list {
  603. &:before {
  604. display: block;
  605. content: "";
  606. position: absolute;
  607. margin-top: 12px;
  608. margin-bottom: 14px;
  609. top: 0;
  610. bottom: 0;
  611. left: 96px;
  612. width: 2px;
  613. background-color: #f3f3f3;
  614. z-index: -1;
  615. }
  616. .comment {
  617. .avatar {
  618. width: @comment-avatar-width;
  619. }
  620. .tag {
  621. color: #767676;
  622. margin-top: 3px;
  623. padding: 2px @5;
  624. font-size: 12px;
  625. border: 1px solid rgba(0,0,0,0.1);
  626. border-radius: 3px;
  627. }
  628. .actions {
  629. .item {
  630. float: left;
  631. &.tag {
  632. margin-right: @5;
  633. }
  634. &.action {
  635. margin-top: 6px;
  636. margin-left: @10;
  637. }
  638. }
  639. }
  640. .content {
  641. margin-left: 4em;
  642. .header {
  643. #avatar-arrow;
  644. font-weight: normal;
  645. padding: auto @15;
  646. position: relative;
  647. color: #767676;
  648. background-color: #f7f7f7;
  649. border-bottom: 1px solid #eee;
  650. border-top-left-radius: 3px;
  651. border-top-right-radius: 3px;
  652. .text {
  653. max-width: 78%;
  654. padding-top: @10;
  655. padding-bottom: @10;
  656. }
  657. }
  658. .markdown {
  659. font-size: 14px;
  660. }
  661. .no-content {
  662. color: #767676;
  663. font-style: italic;
  664. }
  665. > .bottom.segment {
  666. background: #f3f4f5;
  667. .ui.images::after {
  668. clear: both;
  669. content: ' ';
  670. display: block;
  671. }
  672. a {
  673. display: block;
  674. float: left;
  675. margin: @5;
  676. padding: @5;
  677. height: 150px;
  678. border: solid 1px #eee;
  679. border-radius: 3px;
  680. max-width: 150px;
  681. background-color: @white;
  682. &:before {
  683. content:' ';
  684. display: inline-block;
  685. height: 100%;
  686. vertical-align: middle;
  687. }
  688. }
  689. .ui.image {
  690. max-height: 100%;
  691. width: auto;
  692. margin: 0;
  693. vertical-align: middle;
  694. }
  695. span.ui.image {
  696. font-size: 8vw;
  697. color: #000000;
  698. }
  699. span.ui.image:hover {
  700. color: #000000;
  701. }
  702. }
  703. }
  704. .ui.form {
  705. .field:first-child {
  706. clear: none;
  707. }
  708. .tab.segment {
  709. border: none;
  710. padding: 0;
  711. padding-top: @10;
  712. }
  713. textarea {
  714. height: 200px;
  715. font-family: "Consolas", monospace;
  716. }
  717. }
  718. .edit.buttons {
  719. margin-top: @10;
  720. }
  721. }
  722. .event {
  723. position: relative;
  724. margin: @15 0 @15 79px;
  725. padding-left: 25px;
  726. .octicon {
  727. width: 30px;
  728. float: left;
  729. text-align: center;
  730. &.octicon-circle-slash {
  731. margin-top: @5;
  732. margin-left: -34.5px;
  733. font-size: @20;
  734. background: @white;
  735. color: #bd2c00;
  736. }
  737. &.octicon-primitive-dot {
  738. margin-left: -30.5px;
  739. margin-right: -1px;
  740. margin-top: -5px;
  741. font-size: 38px;
  742. color: #6cc644;
  743. }
  744. &.octicon-bookmark {
  745. margin-top: 3px;
  746. margin-left: -31px;
  747. margin-right: -1px;
  748. font-size: 25px;
  749. }
  750. }
  751. .detail {
  752. font-size: 0.9rem;
  753. margin-top: @5;
  754. margin-left: 35px;
  755. .octicon {
  756. &.octicon-git-commit {
  757. margin-top: 2px;
  758. }
  759. }
  760. }
  761. }
  762. }
  763. .ui.segment.metas {
  764. margin-top: -3px;
  765. }
  766. .ui.participants {
  767. img {
  768. margin-top: @5;
  769. margin-right: @5;
  770. }
  771. }
  772. }
  773. .comment.form {
  774. .ui.comments {
  775. margin-top: -12px;
  776. max-width: 100%;
  777. }
  778. .content {
  779. .field:first-child {
  780. clear: none;
  781. }
  782. .form {
  783. #avatar-arrow;
  784. &:after {
  785. border-right-color: @white;
  786. }
  787. }
  788. .tab.segment {
  789. border: none;
  790. padding: 0;
  791. padding-top: @10;
  792. }
  793. textarea {
  794. height: 200px;
  795. font-family: "Consolas", monospace;
  796. }
  797. }
  798. }
  799. .label.list {
  800. list-style: none;
  801. padding-top: @15;
  802. >.item {
  803. padding-top: @10;
  804. padding-bottom: @10;
  805. border-bottom: 1px dashed #AAA;
  806. a {
  807. font-size: @15;
  808. padding-top: @5;
  809. padding-right: @10;
  810. color: #666;
  811. &:hover {
  812. color: #000;
  813. }
  814. &.open-issues {
  815. margin-right: 30px;
  816. }
  817. }
  818. .ui.label {
  819. font-size: 1em;
  820. }
  821. }
  822. }
  823. .milestone.list {
  824. list-style: none;
  825. padding-top: @15;
  826. > .item {
  827. padding-top: @10;
  828. padding-bottom: @10;
  829. border-bottom: 1px dashed #AAA;
  830. > a {
  831. padding-top: @5;
  832. padding-right: @10;
  833. color: #000;
  834. &:hover {
  835. color: #4078c0;
  836. }
  837. }
  838. .ui.progress {
  839. width: 40%;
  840. padding: 0;
  841. border: 0;
  842. margin: 0;
  843. .bar {
  844. height: 13px;
  845. }
  846. }
  847. .meta {
  848. color: #999;
  849. padding-top: @5;
  850. .issue-stats .octicon{
  851. padding-left: @5;
  852. }
  853. .overdue {
  854. color: red;
  855. }
  856. }
  857. .operate {
  858. margin-top: -@15;
  859. > a {
  860. font-size: @15;
  861. padding-top: @5;
  862. padding-right: @10;
  863. color: #666;
  864. &:hover {
  865. color: #000;
  866. }
  867. }
  868. }
  869. .content {
  870. padding-top: @10;
  871. }
  872. }
  873. }
  874. &.new.milestone {
  875. textarea {
  876. height: 200px;
  877. }
  878. #deadline {
  879. width: 150px;
  880. }
  881. }
  882. &.compare.pull {
  883. .choose.branch {
  884. .octicon {
  885. padding-right: @10;
  886. }
  887. }
  888. .comment.form {
  889. .content {
  890. #avatar-arrow;
  891. &:after {
  892. border-right-color: @white;
  893. }
  894. }
  895. }
  896. }
  897. .filter.dropdown .menu {
  898. margin-top: 1px!important;
  899. }
  900. &.commits {
  901. .header {
  902. .ui.right {
  903. .search {
  904. input {
  905. font-weight: normal;
  906. padding: @5 @10;
  907. }
  908. }
  909. }
  910. }
  911. }
  912. #commits-table {
  913. thead {
  914. th:first-of-type {
  915. padding-left: @15;
  916. }
  917. .sha {
  918. font-size: 13px;
  919. padding: 4px 40px 4px 35px;
  920. }
  921. }
  922. &.ui.basic.striped.table tbody tr:nth-child(2n) {
  923. background-color: rgba(0, 0, 0, .02)!important;
  924. }
  925. }
  926. .diff-detail-box {
  927. margin: @15 0;
  928. line-height: 30px;
  929. ol {
  930. clear: both;
  931. padding-left: 0;
  932. margin-top: @5;
  933. margin-bottom: 28px;
  934. li {
  935. list-style: none;
  936. padding-bottom: 4px;
  937. margin-bottom: 4px;
  938. border-bottom: 1px dashed #DDD;
  939. padding-left: 6px;
  940. }
  941. }
  942. span.status{
  943. display: inline-block;
  944. width: 12px;
  945. height: 12px;
  946. margin-right: 8px;
  947. vertical-align: middle;
  948. &.modify {
  949. background-color: #f0db88;
  950. }
  951. &.add {
  952. background-color: #b4e2b4;
  953. }
  954. &.del {
  955. background-color: #e9aeae;
  956. }
  957. &.rename {
  958. background-color: #dad8ff;
  959. }
  960. }
  961. }
  962. .diff-box {
  963. .count {
  964. margin-right: 12px;
  965. font-size: 13px;
  966. .bar {
  967. background-color: #bd2c00;
  968. height: 12px;
  969. width: 40px;
  970. display: inline-block;
  971. margin: 2px 4px 0 4px;
  972. vertical-align: text-top;
  973. .add {
  974. background-color: #55a532;
  975. height: 12px;
  976. }
  977. }
  978. }
  979. .file {
  980. color: #888;
  981. }
  982. }
  983. .diff-file-box {
  984. .header {
  985. background-color: #f7f7f7;
  986. }
  987. .file-body.file-code {
  988. .lines-num {
  989. text-align: right;
  990. color: #A7A7A7;
  991. background: #fafafa;
  992. width: 1%;
  993. span.fold {
  994. display: block;
  995. text-align: center;
  996. }
  997. }
  998. .lines-num-old {
  999. border-right: 1px solid #DDD;
  1000. }
  1001. }
  1002. .code-diff {
  1003. font-size: 12px;
  1004. td {
  1005. padding: 0;
  1006. padding-left: @10;
  1007. border-top: none;
  1008. }
  1009. pre {
  1010. margin: 0;
  1011. }
  1012. .lines-num {
  1013. border-right: 1px solid #d4d4d5;
  1014. padding: 0 @5;
  1015. user-select: none;
  1016. &::before {
  1017. content: attr(data-line-number);
  1018. }
  1019. &.lines-num-old, &.lines-num-new {
  1020. cursor: pointer;
  1021. &:hover {
  1022. color: #383636;
  1023. }
  1024. }
  1025. }
  1026. tbody {
  1027. tr {
  1028. &.tag-code {
  1029. td {
  1030. background-color: #F0F0F0 !important;
  1031. border-color: #D2CECE!important;
  1032. padding-top: 4px;
  1033. padding-bottom: 4px;
  1034. }
  1035. td.halfwidth {
  1036. width: 50%;
  1037. }
  1038. }
  1039. &.same-code {
  1040. td.active {
  1041. background-color: #ffffdd !important;
  1042. }
  1043. }
  1044. &.del-code {
  1045. // Duplicate here to enforce add code color.
  1046. td.add-code {
  1047. background-color: #eaffea !important;
  1048. border-color: #c1e9c1 !important;
  1049. pre {
  1050. background-color: #eaffea !important;
  1051. border-color: #c1e9c1 !important;
  1052. }
  1053. }
  1054. td {
  1055. background-color: #ffecec !important;
  1056. border-color: #f1c0c0 !important;
  1057. }
  1058. td.active {
  1059. background-color: #ffffdd !important;
  1060. }
  1061. td.halfwidth {
  1062. width: 50%;
  1063. }
  1064. }
  1065. &.add-code {
  1066. td {
  1067. background-color: #eaffea !important;
  1068. border-color: #c1e9c1 !important;
  1069. }
  1070. td.halfwidth {
  1071. width: 50%;
  1072. }
  1073. td.active {
  1074. background-color: #ffffdd !important;
  1075. }
  1076. }
  1077. .removed-code {
  1078. background-color: #ff9999;
  1079. }
  1080. .added-code {
  1081. background-color: #99ff99;
  1082. }
  1083. }
  1084. }
  1085. }
  1086. &.file-content {
  1087. img {
  1088. max-width: 100%;
  1089. padding: @5 @5 0 @5;
  1090. }
  1091. }
  1092. }
  1093. .code-view {
  1094. overflow: auto;
  1095. overflow-x: auto;
  1096. overflow-y: hidden;
  1097. table {
  1098. width: 100%;
  1099. border-spacing: 0;
  1100. }
  1101. }
  1102. &.quickstart {
  1103. .guide {
  1104. .item {
  1105. padding: 1em;
  1106. small {
  1107. font-weight: normal;
  1108. }
  1109. }
  1110. .clone.button:first-child {
  1111. border-radius: .28571429rem 0 0 .28571429rem;
  1112. }
  1113. .ui.action.small.input {
  1114. width: 100%;
  1115. }
  1116. #repo-clone-url {
  1117. border-radius: 0;
  1118. padding: @5 @10;
  1119. font-size: 1.2em;
  1120. &:focus {
  1121. border-radius: 0;
  1122. padding: @5 @10;
  1123. font-size: 1.2em;
  1124. }
  1125. }
  1126. }
  1127. }
  1128. &.release {
  1129. #release-list {
  1130. border-top: 1px solid #DDD;
  1131. margin-top: @20;
  1132. padding-top: @15;
  1133. >li {
  1134. list-style: none;
  1135. .meta,
  1136. .detail {
  1137. padding-top: 30px;
  1138. padding-bottom: 40px;
  1139. }
  1140. .meta {
  1141. text-align: right;
  1142. position: relative;
  1143. .tag:not(.icon) {
  1144. display: block;
  1145. margin-top: 6px;
  1146. }
  1147. .commit {
  1148. display: block;
  1149. margin-top: 6px;
  1150. }
  1151. }
  1152. .detail {
  1153. border-left: 1px solid #DDD;
  1154. .author {
  1155. img {
  1156. margin-bottom: -3px;
  1157. }
  1158. }
  1159. .download {
  1160. margin-top: @20;
  1161. >a {
  1162. .octicon {
  1163. margin-left: @5;
  1164. margin-right: @5;
  1165. }
  1166. }
  1167. .list {
  1168. padding-left: 0;
  1169. border-top: 1px solid #eee;
  1170. li {
  1171. list-style: none;
  1172. display: block;
  1173. padding-top: 8px;
  1174. padding-bottom: 8px;
  1175. border-bottom: 1px solid #eee;
  1176. }
  1177. }
  1178. }
  1179. .dot {
  1180. width: 9px;
  1181. height: 9px;
  1182. background-color: #ccc;
  1183. z-index: 999;
  1184. position: absolute;
  1185. display: block;
  1186. left: -@5;
  1187. top: 40px;
  1188. border-radius: 6px;
  1189. border: 1px solid #FFF;
  1190. }
  1191. }
  1192. }
  1193. }
  1194. }
  1195. &.new.release {
  1196. .target {
  1197. min-width: 500px;
  1198. #tag-name {
  1199. margin-top: -4px;
  1200. }
  1201. .at {
  1202. margin-left: -@5;
  1203. margin-right: @5;
  1204. }
  1205. .dropdown.icon {
  1206. margin: 0;
  1207. padding-top: 3px;
  1208. }
  1209. .selection.dropdown {
  1210. padding-top: @10;
  1211. padding-bottom: @10;
  1212. }
  1213. }
  1214. .prerelease.field {
  1215. margin-bottom: 0;
  1216. }
  1217. }
  1218. &.forks {
  1219. .list {
  1220. margin-top: 0;
  1221. .item {
  1222. padding-top: @10;
  1223. padding-bottom: @10;
  1224. border-bottom: 1px solid #DDD;
  1225. .ui.avatar {
  1226. float: left;
  1227. margin-right: @5;
  1228. }
  1229. .link {
  1230. padding-top: @5;
  1231. }
  1232. }
  1233. }
  1234. }
  1235. &.wiki {
  1236. &.start {
  1237. .ui.segment {
  1238. padding-top: 70px;
  1239. padding-bottom: 100px;
  1240. .mega-octicon {
  1241. font-size: 48px;
  1242. }
  1243. }
  1244. }
  1245. &.new {
  1246. .CodeMirror {
  1247. .CodeMirror-code {
  1248. font-family: "Consolas", monospace;
  1249. .cm-comment {
  1250. background: inherit;
  1251. }
  1252. }
  1253. }
  1254. .editor-preview {
  1255. background-color: white;
  1256. }
  1257. }
  1258. &.view {
  1259. .choose.page {
  1260. margin-top: -@5;
  1261. }
  1262. .ui.sub.header {
  1263. text-transform: none;
  1264. }
  1265. .markdown {
  1266. padding-left: 25px;
  1267. margin-left: -25px;
  1268. h1, h2, h3, h4, h5, h6 {
  1269. &:first-of-type {
  1270. margin-top: 0;
  1271. }
  1272. }
  1273. }
  1274. }
  1275. &.timestamp {
  1276. font-size: 12px !important;
  1277. margin-top: 7px !important;
  1278. }
  1279. }
  1280. &.settings {
  1281. &.collaboration {
  1282. .collaborator.list {
  1283. padding: 0;
  1284. >.item {
  1285. margin: 0;
  1286. line-height: 2em;
  1287. &:not(:last-child) {
  1288. border-bottom: 1px solid #DDD;
  1289. }
  1290. }
  1291. }
  1292. #repo-collab-form {
  1293. #search-user-box {
  1294. .results {
  1295. left: 7px;
  1296. }
  1297. }
  1298. .ui.button {
  1299. margin-left: @5;
  1300. margin-top: -3px;
  1301. }
  1302. }
  1303. }
  1304. &.settings.branches {
  1305. .protected-branches {
  1306. .selection.dropdown {
  1307. width: 300px;
  1308. }
  1309. .item {
  1310. border: 1px solid #eaeaea;
  1311. padding: @10 @15;
  1312. &:not(:last-child) {
  1313. border-bottom: 0;
  1314. }
  1315. }
  1316. }
  1317. .branch-protection {
  1318. .help {
  1319. margin-left: 26px;
  1320. padding-top: 0;
  1321. }
  1322. .fields {
  1323. margin-left: @20;
  1324. display: block;
  1325. }
  1326. .whitelist {
  1327. margin-left: 26px;
  1328. .dropdown img {
  1329. display: inline-block;
  1330. }
  1331. }
  1332. }
  1333. }
  1334. &.webhooks {
  1335. .types {
  1336. .menu .item {
  1337. padding: @10 !important;
  1338. }
  1339. }
  1340. .logo.item img {
  1341. margin-top: -4px;
  1342. }
  1343. }
  1344. &.webhook {
  1345. .text.desc {
  1346. margin-top: @5;
  1347. }
  1348. .events {
  1349. .column {
  1350. padding-bottom: 0;
  1351. }
  1352. .help {
  1353. font-size: 13px;
  1354. margin-left: 26px;
  1355. padding-top: 0;
  1356. }
  1357. }
  1358. }
  1359. }
  1360. }
  1361. // End of .repository
  1362. // Should apply organization webhooks page
  1363. .webhook .hook.history.list {
  1364. .right.menu {
  1365. .redelivery.button {
  1366. font-size: 12px;
  1367. margin-top: 6px;
  1368. height: 30px;
  1369. .octicon {
  1370. font: normal normal normal 13px/1 Octicons;
  1371. width: 12px;
  1372. }
  1373. }
  1374. }
  1375. }
  1376. &.user-cards {
  1377. .list {
  1378. padding: 0;
  1379. .item {
  1380. list-style: none;
  1381. width: 32%;
  1382. margin: @10 @10 @10 0;
  1383. padding-bottom: 14px;
  1384. float: left;
  1385. .avatar {
  1386. width: 48px;
  1387. height: 48px;
  1388. float: left;
  1389. display: block;
  1390. margin-right: @10;
  1391. }
  1392. .name {
  1393. margin-top: 0;
  1394. margin-bottom: 0;
  1395. font-weight: normal;
  1396. }
  1397. .meta {
  1398. margin-top: @5;
  1399. }
  1400. }
  1401. }
  1402. }
  1403. #search-repo-box,
  1404. #search-user-box {
  1405. .results {
  1406. padding: 0;
  1407. position: absolute;
  1408. .item {
  1409. padding: @10 @15;
  1410. border-bottom: 1px solid #DDD;
  1411. cursor: pointer;
  1412. &:hover {
  1413. background: rgba(0,0,0,.05)!important;
  1414. color: rgba(0,0,0,.95)!important;
  1415. }
  1416. img {
  1417. margin-right: 8px;
  1418. }
  1419. }
  1420. }
  1421. }
  1422. .issue.list {
  1423. list-style: none;
  1424. padding-top: @15;
  1425. >.item {
  1426. padding-top: @15;
  1427. padding-bottom: @10;
  1428. border-bottom: 1px dashed #AAA;
  1429. .title {
  1430. color: #444;
  1431. font-size: @15;
  1432. font-weight: bold;
  1433. margin: 0 6px;
  1434. &:hover {
  1435. color: #000;
  1436. }
  1437. }
  1438. .comment {
  1439. padding-right: @10;
  1440. color: #666;
  1441. }
  1442. .desc {
  1443. padding-top: @5;
  1444. color: #999;
  1445. a.milestone {
  1446. padding-left: @5;
  1447. color: #999!important;
  1448. &:hover {
  1449. color: #000!important;
  1450. }
  1451. }
  1452. .assignee {
  1453. margin-top: -@5;
  1454. margin-right: @5;
  1455. }
  1456. }
  1457. }
  1458. }
  1459. .issue-search {
  1460. padding: 8px !important;
  1461. }
  1462. .page.buttons {
  1463. padding-top: @15;
  1464. }
  1465. .ui.form {
  1466. .dropzone {
  1467. width: 100%;
  1468. margin-bottom: @10;
  1469. border: 2px dashed #0087F7;
  1470. box-shadow: none!important;
  1471. .dz-error-message {
  1472. top: 140px;
  1473. }
  1474. }
  1475. }
  1476. .settings {
  1477. .content {
  1478. margin-top: 2px;
  1479. }
  1480. .key.list {
  1481. .item:not(:first-child) {
  1482. border-top: 1px solid #eaeaea;
  1483. }
  1484. .ssh-key-state-indicator {
  1485. float: left;
  1486. color: gray;
  1487. padding-left: @10;
  1488. padding-top: @10;
  1489. &.active {
  1490. color: #6cc644;
  1491. }
  1492. }
  1493. .meta {
  1494. padding-top: @5;
  1495. }
  1496. .print {
  1497. color: #767676;
  1498. }
  1499. .activity {
  1500. color: #666;
  1501. }
  1502. }
  1503. .hook.list {
  1504. > .item:not(:first-child) {
  1505. border-top: 1px solid #eaeaea;
  1506. }
  1507. .item {
  1508. padding: @10 @20;
  1509. .octicon,
  1510. .fa {
  1511. width: @20;
  1512. text-align: center;
  1513. }
  1514. a {
  1515. .dont-break-out;
  1516. }
  1517. }
  1518. }
  1519. .hook.history.list {
  1520. .item {
  1521. padding-left: 13px;
  1522. .meta {
  1523. .ui.right {
  1524. margin-top: @5;
  1525. .time {
  1526. font-size: 12px;
  1527. }
  1528. }
  1529. }
  1530. .info {
  1531. margin-top: @10;
  1532. .tabular.menu {
  1533. .item {
  1534. font-weight: 500;
  1535. }
  1536. }
  1537. .tab.segment {
  1538. border: none;
  1539. padding: 0;
  1540. padding-top: @10;
  1541. box-shadow: none;
  1542. > * {
  1543. color: #666;
  1544. }
  1545. pre {
  1546. word-wrap: break-word;
  1547. .hljs {
  1548. padding: 0;
  1549. background-color: inherit;
  1550. }
  1551. }
  1552. }
  1553. }
  1554. }
  1555. }
  1556. }
  1557. .ui.vertical.menu {
  1558. .header.item {
  1559. font-size: 1.1em;
  1560. background: #f0f0f0;
  1561. }
  1562. }
  1563. .edit-label.modal,
  1564. .new-label.segment {
  1565. .form {
  1566. .column {
  1567. padding-right: 0;
  1568. }
  1569. .buttons {
  1570. margin-left: auto;
  1571. padding-top: @15;
  1572. }
  1573. .color.picker.column {
  1574. width: auto;
  1575. .color-picker {
  1576. height: 35px;
  1577. width: auto;
  1578. padding-left: 30px;
  1579. }
  1580. }
  1581. .minicolors-swatch.minicolors-sprite {
  1582. top: @10;
  1583. left: @10;
  1584. width: @15;
  1585. height: @15;
  1586. }
  1587. .precolors {
  1588. padding-left: 0;
  1589. padding-right: 0;
  1590. margin: 3px @10 auto @10;
  1591. width: 120px;
  1592. .color {
  1593. float: left;
  1594. width: @15;
  1595. height: @15;
  1596. }
  1597. }
  1598. }
  1599. }
  1600. #avatar-arrow {
  1601. &:before, &:after {
  1602. right: 100%;
  1603. top: @20;
  1604. border: solid transparent;
  1605. content: " ";
  1606. height: 0;
  1607. width: 0;
  1608. position: absolute;
  1609. pointer-events: none;
  1610. }
  1611. &:before {
  1612. border-right-color: #D4D4D5;
  1613. border-width: 9px;
  1614. margin-top: -9px;
  1615. }
  1616. &:after {
  1617. border-right-color: #f7f7f7;
  1618. border-width: 8px;
  1619. margin-top: -8px;
  1620. }
  1621. }
  1622. #transfer-repo-modal,
  1623. #delete-repo-modal {
  1624. .ui.message {
  1625. width: 100%!important;
  1626. }
  1627. }
  1628. // generate .tab-size-{i} from 1 to 16
  1629. .generate-tab-size(16);
  1630. .generate-tab-size(@n, @i: 1) when (@i =< @n) {
  1631. .tab-size-@{i} {
  1632. tab-size: @i !important;
  1633. -moz-tab-size: @i !important;
  1634. }
  1635. .generate-tab-size(@n, (@i + 1));
  1636. }
  1637. .repo-table-font {
  1638. font-size: @15 !important;
  1639. line-height: 1.5;
  1640. }
  1641. .md-helper {
  1642. display: inline-block;
  1643. padding-top: @15;
  1644. margin-left: @10;
  1645. font-size: 12px;
  1646. color: #586069;
  1647. float: left;
  1648. &:hover {
  1649. color: #0366d6;
  1650. }
  1651. }
  1652. .view-source {
  1653. border: 1px solid #2185d0;
  1654. border-radius: 4px;
  1655. padding: @5 8px;
  1656. margin-left: 3px;
  1657. &:hover {
  1658. background: #2185d0;
  1659. }
  1660. }
  1661. .code-icon {
  1662. color:#2185d0;
  1663. &:hover {
  1664. color: @white;
  1665. }
  1666. }
  1667. // Mobile
  1668. @media (max-width: 1020px) {
  1669. [class*="vertically padded"].ui.grid,
  1670. #release-list .ui.grid,
  1671. #git-stats,
  1672. .repository.new.repo .ui.form .selection.dropdown:not(.owner),
  1673. .repository.new.repo form input,
  1674. .repository.new.migrate form input,
  1675. .repository.new.fork form input,
  1676. .repository.new.repo form textarea,
  1677. .repository.new.migrate form textarea,
  1678. .repository.new.fork form textarea,
  1679. .ui.grid > [class*="twelve wide"].column,
  1680. .repository .ui.container .navbar .ui.compact.small.menu{
  1681. width: 100% !important;
  1682. }
  1683. .repository .ui.container .ui.secondary.menu{
  1684. padding: 6px 6px 30px;
  1685. position: relative;
  1686. width: 100%;
  1687. }
  1688. .repository.file.list #repo-files-table .grey.has-emoji,
  1689. .repository.file.list #repo-files-table thead th,
  1690. .repository.file.list #repo-files-table td.message.collapsing.has-emoji{
  1691. display: none;
  1692. }
  1693. .repository.file.list #repo-files-table thead th:first-child {
  1694. width: 200%;
  1695. }
  1696. .repository.file.list #repo-files-table tr{
  1697. width: 100%;
  1698. }
  1699. #commits-table tbody tr .message.collapsing span,
  1700. #commits-table thead tr .nine.wide.message span.commits-message{
  1701. display: none;
  1702. }
  1703. #commits-table thead tr th.four.wide,
  1704. #commits-table thead tr th.nine.wide.message,
  1705. #commits-table thead tr th.three.wide{
  1706. width: 33%;
  1707. }
  1708. #file-buttons{
  1709. display: none !important;
  1710. }
  1711. .ui.menu .right.fitted.item{
  1712. display: none;
  1713. }
  1714. .repository .ui.container .navbar .ui.compact.small.menu .item{
  1715. position: relative;
  1716. width: 50%;
  1717. text-align: center;
  1718. }
  1719. .repository .ui.container .navbar .ui.right{
  1720. margin-top: @5;
  1721. float: none;
  1722. }
  1723. .repository .ui.container .navbar .ui.right .ui.green.button{
  1724. margin: auto;
  1725. display: table;
  1726. }
  1727. .repository.new.repo .ui.form #auto-init,
  1728. .repository.new.repo form .optional .title,
  1729. .repository.new.migrate form .optional .title,
  1730. .repository.new.fork form .optional .title
  1731. .repository.new.repo form .help, .repository.new.migrate form .help,
  1732. .repository.new.fork form .help{
  1733. margin-left: 0 !important;
  1734. }
  1735. .repository.new.repo form .inline.field > label,
  1736. .repository.new.migrate form .inline.field > label,
  1737. .repository.new.fork form .inline.field > label{
  1738. text-align: left;
  1739. }
  1740. .repository.new.repo form .header,
  1741. .repository.new.migrate form .header,
  1742. .repository.new.fork form .header{
  1743. padding-left: 0 !important;
  1744. }
  1745. .repository .header-wrapper .ui.tabular .octicon{
  1746. margin: 0 auto !important;
  1747. }
  1748. .repository .header-wrapper .ui.tabular .octicon.octicon-file-text{
  1749. padding-left: @5;
  1750. }
  1751. #repo-desc{
  1752. text-align: left;
  1753. }
  1754. .repository.release #release-list > li .meta {
  1755. text-align: left;
  1756. padding-bottom: 0;
  1757. border-left: 1px solid #DDD;
  1758. }
  1759. .repository.release #release-list > li .detail{
  1760. padding-top: @10;
  1761. }
  1762. .repository .ui.container .ui.secondary.menu.right.floated.menu{
  1763. display: none;
  1764. }
  1765. }