選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

_repository.less 4.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. .repository {
  2. @mega-octicon-width: 30px;
  3. padding-top: 15px;
  4. padding-bottom: @footer-margin * 3;
  5. .head {
  6. height: 40px;
  7. background-color: #FCFCFC;
  8. .mega-octicon {
  9. width: @mega-octicon-width;
  10. font-size: 30px;
  11. }
  12. a,
  13. .fork-flag {
  14. font-weight: 300;
  15. }
  16. .ui.label {
  17. margin-top: 5px;
  18. vertical-align: top;
  19. }
  20. .fork-flag {
  21. margin-left: @mega-octicon-width + 8px;
  22. display: block;
  23. font-size: 11px;
  24. line-height: 10px;
  25. white-space: nowrap;
  26. }
  27. .num {
  28. font-weight: bold;
  29. }
  30. }
  31. .metas .ui.list {
  32. .label.color {
  33. padding: 0 8px;
  34. margin-right: 5px;
  35. }
  36. a {
  37. padding-top: 5px;
  38. padding-right: 10px;
  39. .text {
  40. color: #444;
  41. &:hover {
  42. color: #000;
  43. }
  44. }
  45. }
  46. }
  47. .filter.menu {
  48. .label.color {
  49. margin-left: 15px;
  50. padding: 0 8px;
  51. }
  52. .octicon {
  53. float: left;
  54. margin-left: -5px;
  55. margin-right: -7px;
  56. }
  57. .menu {
  58. max-height: 300px;
  59. overflow-x: auto;
  60. right: 0!important;
  61. left: auto!important;
  62. .clickable .name {
  63. padding-left: 15px!important;
  64. }
  65. }
  66. }
  67. .page.buttons {
  68. padding-top: 15px;
  69. }
  70. .issue.list {
  71. list-style: none;
  72. padding-top: 15px;
  73. >.item {
  74. padding-top: 15px;
  75. padding-bottom: 10px;
  76. border-bottom: 1px dashed #AAA;
  77. .title {
  78. color: #444;
  79. font-size: 15px;
  80. font-weight: bold;
  81. margin: 0 6px;
  82. &:hover {
  83. color: #000;
  84. }
  85. }
  86. .comment {
  87. padding-right: 10px;
  88. color: #666;
  89. }
  90. .desc {
  91. padding-top: 5px;
  92. color: #999;
  93. a.milestone {
  94. padding-left: 5px;
  95. color: #999!important;
  96. &:hover {
  97. color: #000!important;
  98. }
  99. }
  100. }
  101. }
  102. }
  103. &.new.issue {
  104. .comment.form {
  105. .metas {
  106. min-width: 220px;
  107. .filter.menu {
  108. max-height: 300px;
  109. overflow-x: auto;
  110. }
  111. }
  112. }
  113. }
  114. .comment.form {
  115. .ui.comments {
  116. margin-top: -12px;
  117. max-width: 750px!important;
  118. }
  119. .content {
  120. .field:first-child {
  121. clear: none;
  122. }
  123. .tab.segment {
  124. border: none;
  125. padding: 0;
  126. padding-top: 10px;
  127. }
  128. textarea {
  129. height: 200px;
  130. }
  131. }
  132. }
  133. .label.list {
  134. list-style: none;
  135. padding-top: 15px;
  136. .item {
  137. padding-top: 10px;
  138. padding-bottom: 10px;
  139. border-bottom: 1px dashed #AAA;
  140. a {
  141. font-size: 15px;
  142. padding-top: 5px;
  143. padding-right: 10px;
  144. color: #666;
  145. &:hover {
  146. color: #000;
  147. }
  148. &.open-issues {
  149. margin-right: 30px;
  150. }
  151. }
  152. }
  153. }
  154. .milestone.list {
  155. list-style: none;
  156. padding-top: 15px;
  157. > .item {
  158. padding-top: 10px;
  159. padding-bottom: 10px;
  160. border-bottom: 1px dashed #AAA;
  161. > a {
  162. padding-top: 5px;
  163. padding-right: 10px;
  164. color: #000;
  165. &:hover {
  166. color: #4078c0;
  167. }
  168. }
  169. .ui.progress {
  170. width: 40%;
  171. padding: 0;
  172. border: 0;
  173. margin: 0;
  174. .bar {
  175. height: 20px;
  176. }
  177. }
  178. .meta {
  179. color: #999;
  180. padding-top: 5px;
  181. .issue-stats .octicon{
  182. padding-left: 5px;
  183. }
  184. .overdue {
  185. color: red;
  186. }
  187. }
  188. .operate {
  189. margin-top: -15px;
  190. > a {
  191. font-size: 15px;
  192. padding-top: 5px;
  193. padding-right: 10px;
  194. color: #666;
  195. &:hover {
  196. color: #000;
  197. }
  198. }
  199. }
  200. .content {
  201. padding-top: 10px;
  202. }
  203. }
  204. }
  205. &.new.milestone {
  206. textarea {
  207. height: 200px;
  208. }
  209. #deadline {
  210. width: 150px;
  211. }
  212. }
  213. &.compare.pull {
  214. .choose.branch {
  215. .octicon {
  216. padding-right: 10px;
  217. }
  218. }
  219. }
  220. .filter.dropdown .menu {
  221. margin-top: 1px!important;
  222. .items {
  223. max-height: 300px;
  224. overflow-y: auto;
  225. .item {
  226. position: relative;
  227. cursor: pointer;
  228. display: block;
  229. border: none;
  230. height: auto;
  231. border-top: none;
  232. line-height: 1em;
  233. color: rgba(0,0,0,.8);
  234. padding: .71428571em 1.14285714em!important;
  235. font-size: 1rem;
  236. text-transform: none;
  237. font-weight: 400;
  238. box-shadow: none;
  239. -webkit-touch-callout: none;
  240. &.active {
  241. font-weight: 700;
  242. }
  243. &:hover {
  244. background: rgba(0,0,0,.05);
  245. color: rgba(0,0,0,.8);
  246. z-index: 13;
  247. }
  248. }
  249. }
  250. }
  251. }
  252. .settings .key.list {
  253. .item:not(:first-child) {
  254. border-top: 1px solid #eaeaea;
  255. }
  256. .ssh-key-state-indicator {
  257. float: left;
  258. color: gray;
  259. padding-left: 10px;
  260. padding-top: 10px;
  261. &.active {
  262. color: #6cc644;
  263. }
  264. }
  265. .meta {
  266. padding-top: 5px;
  267. }
  268. .print {
  269. color: #767676;
  270. }
  271. .activity {
  272. color: #666;
  273. }
  274. }
  275. .ui.vertical.menu {
  276. .header.item {
  277. font-size: 1.1em;
  278. background: #f0f0f0;
  279. }
  280. }
  281. .edit-label.modal,
  282. .new-label.segment {
  283. .form {
  284. .column {
  285. padding-right: 0;
  286. }
  287. .buttons {
  288. margin-left: auto;
  289. padding-top: 15px;
  290. }
  291. .color.picker.column {
  292. width: auto;
  293. .color-picker {
  294. height: 35px;
  295. width: auto;
  296. padding-left: 30px;
  297. }
  298. }
  299. .minicolors-swatch.minicolors-sprite {
  300. top: 10px;
  301. left: 10px;
  302. width: 15px;
  303. height: 15px;
  304. }
  305. .precolors {
  306. padding-left: 0;
  307. padding-right: 0;
  308. margin: 3px 10px auto 10px;
  309. width: 120px;
  310. .color {
  311. float: left;
  312. width: 15px;
  313. height: 15px;
  314. }
  315. }
  316. }
  317. }