_repository.less 20 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328
  1. .repository {
  2. @mega-octicon-width: 30px;
  3. padding-top: 15px;
  4. padding-bottom: @footer-margin * 2;
  5. .head {
  6. .column {
  7. padding-top: 5px!important;
  8. padding-bottom: 5px!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: @mega-octicon-width + 8px;
  26. margin-top: 3px;
  27. display: block;
  28. font-size: 12px;
  29. white-space: nowrap;
  30. }
  31. }
  32. .navbar {
  33. .ui.label {
  34. margin-top: -2px;
  35. margin-left: 7px;
  36. padding: 3px 5px;
  37. }
  38. }
  39. .owner.dropdown {
  40. min-width: 40% !important;
  41. }
  42. .metas {
  43. .menu {
  44. max-height: 300px;
  45. overflow-x: auto;
  46. }
  47. .ui.list {
  48. .hide {
  49. display: none!important;
  50. }
  51. .item {
  52. padding: 0px;
  53. }
  54. .label.color {
  55. padding: 0 8px;
  56. margin-right: 5px;
  57. }
  58. a {
  59. margin: 2px 0;
  60. .text {
  61. color: #444;
  62. &:hover {
  63. color: #000;
  64. }
  65. }
  66. }
  67. }
  68. }
  69. .header-wrapper {
  70. background-color: #FAFAFA;
  71. margin-top: -15px;
  72. padding-top: 15px;
  73. .ui.tabs.divider {
  74. border-bottom: none;
  75. }
  76. }
  77. .filter.menu {
  78. .label.color {
  79. border-radius: 3px;
  80. margin-left: 15px;
  81. padding: 0 8px;
  82. }
  83. .octicon {
  84. float: left;
  85. margin-left: -5px;
  86. margin-right: -7px;
  87. }
  88. .menu {
  89. max-height: 300px;
  90. overflow-x: auto;
  91. right: 0!important;
  92. left: auto!important;
  93. }
  94. .dropdown.item {
  95. margin: 1px;
  96. padding-right: 0;
  97. }
  98. }
  99. .ui.tabs {
  100. &.container {
  101. margin-top: 14px;
  102. margin-bottom: 0px;
  103. .ui.menu {
  104. border-bottom: none;
  105. }
  106. }
  107. &.divider {
  108. margin-top: 0;
  109. margin-bottom: 20px;
  110. }
  111. }
  112. #clone-panel {
  113. margin-top: -8px;
  114. width: 100%;
  115. input {
  116. border-radius: 0;
  117. padding: 5px 10px;
  118. }
  119. .clone.button {
  120. font-size: 13px;
  121. padding: 0 5px;
  122. &:first-child {
  123. border-radius: .28571429rem 0 0 .28571429rem;
  124. }
  125. }
  126. .icon.button {
  127. padding: 0 10px;
  128. }
  129. .dropdown .menu {
  130. right: 0!important;
  131. left: auto!important;
  132. }
  133. }
  134. &.file.list {
  135. #repo-desc {
  136. font-size: 1.2em;
  137. }
  138. .choose.reference {
  139. .header .icon {
  140. font-size: 1.4em;
  141. }
  142. }
  143. #repo-files-table {
  144. thead {
  145. th {
  146. padding-top: 8px;
  147. padding-bottom: 5px;
  148. font-weight: normal;
  149. &:first-child {
  150. display: block;
  151. position: relative;
  152. width: 325%;
  153. }
  154. }
  155. .ui.avatar {
  156. margin-bottom: 5px;
  157. }
  158. }
  159. tbody {
  160. .icon {
  161. margin-left: 3px;
  162. margin-right: 5px;
  163. }
  164. }
  165. td {
  166. padding-top: 8px;
  167. padding-bottom: 8px;
  168. }
  169. tr:hover {
  170. background-color: #ffffEE;
  171. }
  172. }
  173. #file-content {
  174. .header {
  175. .icon {
  176. font-size: 1em;
  177. margin-top: -2px;
  178. }
  179. }
  180. .view-raw {
  181. * {
  182. max-width: 100%;
  183. }
  184. img {
  185. padding: 5px 5px 0 5px;
  186. }
  187. }
  188. .code-view {
  189. * {
  190. font-size: 12px;
  191. font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  192. line-height: 20px;
  193. }
  194. table {
  195. width: 100%;
  196. }
  197. .lines-num {
  198. vertical-align: top;
  199. text-align: right;
  200. color: #999;
  201. background: #f5f5f5;
  202. width: 1%;
  203. span {
  204. line-height: 20px;
  205. padding: 0 10px;
  206. cursor: pointer;
  207. display: block;
  208. }
  209. }
  210. .lines-num,
  211. .lines-code {
  212. padding: 0;
  213. pre,
  214. ol,
  215. .hljs {
  216. background-color: white;
  217. margin: 0;
  218. padding: 0 !important;
  219. li {
  220. padding-left: 5px;
  221. &.active {
  222. background: #ffffdd;
  223. }
  224. }
  225. }
  226. }
  227. }
  228. }
  229. .sidebar {
  230. padding-left: 0;
  231. .octicon {
  232. width: 16px;
  233. }
  234. }
  235. }
  236. &.options {
  237. #interval {
  238. width: 100px!important;
  239. min-width: 100px;
  240. }
  241. .danger {
  242. .item {
  243. padding: 20px 15px;
  244. }
  245. .ui.divider {
  246. margin: 0;
  247. }
  248. }
  249. }
  250. @comment-avatar-width: 3em;
  251. &.new.issue {
  252. .comment.form {
  253. .comment {
  254. .avatar {
  255. width: @comment-avatar-width;
  256. }
  257. }
  258. .content {
  259. margin-left: 4em;
  260. #avatar-arrow;
  261. &:after {
  262. border-right-color: #fff;
  263. }
  264. .markdown {
  265. font-size: 14px;
  266. }
  267. }
  268. .metas {
  269. min-width: 220px;
  270. .filter.menu {
  271. max-height: 300px;
  272. overflow-x: auto;
  273. }
  274. }
  275. }
  276. }
  277. &.view.issue {
  278. .title {
  279. padding-bottom: 0!important;
  280. h1 {
  281. font-weight: 300;
  282. font-size: 2.3rem;
  283. margin-bottom: 5px;
  284. .ui.input {
  285. font-size: 0.5em;
  286. vertical-align: top;
  287. width: 50%;
  288. min-width: 600px;
  289. input {
  290. font-size: 1.5em;
  291. padding: 6px 10px;
  292. }
  293. }
  294. }
  295. .index {
  296. font-weight: 300;
  297. color: #aaa;
  298. letter-spacing: -1px;
  299. }
  300. .label {
  301. margin-right: 10px;
  302. }
  303. .edit-zone {
  304. margin-top: 10px;
  305. }
  306. }
  307. .pull-desc {
  308. code {
  309. color: #0166E6;
  310. }
  311. }
  312. .pull {
  313. &.tabular.menu {
  314. margin-bottom: 10px;
  315. .octicon {
  316. margin-right: 5px;
  317. }
  318. }
  319. &.tab.segment {
  320. border: none;
  321. padding: 0;
  322. padding-top: 10px;
  323. box-shadow: none;
  324. background-color: inherit;
  325. }
  326. .merge.box {
  327. .avatar {
  328. margin-left: 10px;
  329. margin-top: 10px;
  330. }
  331. }
  332. }
  333. .comment-list {
  334. &:before {
  335. display: block;
  336. content: "";
  337. position: absolute;
  338. margin-top: 12px;
  339. margin-bottom: 14px;
  340. top: 0;
  341. bottom: 0;
  342. left: 96px;
  343. width: 2px;
  344. background-color: #f3f3f3;
  345. z-index: -1;
  346. }
  347. .comment {
  348. .avatar {
  349. width: @comment-avatar-width;
  350. }
  351. .tag {
  352. color: #767676;
  353. margin-top: 3px;
  354. padding: 2px 5px;
  355. font-size: 12px;
  356. border: 1px solid rgba(0,0,0,0.1);
  357. border-radius: 3px;
  358. }
  359. .actions {
  360. .item {
  361. float: left;
  362. }
  363. a.item {
  364. margin-top: 6px;
  365. margin-left: 10px;
  366. }
  367. }
  368. .content {
  369. margin-left: 4em;
  370. .header {
  371. #avatar-arrow;
  372. font-weight: normal;
  373. padding: auto 15px;
  374. position: relative;
  375. color: #767676;
  376. background-color: #f7f7f7;
  377. border-bottom: 1px solid #eee;
  378. border-top-left-radius: 3px;
  379. border-top-right-radius: 3px;
  380. .text {
  381. max-width: 78%;
  382. padding-top: 10px;
  383. padding-bottom: 10px;
  384. }
  385. }
  386. .markdown {
  387. font-size: 14px;
  388. }
  389. .no-content {
  390. color: #767676;
  391. font-style: italic;
  392. }
  393. > .bottom.segment {
  394. background: #f3f4f5;
  395. .ui.images::after {
  396. clear: both;
  397. content: ' ';
  398. display: block;
  399. }
  400. a {
  401. display: block;
  402. float: left;
  403. margin: 5px;
  404. padding: 5px;
  405. height: 150px;
  406. border: solid 1px #eee;
  407. border-radius: 3px;
  408. max-width: 150px;
  409. background-color: #fff;
  410. &:before {
  411. content:' ';
  412. display: inline-block;
  413. height: 100%;
  414. vertical-align: middle;
  415. }
  416. }
  417. .ui.image {
  418. max-height: 100%;
  419. width: auto;
  420. margin: 0;
  421. vertical-align: middle;
  422. }
  423. }
  424. }
  425. .ui.form {
  426. .field:first-child {
  427. clear: none;
  428. }
  429. .tab.segment {
  430. border: none;
  431. padding: 0;
  432. padding-top: 10px;
  433. }
  434. textarea {
  435. height: 200px;
  436. font-family: "Consolas", monospace;
  437. }
  438. }
  439. .edit.buttons {
  440. margin-top: 10px;
  441. }
  442. }
  443. .event {
  444. position: relative;
  445. margin: 15px 0 15px 79px;
  446. padding-left: 25px;
  447. .octicon {
  448. width: 30px;
  449. float: left;
  450. margin-left: -36px;
  451. text-align: center;
  452. &.octicon-circle-slash {
  453. margin-top: 5px;
  454. font-size: 20px;
  455. color: #bd2c00;
  456. }
  457. &.octicon-primitive-dot {
  458. font-size: 30px;
  459. color: #6cc644;
  460. }
  461. &.octicon-bookmark {
  462. margin-top: 3px;
  463. font-size: 25px;
  464. }
  465. }
  466. .detail {
  467. font-size: 0.9rem;
  468. margin-top: 5px;
  469. margin-left: 35px;
  470. .octicon {
  471. &.octicon-git-commit {
  472. margin-top: 2px;
  473. }
  474. }
  475. }
  476. }
  477. }
  478. .ui.segment.metas {
  479. margin-top: -3px;
  480. }
  481. .ui.participants {
  482. img {
  483. margin-top: 5px;
  484. margin-right: 5px;
  485. }
  486. }
  487. }
  488. .comment.form {
  489. .ui.comments {
  490. margin-top: -12px;
  491. max-width: 100%;
  492. }
  493. .content {
  494. .field:first-child {
  495. clear: none;
  496. }
  497. .form {
  498. #avatar-arrow;
  499. &:after {
  500. border-right-color: #fff;
  501. }
  502. }
  503. .tab.segment {
  504. border: none;
  505. padding: 0;
  506. padding-top: 10px;
  507. }
  508. textarea {
  509. height: 200px;
  510. font-family: "Consolas", monospace;
  511. }
  512. }
  513. }
  514. .label.list {
  515. list-style: none;
  516. padding-top: 15px;
  517. .item {
  518. padding-top: 10px;
  519. padding-bottom: 10px;
  520. border-bottom: 1px dashed #AAA;
  521. a {
  522. font-size: 15px;
  523. padding-top: 5px;
  524. padding-right: 10px;
  525. color: #666;
  526. &:hover {
  527. color: #000;
  528. }
  529. &.open-issues {
  530. margin-right: 30px;
  531. }
  532. }
  533. .ui.label {
  534. font-size: 1em;
  535. }
  536. }
  537. }
  538. .milestone.list {
  539. list-style: none;
  540. padding-top: 15px;
  541. > .item {
  542. padding-top: 10px;
  543. padding-bottom: 10px;
  544. border-bottom: 1px dashed #AAA;
  545. > a {
  546. padding-top: 5px;
  547. padding-right: 10px;
  548. color: #000;
  549. &:hover {
  550. color: #4078c0;
  551. }
  552. }
  553. .ui.progress {
  554. width: 40%;
  555. padding: 0;
  556. border: 0;
  557. margin: 0;
  558. .bar {
  559. height: 20px;
  560. }
  561. }
  562. .meta {
  563. color: #999;
  564. padding-top: 5px;
  565. .issue-stats .octicon{
  566. padding-left: 5px;
  567. }
  568. .overdue {
  569. color: red;
  570. }
  571. }
  572. .operate {
  573. margin-top: -15px;
  574. > a {
  575. font-size: 15px;
  576. padding-top: 5px;
  577. padding-right: 10px;
  578. color: #666;
  579. &:hover {
  580. color: #000;
  581. }
  582. }
  583. }
  584. .content {
  585. padding-top: 10px;
  586. }
  587. }
  588. }
  589. &.new.milestone {
  590. textarea {
  591. height: 200px;
  592. }
  593. #deadline {
  594. width: 150px;
  595. }
  596. }
  597. &.compare.pull {
  598. .choose.branch {
  599. .octicon {
  600. padding-right: 10px;
  601. }
  602. }
  603. .comment.form {
  604. .content {
  605. #avatar-arrow;
  606. &:after {
  607. border-right-color: #fff;
  608. }
  609. }
  610. }
  611. }
  612. .filter.dropdown .menu {
  613. margin-top: 1px!important;
  614. }
  615. &.commits {
  616. .header {
  617. .ui.right {
  618. .search {
  619. input {
  620. font-weight: normal;
  621. padding: 5px 10px;
  622. }
  623. }
  624. }
  625. }
  626. }
  627. #commits-table {
  628. thead {
  629. th:first-of-type {
  630. padding-left: 15px;
  631. }
  632. .sha {
  633. font-size: 13px;
  634. padding: 6px 40px 4px 35px;
  635. }
  636. }
  637. &.ui.basic.striped.table tbody tr:nth-child(2n) {
  638. background-color: rgba(0, 0, 0, .02)!important;
  639. }
  640. }
  641. .diff-detail-box {
  642. margin: 15px 0;
  643. line-height: 30px;
  644. ol {
  645. clear: both;
  646. padding-left: 0;
  647. margin-top: 5px;
  648. margin-bottom: 28px;
  649. li {
  650. list-style: none;
  651. padding-bottom: 4px;
  652. margin-bottom: 4px;
  653. border-bottom: 1px dashed #DDD;
  654. padding-left: 6px;
  655. }
  656. }
  657. span.status{
  658. display: inline-block;
  659. width: 12px;
  660. height: 12px;
  661. margin-right: 8px;
  662. vertical-align: middle;
  663. &.modify {
  664. background-color: #f0db88;
  665. }
  666. &.add {
  667. background-color: #b4e2b4;
  668. }
  669. &.del {
  670. background-color: #e9aeae;
  671. }
  672. &.rename {
  673. background-color: #dad8ff;
  674. }
  675. }
  676. }
  677. .diff-box {
  678. .count {
  679. margin-right: 12px;
  680. font-size: 13px;
  681. .bar {
  682. background-color: #bd2c00;
  683. height: 12px;
  684. width: 40px;
  685. display: inline-block;
  686. margin: 2px 4px 0 4px;
  687. vertical-align: text-top;
  688. .add {
  689. background-color: #55a532;
  690. height: 12px;
  691. }
  692. }
  693. }
  694. .file {
  695. color: #888;
  696. }
  697. }
  698. .diff-file-box {
  699. .header {
  700. background-color: #f7f7f7;
  701. }
  702. .file-body.file-code {
  703. .lines-num {
  704. text-align: right;
  705. color: #A7A7A7;
  706. background: #fafafa;
  707. width: 1%;
  708. span.fold {
  709. display: block;
  710. text-align: center;
  711. }
  712. }
  713. .lines-num-old {
  714. border-right: 1px solid #DDD;
  715. }
  716. }
  717. .code-diff {
  718. font-size: 12px;
  719. td {
  720. padding: 0;
  721. padding-left: 10px;
  722. border-top: none;
  723. }
  724. pre {
  725. margin: 0;
  726. }
  727. .lines-num {
  728. border-right: 1px solid #d4d4d5;
  729. padding: 0 5px;
  730. }
  731. tbody {
  732. tr {
  733. &.tag-code {
  734. td, pre {
  735. background-color: #F0F0F0 !important;
  736. border-color: #D2CECE!important;
  737. padding-top: 4px;
  738. padding-bottom: 4px;
  739. }
  740. td.halfwidth {
  741. width: 50%;
  742. }
  743. // td.selected-line, td.selected-line pre {
  744. // background-color: #ffffdd !important;
  745. // }
  746. }
  747. // &.same-code {
  748. // td.selected-line, td.selected-line pre {
  749. // background-color: #ffffdd !important;
  750. // }
  751. // }
  752. &.del-code {
  753. // Duplicate here to enforce add code color.
  754. td.add-code {
  755. background-color: #eaffea !important;
  756. border-color: #c1e9c1 !important;
  757. pre {
  758. background-color: #eaffea !important;
  759. border-color: #c1e9c1 !important;
  760. }
  761. }
  762. td, pre {
  763. background-color: #ffecec !important;
  764. border-color: #f1c0c0 !important;
  765. }
  766. td.halfwidth {
  767. width: 50%;
  768. }
  769. // td.selected-line, td.selected-line pre {
  770. // background-color: #ffffdd !important;
  771. // }
  772. }
  773. &.add-code {
  774. td, pre {
  775. background-color: #eaffea !important;
  776. border-color: #c1e9c1 !important;
  777. }
  778. td.halfwidth {
  779. width: 50%;
  780. }
  781. // td.selected-line, td.selected-line pre {
  782. // background-color: #ffffdd !important;
  783. // }
  784. }
  785. .removed-code {
  786. background-color: #ff9999;
  787. }
  788. .added-code {
  789. background-color: #99ff99;
  790. }
  791. }
  792. }
  793. }
  794. &.file-content {
  795. img {
  796. max-width: 100%;
  797. padding: 5px 5px 0 5px;
  798. }
  799. }
  800. }
  801. .code-view {
  802. overflow: auto;
  803. overflow-x: auto;
  804. overflow-y: hidden;
  805. }
  806. &.quickstart {
  807. .guide {
  808. .item {
  809. padding: 1em;
  810. small {
  811. font-weight: normal;
  812. }
  813. }
  814. .clone.button:first-child {
  815. border-radius: .28571429rem 0 0 .28571429rem;
  816. }
  817. .ui.action.small.input {
  818. width: 100%;
  819. }
  820. #repo-clone-url {
  821. border-radius: 0;
  822. padding: 5px 10px;
  823. font-size: 1.2em;
  824. }
  825. }
  826. }
  827. &.release {
  828. #release-list {
  829. border-top: 1px solid #DDD;
  830. margin-top: 20px;
  831. padding-top: 15px;
  832. >li {
  833. list-style: none;
  834. .meta,
  835. .detail {
  836. padding-top: 30px;
  837. padding-bottom: 40px;
  838. }
  839. .meta {
  840. text-align: right;
  841. position: relative;
  842. .tag:not(.icon) {
  843. display: block;
  844. margin-top: 15px;
  845. }
  846. .commit {
  847. display: block;
  848. margin-top: 10px;
  849. }
  850. }
  851. .detail {
  852. border-left: 1px solid #DDD;
  853. .author {
  854. img {
  855. margin-bottom: -3px;
  856. }
  857. }
  858. .download {
  859. margin-top: 20px;
  860. >a {
  861. .octicon {
  862. margin-left: 5px;
  863. margin-right: 5px;
  864. }
  865. }
  866. .list {
  867. padding-left: 0;
  868. border-top: 1px solid #eee;
  869. li {
  870. list-style: none;
  871. display: block;
  872. padding-top: 8px;
  873. padding-bottom: 8px;
  874. border-bottom: 1px solid #eee;
  875. }
  876. }
  877. }
  878. .dot {
  879. width: 9px;
  880. height: 9px;
  881. background-color: #ccc;
  882. z-index: 999;
  883. position: absolute;
  884. display: block;
  885. left: -5px;
  886. top: 40px;
  887. border-radius: 6px;
  888. border: 1px solid #FFF;
  889. }
  890. }
  891. }
  892. }
  893. }
  894. &.new.release {
  895. .target {
  896. min-width: 500px;
  897. .at {
  898. margin-left: -5px;
  899. margin-right: 5px;
  900. }
  901. .dropdown.icon {
  902. margin: 0;
  903. padding-top: 3px;
  904. }
  905. .selection.dropdown {
  906. padding-top: 10px;
  907. padding-bottom: 10px;
  908. }
  909. }
  910. .prerelease.field {
  911. margin-bottom: 0;
  912. }
  913. }
  914. &.forks {
  915. .list {
  916. margin-top: 0;
  917. .item {
  918. padding-top: 10px;
  919. padding-bottom: 10px;
  920. border-bottom: 1px solid #DDD;
  921. .ui.avatar {
  922. float: left;
  923. margin-right: 5px;
  924. }
  925. .link {
  926. padding-top: 5px;
  927. }
  928. }
  929. }
  930. }
  931. &.wiki {
  932. &.start {
  933. .ui.segment {
  934. padding-top: 70px;
  935. padding-bottom: 100px;
  936. .mega-octicon {
  937. font-size: 48px;
  938. }
  939. }
  940. }
  941. &.new {
  942. .CodeMirror {
  943. .CodeMirror-code {
  944. font-family: "Consolas", monospace;
  945. .cm-comment {
  946. background: inherit;
  947. }
  948. }
  949. }
  950. .editor-preview {
  951. background-color: white;
  952. }
  953. }
  954. &.view {
  955. .choose.page {
  956. margin-top: -5px;
  957. }
  958. .ui.sub.header {
  959. text-transform: none;
  960. }
  961. .markdown {
  962. padding: 15px 30px;
  963. h1, h2, h3, h4, h5, h6 {
  964. &:first-of-type {
  965. margin-top: 0;
  966. }
  967. }
  968. }
  969. }
  970. }
  971. &.settings {
  972. &.collaboration {
  973. .collaborator.list {
  974. padding: 0;
  975. >.item {
  976. margin: 0;
  977. line-height: 2em;
  978. &:not(:last-child) {
  979. border-bottom: 1px solid #DDD;
  980. }
  981. }
  982. }
  983. #repo-collab-form {
  984. #search-user-box {
  985. .results {
  986. left: 7px;
  987. }
  988. }
  989. .ui.button {
  990. margin-left: 5px;
  991. margin-top: -3px;
  992. }
  993. }
  994. }
  995. }
  996. }
  997. // End of .repository
  998. &.user-cards {
  999. .list {
  1000. padding: 0;
  1001. .item {
  1002. list-style: none;
  1003. width: 32%;
  1004. margin: 10px 10px 10px 0;
  1005. padding-bottom: 14px;
  1006. float: left;
  1007. .avatar {
  1008. width: 48px;
  1009. height: 48px;
  1010. float: left;
  1011. display: block;
  1012. margin-right: 10px;
  1013. }
  1014. .name {
  1015. margin-top: 0;
  1016. margin-bottom: 0;
  1017. font-weight: normal;
  1018. }
  1019. .meta {
  1020. margin-top: 5px;
  1021. }
  1022. }
  1023. }
  1024. }
  1025. #search-repo-box,
  1026. #search-user-box {
  1027. .results {
  1028. padding: 0;
  1029. position: absolute;
  1030. .item {
  1031. padding: 10px 15px;
  1032. border-bottom: 1px solid #DDD;
  1033. cursor: pointer;
  1034. &:hover {
  1035. background: rgba(0,0,0,.05)!important;
  1036. color: rgba(0,0,0,.95)!important;
  1037. }
  1038. img {
  1039. margin-right: 8px;
  1040. }
  1041. }
  1042. }
  1043. }
  1044. .issue.list {
  1045. list-style: none;
  1046. padding-top: 15px;
  1047. >.item {
  1048. padding-top: 15px;
  1049. padding-bottom: 10px;
  1050. border-bottom: 1px dashed #AAA;
  1051. .title {
  1052. color: #444;
  1053. font-size: 15px;
  1054. font-weight: bold;
  1055. margin: 0 6px;
  1056. &:hover {
  1057. color: #000;
  1058. }
  1059. }
  1060. .comment {
  1061. padding-right: 10px;
  1062. color: #666;
  1063. }
  1064. .desc {
  1065. padding-top: 5px;
  1066. color: #999;
  1067. a.milestone {
  1068. padding-left: 5px;
  1069. color: #999!important;
  1070. &:hover {
  1071. color: #000!important;
  1072. }
  1073. }
  1074. .assignee {
  1075. margin-top: -5px;
  1076. margin-right: 5px;
  1077. }
  1078. }
  1079. }
  1080. }
  1081. .page.buttons {
  1082. padding-top: 15px;
  1083. }
  1084. .ui.comments {
  1085. .dropzone {
  1086. width: 100%;
  1087. margin-bottom: 10px;
  1088. border: 2px dashed #0087F7;
  1089. box-shadow: none!important;
  1090. .dz-error-message {
  1091. top: 140px;
  1092. }
  1093. }
  1094. }
  1095. .settings {
  1096. .content {
  1097. margin-top: 2px;
  1098. >.header,
  1099. .segment {
  1100. box-shadow: 0 1px 2px 0 rgba(34,36,38,.15);
  1101. }
  1102. }
  1103. .key.list {
  1104. .item:not(:first-child) {
  1105. border-top: 1px solid #eaeaea;
  1106. }
  1107. .ssh-key-state-indicator {
  1108. float: left;
  1109. color: gray;
  1110. padding-left: 10px;
  1111. padding-top: 10px;
  1112. &.active {
  1113. color: #6cc644;
  1114. }
  1115. }
  1116. .meta {
  1117. padding-top: 5px;
  1118. }
  1119. .print {
  1120. color: #767676;
  1121. }
  1122. .activity {
  1123. color: #666;
  1124. }
  1125. }
  1126. .hook.list {
  1127. > .item:not(:first-child) {
  1128. border-top: 1px solid #eaeaea;
  1129. }
  1130. .item {
  1131. padding: 10px 20px;
  1132. .octicon,
  1133. .fa {
  1134. width: 20px;
  1135. text-align: center;
  1136. }
  1137. a {
  1138. .dont-break-out;
  1139. }
  1140. }
  1141. }
  1142. .hook.history.list {
  1143. .item {
  1144. padding-left: 13px;
  1145. .meta {
  1146. .ui.right {
  1147. margin-top: 5px;
  1148. .time {
  1149. font-size: 12px;
  1150. }
  1151. }
  1152. }
  1153. .info {
  1154. margin-top: 10px;
  1155. .tabular.menu {
  1156. .item {
  1157. font-weight: 500;
  1158. }
  1159. }
  1160. .tab.segment {
  1161. border: none;
  1162. padding: 0;
  1163. padding-top: 10px;
  1164. box-shadow: none;
  1165. > * {
  1166. color: #666;
  1167. }
  1168. pre {
  1169. word-wrap: break-word;
  1170. .hljs {
  1171. padding: 0;
  1172. background-color: inherit;
  1173. }
  1174. }
  1175. }
  1176. }
  1177. }
  1178. }
  1179. }
  1180. .ui.vertical.menu {
  1181. .header.item {
  1182. font-size: 1.1em;
  1183. background: #f0f0f0;
  1184. }
  1185. }
  1186. .edit-label.modal,
  1187. .new-label.segment {
  1188. .form {
  1189. .column {
  1190. padding-right: 0;
  1191. }
  1192. .buttons {
  1193. margin-left: auto;
  1194. padding-top: 15px;
  1195. }
  1196. .color.picker.column {
  1197. width: auto;
  1198. .color-picker {
  1199. height: 35px;
  1200. width: auto;
  1201. padding-left: 30px;
  1202. }
  1203. }
  1204. .minicolors-swatch.minicolors-sprite {
  1205. top: 10px;
  1206. left: 10px;
  1207. width: 15px;
  1208. height: 15px;
  1209. }
  1210. .precolors {
  1211. padding-left: 0;
  1212. padding-right: 0;
  1213. margin: 3px 10px auto 10px;
  1214. width: 120px;
  1215. .color {
  1216. float: left;
  1217. width: 15px;
  1218. height: 15px;
  1219. }
  1220. }
  1221. }
  1222. }
  1223. #avatar-arrow {
  1224. &:before, &:after {
  1225. right: 100%;
  1226. top: 20px;
  1227. border: solid transparent;
  1228. content: " ";
  1229. height: 0;
  1230. width: 0;
  1231. position: absolute;
  1232. pointer-events: none;
  1233. }
  1234. &:before {
  1235. border-right-color: #D4D4D5;
  1236. border-width: 9px;
  1237. margin-top: -9px;
  1238. }
  1239. &:after {
  1240. border-right-color: #f7f7f7;
  1241. border-width: 8px;
  1242. margin-top: -8px;
  1243. }
  1244. }
  1245. #transfer-repo-modal,
  1246. #delete-repo-modal {
  1247. .ui.message {
  1248. width: 100%!important;
  1249. }
  1250. }