repository.less 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797
  1. @import "../ui/var";
  2. @repoHeaderBorderColor: #D6D6D6;
  3. @repoHeaderBgColor: #FFF;
  4. @repoHeaderNameColor: #888;
  5. #repo-wrapper {
  6. padding-bottom: 100px;
  7. }
  8. #repo-header {
  9. height: 69px;
  10. border-bottom: 1px solid@repoHeaderBorderColor;
  11. background-color: @repoHeaderBgColor;
  12. }
  13. #repo-header-name {
  14. line-height: 66px;
  15. color: @repoHeaderNameColor;
  16. font-size: 1.6em;
  17. font-weight: normal;
  18. margin-bottom: 0;
  19. i {
  20. margin-right: 12px;
  21. vertical-align: middle;
  22. }
  23. .divider {
  24. margin: 0 4px;
  25. }
  26. }
  27. #repo-header-meta {
  28. line-height: 66px;
  29. li {
  30. >a {
  31. padding: 0;
  32. &:hover {
  33. background-color: transparent;
  34. }
  35. }
  36. }
  37. a {
  38. &>.btn {
  39. line-height: 16px;
  40. margin-left: 16px;
  41. font-size: 13px;
  42. i {
  43. margin-right: 6px;
  44. }
  45. .num {
  46. margin-left: 6px;
  47. }
  48. }
  49. }
  50. }
  51. #repo-header-download-btn {
  52. >.btn>i {
  53. margin-right: 0 !important;
  54. }
  55. &:hover {
  56. &:after, .btn {
  57. background-color: @btnHoverBlackColor;
  58. color: #FFF;
  59. }
  60. }
  61. &:after {
  62. background-color: @btnBlackColor;
  63. padding: 9px 16px 8px 0;
  64. margin-left: -8px !important;
  65. color: #FFF;
  66. border-top: 1px solid@btnBlackColor;
  67. border-bottom: 1px solid@btnBlackColor;
  68. border-top-right-radius: .25em;
  69. border-bottom-right-radius: .25em;
  70. }
  71. }
  72. #repo-header-download-drop {
  73. line-height: 24px;
  74. width: 460px;
  75. top: 50px;
  76. left: -390px;
  77. padding: 20px;
  78. box-sizing: border-box;
  79. z-index: 1;
  80. .btn>i {
  81. margin-right: 6px;
  82. }
  83. button, input {
  84. font-size: 11px;
  85. }
  86. #repo-clone-copy {
  87. width: 85px;
  88. text-overflow: clip;
  89. }
  90. }
  91. #repo-content {
  92. padding-top: 18px;
  93. padding-bottom: 18px;
  94. }
  95. .repo-wide-wrapper {
  96. padding: 18px;
  97. position: relative;
  98. }
  99. #repo-clone-url {
  100. border-right: none;
  101. width: 190px;
  102. border-left: none;
  103. cursor: default;
  104. }
  105. #repo-clone-help {
  106. clear: both;
  107. line-height: 48px;
  108. }
  109. #repo-clone-zip {
  110. line-height: 48px;
  111. a {
  112. cursor: pointer;
  113. color: white;
  114. overflow: visible;
  115. padding: .6em 1.2em;
  116. }
  117. .btn {
  118. margin: 0 6px;
  119. }
  120. }
  121. #repo-desc {
  122. font-size: 1.2em;
  123. .no-description{
  124. color: #999;
  125. }
  126. }
  127. #repo-sidebar-nav {
  128. .label {
  129. font-size: 12px;
  130. line-height: 1.4em;
  131. margin-top: 2px;
  132. }
  133. i {
  134. margin-right: 6px;
  135. }
  136. }
  137. #repo-sidebar-mini {
  138. margin-top: 6px;
  139. width: 60px;
  140. li {
  141. margin-bottom: 4px;
  142. }
  143. li > a {
  144. position: relative;
  145. padding-left: 12px;
  146. width: 24px;
  147. text-align: center;
  148. >i.octicon {
  149. font-size: 21px;
  150. }
  151. }
  152. .num {
  153. position: absolute;
  154. font-size: 12px;
  155. top: 0;
  156. left: 36px;
  157. padding: 0 2px;
  158. min-width: 16px;
  159. height: 16px;
  160. text-align: center;
  161. line-height: 16px;
  162. border-radius: 4px;
  163. opacity: 0.7;
  164. -webkit-transform: scale(0.9);
  165. font-weight: bold;
  166. }
  167. }
  168. #repo-file-nav {
  169. padding: .6em 0 1em 0;
  170. >li>a {
  171. padding-left: 0;
  172. &:hover {
  173. background-color: transparent;
  174. }
  175. }
  176. li.repo-jump > a {
  177. padding-right: 0;
  178. .btn {
  179. margin-left: -1px;
  180. }
  181. }
  182. }
  183. #repo-branch-switch {
  184. >a {
  185. .btn {
  186. padding-right: 30px;
  187. }
  188. &:after {
  189. position: absolute;
  190. top: 12px;
  191. right: 30px;
  192. margin-left: 0;
  193. color: @baseFontColor;
  194. }
  195. }
  196. >.drop-down {
  197. top: 40px;
  198. left: 0;
  199. }
  200. }
  201. #repo-branch-filter-ipt {
  202. width: 100%;
  203. border-left: none;
  204. border-right: none;
  205. box-sizing: border-box;
  206. }
  207. #repo-branch-tag {
  208. .tab-nav {
  209. border-bottom: 1px solid #EAEAEA;
  210. a {
  211. padding: .3em .8em;
  212. }
  213. .js-tab-nav-show {
  214. background-color: #EEE;
  215. font-weight: bold;
  216. }
  217. }
  218. .switching-list {
  219. max-height: 300px;
  220. overflow-y: auto;
  221. }
  222. }
  223. #repo-branch-list,
  224. #repo-tag-list {
  225. li {
  226. i {
  227. margin-right: 12px;
  228. opacity: 0;
  229. }
  230. }
  231. li.checked {
  232. i {
  233. opacity: 1;
  234. }
  235. }
  236. }
  237. #repo-bread {
  238. .bread {
  239. padding-right: 0;
  240. font-size: 16px;
  241. font-weight: bold;
  242. }
  243. }
  244. #repo-main {
  245. padding-right: 40px;
  246. box-sizing: border-box;
  247. }
  248. #repo-files-table {
  249. margin-bottom: 20px;
  250. .sha .label {
  251. font-family: Monaco,Menlo,Consolas,"Courier New",monospace;
  252. }
  253. th, td {
  254. text-align: left;
  255. line-height: 32px;
  256. }
  257. td.icon {
  258. width: 16px;
  259. padding-right: .1em;
  260. padding-left: 1em;
  261. }
  262. td.name {
  263. max-width: 120px;
  264. .text-truncate {
  265. max-width: 100%;
  266. }
  267. }
  268. td.age {
  269. max-width: 120px;
  270. text-align: right;
  271. }
  272. td.msg {
  273. max-width: 440px;
  274. .text-truncate {
  275. max-width: 100%;
  276. }
  277. }
  278. td.age,
  279. td.size,
  280. td.msg a {
  281. color: #888;
  282. }
  283. td.msg a:hover {
  284. color: #428BCA;
  285. text-decoration: underline;
  286. }
  287. td.message {
  288. .text-truncate {
  289. max-width: 360px;
  290. }
  291. }
  292. tbody {
  293. background-color: #FFF;
  294. tr:hover {
  295. background-color: #ffffEE;
  296. }
  297. }
  298. thead {
  299. background-color: #F0F0F0;
  300. .author {
  301. a {
  302. margin: 0 .4em;
  303. }
  304. }
  305. .last-commit {
  306. strong {
  307. color: #444;
  308. }
  309. .text-truncate {
  310. max-width: 440px;
  311. margin-left: .4em;
  312. }
  313. }
  314. .last-commit .text-truncate,
  315. .age {
  316. font-weight: normal;
  317. color: #888;
  318. }
  319. }
  320. }
  321. #repo-readme,
  322. #repo-read-file {
  323. margin-bottom: 80px;
  324. }
  325. #repo-bare-start {
  326. margin-bottom: 100px;
  327. .panel-content {
  328. background-color: #FFF;
  329. }
  330. pre {
  331. margin: 0 40px;
  332. padding: 6px 10px;
  333. border: 1px solid #ddd;
  334. background: #f8f8f8;
  335. }
  336. }
  337. .repo-bare {
  338. #repo-bare-start {
  339. h2 {
  340. margin-top: 30px;
  341. margin-bottom: 24px;
  342. }
  343. }
  344. #repo-header-meta {
  345. display: none;
  346. }
  347. .btn-first {
  348. margin-left: 200px;
  349. }
  350. #repo-clone-copy {
  351. margin-right: 200px;
  352. }
  353. #repo-clone-help {
  354. clear: both;
  355. width: 100%;
  356. }
  357. #repo-clone-url {
  358. width: 520px;
  359. }
  360. }
  361. /* repository create */
  362. #team-create-form,
  363. #repo-migrate-form,
  364. #repo-create-form {
  365. width: 800px;
  366. margin: 60px auto auto auto;
  367. background: white;
  368. h2 {
  369. margin: .5em 1em;
  370. }
  371. .field {
  372. margin: 1.2em 0 2em 0;
  373. }
  374. .ipt {
  375. width: 540px;
  376. }
  377. textarea {
  378. height: 120px;
  379. }
  380. .avatar {
  381. vertical-align: middle;
  382. margin-right: .6em;
  383. width: 28px;
  384. height: 28px;
  385. }
  386. &:hover {
  387. box-shadow: 0px 0px 6px #CCC;
  388. }
  389. }
  390. #repo-create-cancel {
  391. margin-left: 4em;
  392. }
  393. #release-new-target-branch-list,
  394. #repo-create-owner-list {
  395. top: 30px;
  396. left: 0;
  397. width: auto;
  398. max-width: 300px;
  399. .octicon {
  400. margin-right: 12px;
  401. opacity: 0;
  402. }
  403. .avatar {
  404. width: 20px;
  405. height: 20px;
  406. }
  407. li {
  408. white-space: nowrap;
  409. &.checked {
  410. .octicon {
  411. opacity: 1;
  412. }
  413. }
  414. a {
  415. text-overflow: ellipsis;
  416. -o-text-overflow: ellipsis;
  417. overflow: hidden;
  418. }
  419. }
  420. }
  421. #release-new-target-branch-list {
  422. margin-top: -1px;
  423. min-width: 150px;
  424. }
  425. #release-new-title {
  426. margin-top: 10px;
  427. }
  428. #release-new-content {
  429. width: 100%;
  430. }
  431. #release-preview-btn .btn {
  432. border-left: 0;
  433. }
  434. #release-preview.markdown {
  435. margin-top: 5px;
  436. background-color: transparent;
  437. }
  438. .file-name {
  439. margin-left: 1em;
  440. }
  441. .file-size {
  442. font-size: 13px;
  443. color: #888;
  444. margin-left: 1em;
  445. }
  446. .code-view {
  447. overflow: auto;
  448. overflow-x: auto;
  449. overflow-y: hidden;
  450. background: white;
  451. .view-raw {
  452. min-height: 40px;
  453. text-align: center;
  454. padding-top: 20px;
  455. .btn {
  456. font-size: 1.05em;
  457. line-height: 16px;
  458. padding: 6px 8px;
  459. }
  460. }
  461. table {
  462. width: 100%;
  463. td {
  464. padding: 0;
  465. }
  466. }
  467. .lines-num {
  468. vertical-align: top;
  469. text-align: right;
  470. color: #999;
  471. background: #f5f5f5;
  472. width: 1%;
  473. span {
  474. font-family: Monaco,Menlo,Consolas,"Courier New",monospace;
  475. line-height: 20px;
  476. padding: 0 10px;
  477. cursor: pointer;
  478. display: block;
  479. }
  480. }
  481. .lines-code > pre {
  482. border: none;
  483. border-left: 1px solid #ddd;
  484. > ol.linenums > li {
  485. padding: 0 10px;
  486. line-height: 20px;
  487. &.active {
  488. background: #ffffdd;
  489. }
  490. }
  491. }
  492. }
  493. .repo-setting-zone {
  494. padding: 30px;
  495. }
  496. #team-repositories-list,
  497. #team-members-list,
  498. #repo-collab-list {
  499. list-style: none;
  500. padding: 10px 0 5px 0;
  501. li.collab {
  502. clear: both;
  503. height: 50px;
  504. padding: 0 15px 0 15px;
  505. }
  506. a.member {
  507. color: #444;
  508. height: 50px;
  509. line-height: 50px;
  510. &:hover {
  511. color: #4183C4;
  512. }
  513. }
  514. .avatar {
  515. margin-right: 1em;
  516. width: 40px;
  517. }
  518. .remove-collab {
  519. color: #DD4B39;
  520. }
  521. }
  522. .repo-user-list-block {
  523. position: relative;
  524. top: 5px;
  525. }
  526. .setting-list {
  527. width: 100%;
  528. list-style: none;
  529. }
  530. #commits-list {
  531. padding-top: 20px;
  532. h4{
  533. line-height: 30px;
  534. margin-bottom: 0;
  535. }
  536. }
  537. .commit-list {
  538. th {
  539. background-color: #FFF;
  540. line-height: 28px !important;
  541. }
  542. .date {
  543. width: 120px;
  544. }
  545. .author {
  546. padding-left: 20px;
  547. min-width: 180px;
  548. img {
  549. margin-top: -4px;
  550. }
  551. }
  552. .sha a {
  553. font-family: Consolas, Menlo, Monaco, "Lucida Console", monospace;
  554. font-size: 14px;
  555. }
  556. .message {
  557. width: 60%;
  558. span {
  559. max-width: 500px;
  560. }
  561. }
  562. }
  563. .commit-message {
  564. white-space: pre-wrap;
  565. }
  566. .diff-head-box {
  567. margin-top: 10px;
  568. .panel-body {
  569. padding: 10px 15px 5px 10px;
  570. }
  571. .author {
  572. img {
  573. margin-top: -7px;
  574. }
  575. }
  576. }
  577. .diff-detail-box {
  578. margin: 15px 0;
  579. line-height: 30px;
  580. ol {
  581. clear: both;
  582. padding-left: 0;
  583. margin-bottom: 28px;
  584. li {
  585. list-style: none;
  586. padding-bottom: 4px;
  587. margin-bottom: 4px;
  588. border-bottom: 1px dashed #DDD;
  589. padding-left: 6px;
  590. }
  591. }
  592. span.status{
  593. display: inline-block;
  594. width: 12px;
  595. height: 12px;
  596. margin-right: 8px;
  597. vertical-align: middle;
  598. &.modify {
  599. background-color: #f0db88;
  600. }
  601. &.add {
  602. background-color: #b4e2b4;
  603. }
  604. &.del {
  605. background-color: #e9aeae;
  606. }
  607. &.rename {
  608. background-color: #dad8ff;
  609. }
  610. }
  611. }
  612. .diff-box {
  613. .count {
  614. margin-right: 12px;
  615. .bar {
  616. background-color: #e75316;
  617. height: 12px;
  618. width: 40px;
  619. display: inline-block;
  620. margin: 2px 4px 0 4px;
  621. vertical-align: text-top;
  622. .add {
  623. background-color: #77c64a;
  624. height: 12px;
  625. }
  626. }
  627. }
  628. .file {
  629. color: #888;
  630. }
  631. .panel-header {
  632. font-size: 14px;
  633. }
  634. }
  635. .diff-file-box {
  636. .file-body.file-code {
  637. .lines-num {
  638. text-align: right;
  639. color: #999;
  640. background: #fafafa;
  641. width: 1%;
  642. }
  643. .lines-num-old {
  644. border-right: 1px solid #DDD;
  645. }
  646. }
  647. .code-diff {
  648. tbody {
  649. tr {
  650. &.tag-code {
  651. td, pre {
  652. background-color: #E0E0E0 !important;
  653. border-color: #ADADAD !important;
  654. }
  655. td.selected-line, td.selected-line pre {
  656. background-color: #ffffdd !important;
  657. }
  658. }
  659. &.same-code {
  660. td.selected-line, td.selected-line pre {
  661. background-color: #ffffdd !important;
  662. }
  663. }
  664. &.del-code {
  665. td, pre {
  666. background-color: #ffe2dd !important;
  667. border-color: #e9aeae !important;
  668. }
  669. td.selected-line, td.selected-line pre {
  670. background-color: #ffffdd !important;
  671. }
  672. }
  673. &.add-code {
  674. td, pre {
  675. background-color: #d1ffd6 !important;
  676. border-color: #b4e2b4 !important;
  677. }
  678. td.selected-line, td.selected-line pre {
  679. background-color: #ffffdd !important;
  680. }
  681. }
  682. &:hover {
  683. td, pre {
  684. background-color: #FFF8D2 !important;
  685. border-color: #F0DB88 !important;
  686. }
  687. }
  688. }
  689. }
  690. }
  691. }
  692. .compare-head-box {
  693. margin-top: 10px;
  694. .compare {
  695. padding: 0 15px 15px 15px;
  696. }
  697. }
  698. .fork-flag {
  699. display: block;
  700. font-size: 11px;
  701. line-height: 10px;
  702. white-space: nowrap;
  703. margin-left: 44px;
  704. margin-top: -15px;
  705. }
  706. #release {
  707. h4 {
  708. font-size: 18px;
  709. small {
  710. font-weight: 400;
  711. line-height: 1;
  712. color: #999;
  713. }
  714. }
  715. #release-head {
  716. margin-top: 0;
  717. margin-bottom: 0;
  718. padding-bottom: 20px;
  719. border-bottom: 1px solid #DDD;
  720. .btn {
  721. margin-left: 10px;
  722. }
  723. }
  724. .release-item {
  725. &>div {
  726. padding-top: 20px;
  727. padding-bottom: 20px;
  728. }
  729. .label-green:hover {
  730. background-color: @labelGreenColor;
  731. }
  732. .release-meta {
  733. position: relative;
  734. float: left;
  735. padding-right: 15px;
  736. }
  737. .tag,
  738. .commit {
  739. display: block;
  740. margin-top: 12px;
  741. line-height: 20px;
  742. }
  743. .release-detail {
  744. margin-top: -1px;
  745. border-left: 1px solid #DDD;
  746. position: relative;
  747. float: left;
  748. padding-left: 15px;
  749. }
  750. .title {
  751. line-height: 25px;
  752. margin-top: 0;
  753. }
  754. p.info {
  755. line-height: 20px;
  756. color: #666;
  757. margin-bottom: 15px;
  758. >* {
  759. margin-right: 10px;
  760. }
  761. }
  762. .author {
  763. img {
  764. margin-top: -3px;
  765. }
  766. }
  767. div.desc {
  768. margin-bottom: 25px;
  769. &.markdown {
  770. background-color: transparent;
  771. }
  772. }
  773. .download a {
  774. margin-right: 10px;
  775. }
  776. .dot {
  777. width: 9px;
  778. height: 9px;
  779. background-color: #ccc;
  780. z-index: 999;
  781. position: absolute;
  782. display: block;
  783. left: -6px;
  784. top: 27px;
  785. border-radius: 6px;
  786. border: 1px solid #FFF;
  787. }
  788. }
  789. #release-new-form {
  790. padding-top: 15px;
  791. }
  792. }