_repository.less 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721
  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: 300;
  22. font-size: 1.7rem;
  23. }
  24. .fork-flag {
  25. margin-left: @mega-octicon-width + 8px;
  26. display: block;
  27. font-size: 11px;
  28. line-height: 10px;
  29. white-space: nowrap;
  30. }
  31. }
  32. .metas {
  33. .menu {
  34. max-height: 300px;
  35. overflow-x: auto;
  36. }
  37. .ui.list {
  38. .hide {
  39. display: none!important;
  40. }
  41. .label.color {
  42. padding: 0 8px;
  43. margin-right: 5px;
  44. }
  45. a {
  46. padding-top: 5px;
  47. padding-right: 10px;
  48. .text {
  49. color: #444;
  50. &:hover {
  51. color: #000;
  52. }
  53. }
  54. }
  55. }
  56. }
  57. .filter.menu {
  58. .label.color {
  59. margin-left: 15px;
  60. padding: 0 8px;
  61. }
  62. .octicon {
  63. float: left;
  64. margin-left: -5px;
  65. margin-right: -7px;
  66. }
  67. .menu {
  68. max-height: 300px;
  69. overflow-x: auto;
  70. right: 0!important;
  71. left: auto!important;
  72. }
  73. .dropdown.item {
  74. margin: 1px;
  75. padding-right: 0;
  76. }
  77. }
  78. @comment-avatar-width: 3em;
  79. &.new.issue {
  80. .comment.form {
  81. .comment {
  82. .avatar {
  83. width: @comment-avatar-width;
  84. }
  85. }
  86. .content {
  87. margin-left: 4em;
  88. .markdown {
  89. font-size: 14px;
  90. }
  91. }
  92. .metas {
  93. min-width: 220px;
  94. .filter.menu {
  95. max-height: 300px;
  96. overflow-x: auto;
  97. }
  98. }
  99. }
  100. }
  101. &.view.issue {
  102. .title {
  103. padding-bottom: 0!important;
  104. h1 {
  105. font-weight: 300;
  106. font-size: 3rem;
  107. margin-bottom: 5px;
  108. .ui.input {
  109. font-size: 0.5em;
  110. vertical-align: top;
  111. width: 50%;
  112. min-width: 600px;
  113. input {
  114. font-size: 1.5em;
  115. padding: 6px 10px;
  116. }
  117. }
  118. }
  119. .index {
  120. font-weight: 300;
  121. color: #aaa;
  122. letter-spacing: -1px;
  123. }
  124. .label {
  125. margin-right: 10px;
  126. }
  127. .edit-zone {
  128. margin-top: 10px;
  129. }
  130. }
  131. .comment-list {
  132. &:before {
  133. display: block;
  134. content: "";
  135. position: absolute;
  136. margin-top: 12px;
  137. margin-bottom: 14px;
  138. top: 0;
  139. bottom: 0;
  140. left: 96px;
  141. width: 2px;
  142. background-color: #f3f3f3;
  143. z-index: -1;
  144. }
  145. .comment {
  146. .avatar {
  147. width: @comment-avatar-width;
  148. }
  149. .tag {
  150. color: #767676;
  151. margin-top: 3px;
  152. padding: 2px 5px;
  153. font-size: 12px;
  154. border: 1px solid rgba(0,0,0,0.1);
  155. border-radius: 3px;
  156. }
  157. .actions {
  158. .item {
  159. float: left;
  160. }
  161. a.item {
  162. margin-top: 6px;
  163. margin-left: 10px;
  164. }
  165. }
  166. .content {
  167. margin-left: 4em;
  168. .header {
  169. font-weight: normal;
  170. padding: auto 15px;
  171. color: #767676;
  172. background-color: #f7f7f7;
  173. border-bottom: 1px solid #eee;
  174. border-top-left-radius: 3px;
  175. border-top-right-radius: 3px;
  176. .text {
  177. max-width: 78%;
  178. padding-top: 10px;
  179. padding-bottom: 10px;
  180. }
  181. }
  182. .markdown {
  183. font-size: 14px;
  184. }
  185. .no-content {
  186. color: #767676;
  187. font-style: italic;
  188. }
  189. > .bottom.segment {
  190. background: #f3f4f5;
  191. .ui.image {
  192. max-height: 150px;
  193. }
  194. }
  195. }
  196. .ui.form {
  197. .field:first-child {
  198. clear: none;
  199. }
  200. .tab.segment {
  201. border: none;
  202. padding: 0;
  203. padding-top: 10px;
  204. }
  205. textarea {
  206. height: 200px;
  207. }
  208. }
  209. .edit.buttons {
  210. margin-top: 10px;
  211. }
  212. }
  213. .event {
  214. position: relative;
  215. margin: 15px 0 15px 79px;
  216. padding-left: 25px;
  217. .octicon {
  218. width: 30px;
  219. float: left;
  220. margin-left: -36px;
  221. text-align: center;
  222. &.octicon-circle-slash {
  223. margin-top: 5px;
  224. font-size: 20px;
  225. color: #bd2c00;
  226. }
  227. &.octicon-primitive-dot {
  228. font-size: 35px;
  229. color: #6cc644;
  230. }
  231. }
  232. }
  233. }
  234. .ui.segment.metas {
  235. margin-top: -3px;
  236. }
  237. }
  238. .comment.form {
  239. .ui.comments {
  240. margin-top: -12px;
  241. max-width: 100%;
  242. }
  243. .content {
  244. .field:first-child {
  245. clear: none;
  246. }
  247. .tab.segment {
  248. border: none;
  249. padding: 0;
  250. padding-top: 10px;
  251. }
  252. textarea {
  253. height: 200px;
  254. }
  255. }
  256. }
  257. .label.list {
  258. list-style: none;
  259. padding-top: 15px;
  260. .item {
  261. padding-top: 10px;
  262. padding-bottom: 10px;
  263. border-bottom: 1px dashed #AAA;
  264. a {
  265. font-size: 15px;
  266. padding-top: 5px;
  267. padding-right: 10px;
  268. color: #666;
  269. &:hover {
  270. color: #000;
  271. }
  272. &.open-issues {
  273. margin-right: 30px;
  274. }
  275. }
  276. }
  277. }
  278. .milestone.list {
  279. list-style: none;
  280. padding-top: 15px;
  281. > .item {
  282. padding-top: 10px;
  283. padding-bottom: 10px;
  284. border-bottom: 1px dashed #AAA;
  285. > a {
  286. padding-top: 5px;
  287. padding-right: 10px;
  288. color: #000;
  289. &:hover {
  290. color: #4078c0;
  291. }
  292. }
  293. .ui.progress {
  294. width: 40%;
  295. padding: 0;
  296. border: 0;
  297. margin: 0;
  298. .bar {
  299. height: 20px;
  300. }
  301. }
  302. .meta {
  303. color: #999;
  304. padding-top: 5px;
  305. .issue-stats .octicon{
  306. padding-left: 5px;
  307. }
  308. .overdue {
  309. color: red;
  310. }
  311. }
  312. .operate {
  313. margin-top: -15px;
  314. > a {
  315. font-size: 15px;
  316. padding-top: 5px;
  317. padding-right: 10px;
  318. color: #666;
  319. &:hover {
  320. color: #000;
  321. }
  322. }
  323. }
  324. .content {
  325. padding-top: 10px;
  326. }
  327. }
  328. }
  329. &.new.milestone {
  330. textarea {
  331. height: 200px;
  332. }
  333. #deadline {
  334. width: 150px;
  335. }
  336. }
  337. &.compare.pull {
  338. .choose.branch {
  339. .octicon {
  340. padding-right: 10px;
  341. }
  342. }
  343. }
  344. .filter.dropdown .menu {
  345. margin-top: 1px!important;
  346. }
  347. &.commits {
  348. .header {
  349. .ui.right {
  350. .search {
  351. input {
  352. font-weight: normal;
  353. padding: 5px 10px;
  354. }
  355. }
  356. .button {
  357. float: right;
  358. margin-left: 5px;
  359. margin-top: 1px;
  360. }
  361. }
  362. }
  363. }
  364. .commits.table {
  365. font-size: 13px;
  366. th, td {
  367. &:first-child {
  368. padding-left: 15px;
  369. }
  370. }
  371. td {
  372. line-height: 15px;
  373. }
  374. .author {
  375. min-width: 180px;
  376. }
  377. .message span {
  378. max-width: 500px;
  379. }
  380. .date {
  381. width: 120px;
  382. }
  383. }
  384. .sha.label {
  385. font-family: Consolas, Menlo, Monaco, "Lucida Console", monospace;
  386. font-size: 14px;
  387. padding: 6px 10px 4px 10px;
  388. font-weight: normal;
  389. }
  390. .diff-detail-box {
  391. margin: 15px 0;
  392. line-height: 30px;
  393. ol {
  394. clear: both;
  395. padding-left: 0;
  396. margin-top: 5px;
  397. margin-bottom: 28px;
  398. li {
  399. list-style: none;
  400. padding-bottom: 4px;
  401. margin-bottom: 4px;
  402. border-bottom: 1px dashed #DDD;
  403. padding-left: 6px;
  404. }
  405. }
  406. span.status{
  407. display: inline-block;
  408. width: 12px;
  409. height: 12px;
  410. margin-right: 8px;
  411. vertical-align: middle;
  412. &.modify {
  413. background-color: #f0db88;
  414. }
  415. &.add {
  416. background-color: #b4e2b4;
  417. }
  418. &.del {
  419. background-color: #e9aeae;
  420. }
  421. &.rename {
  422. background-color: #dad8ff;
  423. }
  424. }
  425. }
  426. .diff-box {
  427. .count {
  428. margin-right: 12px;
  429. .bar {
  430. background-color: #e75316;
  431. height: 12px;
  432. width: 40px;
  433. display: inline-block;
  434. margin: 2px 4px 0 4px;
  435. vertical-align: text-top;
  436. .add {
  437. background-color: #77c64a;
  438. height: 12px;
  439. }
  440. }
  441. }
  442. .file {
  443. color: #888;
  444. }
  445. }
  446. .diff-file-box {
  447. .header {
  448. border-bottom: 1px solid #d4d4d5!important;
  449. }
  450. .file-body.file-code {
  451. .lines-num {
  452. text-align: right;
  453. color: #999;
  454. background: #fafafa;
  455. width: 1%;
  456. }
  457. .lines-num-old {
  458. border-right: 1px solid #DDD;
  459. }
  460. }
  461. .code-diff {
  462. font-size: 13px;
  463. td {
  464. padding: 0;
  465. border-top: none;
  466. }
  467. pre {
  468. margin: 0;
  469. }
  470. .lines-num {
  471. border-right: 1px solid #d4d4d5;
  472. padding: 0 5px;
  473. }
  474. tbody {
  475. tr {
  476. &.tag-code {
  477. td, pre {
  478. background-color: #E0E0E0 !important;
  479. border-color: #ADADAD!important;
  480. }
  481. // td.selected-line, td.selected-line pre {
  482. // background-color: #ffffdd !important;
  483. // }
  484. }
  485. // &.same-code {
  486. // td.selected-line, td.selected-line pre {
  487. // background-color: #ffffdd !important;
  488. // }
  489. // }
  490. &.del-code {
  491. td, pre {
  492. background-color: #ffe2dd !important;
  493. border-color: #e9aeae !important;
  494. }
  495. // td.selected-line, td.selected-line pre {
  496. // background-color: #ffffdd !important;
  497. // }
  498. }
  499. &.add-code {
  500. td, pre {
  501. background-color: #d1ffd6 !important;
  502. border-color: #b4e2b4 !important;
  503. }
  504. // td.selected-line, td.selected-line pre {
  505. // background-color: #ffffdd !important;
  506. // }
  507. }
  508. &:hover {
  509. td {
  510. background-color: #FFF8D2 !important;
  511. border-color: #F0DB88 !important;
  512. }
  513. pre {
  514. background-color: transparent !important;
  515. }
  516. }
  517. }
  518. }
  519. }
  520. }
  521. .code-view {
  522. overflow: auto;
  523. overflow-x: auto;
  524. overflow-y: hidden;
  525. }
  526. }
  527. .issue.list {
  528. list-style: none;
  529. padding-top: 15px;
  530. >.item {
  531. padding-top: 15px;
  532. padding-bottom: 10px;
  533. border-bottom: 1px dashed #AAA;
  534. .title {
  535. color: #444;
  536. font-size: 15px;
  537. font-weight: bold;
  538. margin: 0 6px;
  539. &:hover {
  540. color: #000;
  541. }
  542. }
  543. .comment {
  544. padding-right: 10px;
  545. color: #666;
  546. }
  547. .desc {
  548. padding-top: 5px;
  549. color: #999;
  550. a.milestone {
  551. padding-left: 5px;
  552. color: #999!important;
  553. &:hover {
  554. color: #000!important;
  555. }
  556. }
  557. .assignee {
  558. margin-top: -5px;
  559. margin-right: 5px;
  560. }
  561. }
  562. }
  563. }
  564. .page.buttons {
  565. padding-top: 15px;
  566. }
  567. .ui.comments {
  568. .dropzone {
  569. width: 100%;
  570. margin-bottom: 10px;
  571. border: 2px dashed #0087F7;
  572. box-shadow: none!important;
  573. .dz-error-message {
  574. top: 140px;
  575. }
  576. }
  577. }
  578. .settings {
  579. .content {
  580. margin-top: 2px;
  581. .header,
  582. .segment {
  583. box-shadow: 0 1px 2px 0 rgba(34,36,38,.15);
  584. }
  585. }
  586. .key.list {
  587. .item:not(:first-child) {
  588. border-top: 1px solid #eaeaea;
  589. }
  590. .ssh-key-state-indicator {
  591. float: left;
  592. color: gray;
  593. padding-left: 10px;
  594. padding-top: 10px;
  595. &.active {
  596. color: #6cc644;
  597. }
  598. }
  599. .meta {
  600. padding-top: 5px;
  601. }
  602. .print {
  603. color: #767676;
  604. }
  605. .activity {
  606. color: #666;
  607. }
  608. }
  609. .hook.list {
  610. > .item:not(:first-child) {
  611. border-top: 1px solid #eaeaea;
  612. }
  613. .item {
  614. padding: 10px 20px;
  615. .octicon,
  616. .fa {
  617. width: 20px;
  618. text-align: center;
  619. }
  620. }
  621. }
  622. .hook.history.list {
  623. .item {
  624. padding-left: 13px;
  625. .meta {
  626. .ui.right {
  627. margin-top: 5px;
  628. .time {
  629. font-size: 12px;
  630. }
  631. }
  632. }
  633. .info {
  634. margin-top: 10px;
  635. .tabular.menu {
  636. .item {
  637. font-weight: 500;
  638. }
  639. }
  640. .tab.segment {
  641. border: none;
  642. padding: 0;
  643. padding-top: 10px;
  644. box-shadow: none;
  645. > * {
  646. color: #666;
  647. }
  648. pre {
  649. word-wrap: break-word;
  650. .hljs {
  651. padding: 0;
  652. background-color: inherit;
  653. }
  654. }
  655. }
  656. }
  657. }
  658. }
  659. }
  660. .ui.vertical.menu {
  661. .header.item {
  662. font-size: 1.1em;
  663. background: #f0f0f0;
  664. }
  665. }
  666. .edit-label.modal,
  667. .new-label.segment {
  668. .form {
  669. .column {
  670. padding-right: 0;
  671. }
  672. .buttons {
  673. margin-left: auto;
  674. padding-top: 15px;
  675. }
  676. .color.picker.column {
  677. width: auto;
  678. .color-picker {
  679. height: 35px;
  680. width: auto;
  681. padding-left: 30px;
  682. }
  683. }
  684. .minicolors-swatch.minicolors-sprite {
  685. top: 10px;
  686. left: 10px;
  687. width: 15px;
  688. height: 15px;
  689. }
  690. .precolors {
  691. padding-left: 0;
  692. padding-right: 0;
  693. margin: 3px 10px auto 10px;
  694. width: 120px;
  695. .color {
  696. float: left;
  697. width: 15px;
  698. height: 15px;
  699. }
  700. }
  701. }
  702. }