_repository.less 30 KB

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