You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gogs.css 57KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622
  1. .emoji {
  2. width: 1.5em;
  3. height: 1.5em;
  4. display: inline-block;
  5. background-size: contain;
  6. }
  7. body {
  8. font-family: "Helvetica Neue", "Microsoft YaHei", Arial, Helvetica, sans-serif !important;
  9. background-color: #fff;
  10. overflow-y: scroll;
  11. }
  12. img {
  13. border-radius: 3px;
  14. }
  15. pre,
  16. code {
  17. font: 12px Consolas, "Liberation Mono", Menlo, Courier, monospace;
  18. }
  19. pre.raw,
  20. code.raw {
  21. padding: 7px 12px;
  22. margin: 10px 0;
  23. background-color: #f8f8f8;
  24. border: 1px solid #ddd;
  25. border-radius: 3px;
  26. font-size: 13px;
  27. line-height: 1.5;
  28. overflow: auto;
  29. }
  30. pre.wrap,
  31. code.wrap {
  32. white-space: pre-wrap;
  33. /* CSS 3 */
  34. word-break: break-word;
  35. }
  36. .full.height {
  37. padding: 0;
  38. margin: 0 0 -80px 0;
  39. min-height: 100%;
  40. }
  41. .following.bar {
  42. z-index: 900;
  43. left: 0;
  44. width: 100%;
  45. }
  46. .following.bar.light {
  47. background-color: white;
  48. border-bottom: 1px solid #DDDDDD;
  49. box-shadow: 0 2px 3px rgba(0, 0, 0, 0.04);
  50. }
  51. .following.bar .column .menu {
  52. margin-top: 0;
  53. }
  54. .following.bar .top.menu a.item.brand {
  55. padding-left: 0;
  56. }
  57. .following.bar .brand .ui.mini.image {
  58. width: 30px;
  59. }
  60. .following.bar .top.menu a.item:hover,
  61. .following.bar .top.menu .dropdown.item:hover,
  62. .following.bar .top.menu .dropdown.item.active {
  63. background-color: transparent;
  64. }
  65. .following.bar .top.menu a.item:hover {
  66. color: rgba(0, 0, 0, 0.45);
  67. }
  68. .following.bar .top.menu .menu {
  69. z-index: 900;
  70. }
  71. .following.bar .head.link.item {
  72. padding-right: 0 !important;
  73. }
  74. .following.bar .head.link.item .dropdown.icon,
  75. .following.bar .head.link.item .menu .octicon {
  76. margin-right: 5px;
  77. }
  78. .following.bar .avatar > .ui.image {
  79. margin-right: 0;
  80. }
  81. .following.bar .searchbox {
  82. background-color: #f4f4f4 !important;
  83. }
  84. .following.bar .searchbox:focus {
  85. background-color: #e9e9e9 !important;
  86. }
  87. .following.bar .text .octicon {
  88. width: 16px;
  89. text-align: center;
  90. }
  91. .following.bar .right.menu .menu {
  92. left: auto;
  93. right: 0;
  94. }
  95. .following.bar .right.menu .dropdown .menu {
  96. margin-top: 0;
  97. }
  98. .ui.left {
  99. float: left;
  100. }
  101. .ui.right {
  102. float: right;
  103. }
  104. .ui.container.fluid.padded {
  105. padding: 0 10px 0 10px;
  106. }
  107. .ui.form .ui.button {
  108. font-weight: normal;
  109. }
  110. .ui .text.red {
  111. color: #d95c5c !important;
  112. }
  113. .ui .text.red a {
  114. color: #d95c5c !important;
  115. }
  116. .ui .text.red a:hover {
  117. color: #E67777 !important;
  118. }
  119. .ui .text.blue {
  120. color: #428bca !important;
  121. }
  122. .ui .text.blue a {
  123. color: #15c !important;
  124. }
  125. .ui .text.blue a:hover {
  126. color: #428bca !important;
  127. }
  128. .ui .text.black {
  129. color: #444;
  130. }
  131. .ui .text.black:hover {
  132. color: #000;
  133. }
  134. .ui .text.grey {
  135. color: #767676 !important;
  136. }
  137. .ui .text.grey a {
  138. color: #444 !important;
  139. }
  140. .ui .text.grey a:hover {
  141. color: #000 !important;
  142. }
  143. .ui .text.light.grey {
  144. color: #888 !important;
  145. }
  146. .ui .text.green {
  147. color: #6cc644 !important;
  148. }
  149. .ui .text.purple {
  150. color: #6e5494 !important;
  151. }
  152. .ui .text.yellow {
  153. color: #FBBD08 !important;
  154. }
  155. .ui .text.gold {
  156. color: #a1882b !important;
  157. }
  158. .ui .text.left {
  159. text-align: left !important;
  160. }
  161. .ui .text.right {
  162. text-align: right !important;
  163. }
  164. .ui .text.small {
  165. font-size: 0.75em;
  166. }
  167. .ui .text.normal {
  168. font-weight: normal;
  169. }
  170. .ui .text.bold {
  171. font-weight: bold;
  172. }
  173. .ui .text.italic {
  174. font-style: italic;
  175. }
  176. .ui .text.truncate {
  177. overflow: hidden;
  178. text-overflow: ellipsis;
  179. white-space: nowrap;
  180. display: inline-block;
  181. }
  182. .ui .text.thin {
  183. font-weight: normal;
  184. }
  185. .ui .text.middle {
  186. vertical-align: middle;
  187. }
  188. .ui .message {
  189. text-align: center;
  190. }
  191. .ui .header > i + .content {
  192. padding-left: 0.75rem;
  193. vertical-align: middle;
  194. }
  195. .ui .warning.header {
  196. background-color: #F9EDBE !important;
  197. border-color: #F0C36D;
  198. }
  199. .ui .warning.segment {
  200. border-color: #F0C36D;
  201. }
  202. .ui .info.segment {
  203. border: 1px solid #c5d5dd;
  204. }
  205. .ui .info.segment.top {
  206. background-color: #e6f1f6 !important;
  207. }
  208. .ui .info.segment.top h3,
  209. .ui .info.segment.top h4 {
  210. margin-top: 0;
  211. }
  212. .ui .info.segment.top h3:last-child {
  213. margin-top: 4px;
  214. }
  215. .ui .info.segment.top > :last-child {
  216. margin-bottom: 0;
  217. }
  218. .ui .normal.header {
  219. font-weight: normal;
  220. }
  221. .ui .avatar.image {
  222. border-radius: 3px;
  223. }
  224. .ui .form .fake {
  225. display: none !important;
  226. }
  227. .ui .form .sub.field {
  228. margin-left: 25px;
  229. }
  230. .ui .sha.label {
  231. font-family: Consolas, Menlo, Monaco, "Lucida Console", monospace;
  232. font-size: 13px;
  233. padding: 6px 10px 4px 10px;
  234. font-weight: normal;
  235. margin: 0 6px;
  236. }
  237. .ui.status.buttons .octicon {
  238. margin-right: 4px;
  239. }
  240. .ui.inline.delete-button {
  241. padding: 8px 15px;
  242. font-weight: normal;
  243. }
  244. .overflow.menu .items {
  245. max-height: 300px;
  246. overflow-y: auto;
  247. }
  248. .overflow.menu .items .item {
  249. position: relative;
  250. cursor: pointer;
  251. display: block;
  252. border: none;
  253. height: auto;
  254. border-top: none;
  255. line-height: 1em;
  256. color: rgba(0, 0, 0, 0.8);
  257. padding: .71428571em 1.14285714em !important;
  258. font-size: 1rem;
  259. text-transform: none;
  260. font-weight: 400;
  261. box-shadow: none;
  262. -webkit-touch-callout: none;
  263. }
  264. .overflow.menu .items .item.active {
  265. font-weight: 700;
  266. }
  267. .overflow.menu .items .item:hover {
  268. background: rgba(0, 0, 0, 0.05);
  269. color: rgba(0, 0, 0, 0.8);
  270. z-index: 13;
  271. }
  272. .scrolling.menu .item.selected {
  273. font-weight: 700 !important;
  274. }
  275. footer {
  276. margin-top: 54px !important;
  277. height: 40px;
  278. background-color: white;
  279. border-top: 1px solid #d6d6d6;
  280. clear: both;
  281. width: 100%;
  282. color: #888888;
  283. }
  284. footer .container {
  285. padding-top: 10px;
  286. }
  287. footer .container .fa {
  288. width: 16px;
  289. text-align: center;
  290. color: #428bca;
  291. }
  292. footer .container .links > * {
  293. border-left: 1px solid #d6d6d6;
  294. padding-left: 8px;
  295. margin-left: 5px;
  296. }
  297. footer .container .links > *:first-child {
  298. border-left: none;
  299. }
  300. .hide {
  301. display: none;
  302. }
  303. .center {
  304. text-align: center;
  305. }
  306. .img-1 {
  307. width: 2px !important;
  308. height: 2px !important;
  309. }
  310. .img-2 {
  311. width: 4px !important;
  312. height: 4px !important;
  313. }
  314. .img-3 {
  315. width: 6px !important;
  316. height: 6px !important;
  317. }
  318. .img-4 {
  319. width: 8px !important;
  320. height: 8px !important;
  321. }
  322. .img-5 {
  323. width: 10px !important;
  324. height: 10px !important;
  325. }
  326. .img-6 {
  327. width: 12px !important;
  328. height: 12px !important;
  329. }
  330. .img-7 {
  331. width: 14px !important;
  332. height: 14px !important;
  333. }
  334. .img-8 {
  335. width: 16px !important;
  336. height: 16px !important;
  337. }
  338. .img-9 {
  339. width: 18px !important;
  340. height: 18px !important;
  341. }
  342. .img-10 {
  343. width: 20px !important;
  344. height: 20px !important;
  345. }
  346. .img-11 {
  347. width: 22px !important;
  348. height: 22px !important;
  349. }
  350. .img-12 {
  351. width: 24px !important;
  352. height: 24px !important;
  353. }
  354. .img-13 {
  355. width: 26px !important;
  356. height: 26px !important;
  357. }
  358. .img-14 {
  359. width: 28px !important;
  360. height: 28px !important;
  361. }
  362. .img-15 {
  363. width: 30px !important;
  364. height: 30px !important;
  365. }
  366. .img-16 {
  367. width: 32px !important;
  368. height: 32px !important;
  369. }
  370. .octicon.icon,
  371. .mega-octicon.icon {
  372. font-family: octicons;
  373. font-size: 16px;
  374. opacity: 1 !important;
  375. }
  376. .sr-only {
  377. position: absolute;
  378. width: 1px;
  379. height: 1px;
  380. padding: 0;
  381. margin: -1px;
  382. overflow: hidden;
  383. clip: rect(0, 0, 0, 0);
  384. border: 0;
  385. }
  386. .sr-only-focusable:active,
  387. .sr-only-focusable:focus {
  388. position: static;
  389. width: auto;
  390. height: auto;
  391. margin: 0;
  392. overflow: visible;
  393. clip: auto;
  394. }
  395. @media only screen and (max-width: 991px) and (min-width: 768px) {
  396. .ui.container {
  397. width: 95%;
  398. }
  399. }
  400. /* Overrides some styles of the Highlight.js plugin */
  401. .hljs {
  402. background: inherit !important;
  403. padding: 0 !important;
  404. }
  405. .markdown:not(code) {
  406. overflow: hidden;
  407. font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif;
  408. font-size: 16px;
  409. line-height: 1.6 !important;
  410. word-wrap: break-word;
  411. }
  412. .markdown:not(code).file-view {
  413. padding: 2em 2em 2em !important;
  414. }
  415. .markdown:not(code) > *:first-child {
  416. margin-top: 0 !important;
  417. }
  418. .markdown:not(code) > *:last-child {
  419. margin-bottom: 0 !important;
  420. }
  421. .markdown:not(code) a:not([href]) {
  422. color: inherit;
  423. text-decoration: none;
  424. }
  425. .markdown:not(code) .absent {
  426. color: #c00;
  427. }
  428. .markdown:not(code) .anchor {
  429. position: absolute;
  430. top: 0;
  431. left: 0;
  432. display: block;
  433. padding-right: 6px;
  434. padding-left: 30px;
  435. margin-left: -30px;
  436. }
  437. .markdown:not(code) .anchor:focus {
  438. outline: none;
  439. }
  440. .markdown:not(code) h1,
  441. .markdown:not(code) h2,
  442. .markdown:not(code) h3,
  443. .markdown:not(code) h4,
  444. .markdown:not(code) h5,
  445. .markdown:not(code) h6 {
  446. position: relative;
  447. margin-top: 1em;
  448. margin-bottom: 16px;
  449. font-weight: bold;
  450. line-height: 1.4;
  451. }
  452. .markdown:not(code) h1:first-of-type,
  453. .markdown:not(code) h2:first-of-type,
  454. .markdown:not(code) h3:first-of-type,
  455. .markdown:not(code) h4:first-of-type,
  456. .markdown:not(code) h5:first-of-type,
  457. .markdown:not(code) h6:first-of-type {
  458. margin-top: 0 !important;
  459. }
  460. .markdown:not(code) h1 .octicon-link,
  461. .markdown:not(code) h2 .octicon-link,
  462. .markdown:not(code) h3 .octicon-link,
  463. .markdown:not(code) h4 .octicon-link,
  464. .markdown:not(code) h5 .octicon-link,
  465. .markdown:not(code) h6 .octicon-link {
  466. display: none;
  467. color: #000;
  468. vertical-align: middle;
  469. }
  470. .markdown:not(code) h1:hover .anchor,
  471. .markdown:not(code) h2:hover .anchor,
  472. .markdown:not(code) h3:hover .anchor,
  473. .markdown:not(code) h4:hover .anchor,
  474. .markdown:not(code) h5:hover .anchor,
  475. .markdown:not(code) h6:hover .anchor {
  476. padding-left: 8px;
  477. margin-left: -30px;
  478. text-decoration: none;
  479. }
  480. .markdown:not(code) h1:hover .anchor .octicon-link,
  481. .markdown:not(code) h2:hover .anchor .octicon-link,
  482. .markdown:not(code) h3:hover .anchor .octicon-link,
  483. .markdown:not(code) h4:hover .anchor .octicon-link,
  484. .markdown:not(code) h5:hover .anchor .octicon-link,
  485. .markdown:not(code) h6:hover .anchor .octicon-link {
  486. display: inline-block;
  487. }
  488. .markdown:not(code) h1 tt,
  489. .markdown:not(code) h1 code,
  490. .markdown:not(code) h2 tt,
  491. .markdown:not(code) h2 code,
  492. .markdown:not(code) h3 tt,
  493. .markdown:not(code) h3 code,
  494. .markdown:not(code) h4 tt,
  495. .markdown:not(code) h4 code,
  496. .markdown:not(code) h5 tt,
  497. .markdown:not(code) h5 code,
  498. .markdown:not(code) h6 tt,
  499. .markdown:not(code) h6 code {
  500. font-size: inherit;
  501. }
  502. .markdown:not(code) h1 {
  503. padding-bottom: 0.3em;
  504. font-size: 2.25em;
  505. line-height: 1.2;
  506. border-bottom: 1px solid #eee;
  507. }
  508. .markdown:not(code) h1 .anchor {
  509. line-height: 1;
  510. }
  511. .markdown:not(code) h2 {
  512. padding-bottom: 0.3em;
  513. font-size: 1.75em;
  514. line-height: 1.225;
  515. border-bottom: 1px solid #eee;
  516. }
  517. .markdown:not(code) h2 .anchor {
  518. line-height: 1;
  519. }
  520. .markdown:not(code) h3 {
  521. font-size: 1.5em;
  522. line-height: 1.43;
  523. }
  524. .markdown:not(code) h3 .anchor {
  525. line-height: 1.2;
  526. }
  527. .markdown:not(code) h4 {
  528. font-size: 1.25em;
  529. }
  530. .markdown:not(code) h4 .anchor {
  531. line-height: 1.2;
  532. }
  533. .markdown:not(code) h5 {
  534. font-size: 1em;
  535. }
  536. .markdown:not(code) h5 .anchor {
  537. line-height: 1.1;
  538. }
  539. .markdown:not(code) h6 {
  540. font-size: 1em;
  541. color: #777;
  542. }
  543. .markdown:not(code) h6 .anchor {
  544. line-height: 1.1;
  545. }
  546. .markdown:not(code) p,
  547. .markdown:not(code) blockquote,
  548. .markdown:not(code) ul,
  549. .markdown:not(code) ol,
  550. .markdown:not(code) dl,
  551. .markdown:not(code) table,
  552. .markdown:not(code) pre {
  553. margin-top: 0;
  554. margin-bottom: 16px;
  555. }
  556. .markdown:not(code) blockquote {
  557. margin-left: 0;
  558. }
  559. .markdown:not(code) hr {
  560. height: 4px;
  561. padding: 0;
  562. margin: 16px 0;
  563. background-color: #e7e7e7;
  564. border: 0 none;
  565. }
  566. .markdown:not(code) ul,
  567. .markdown:not(code) ol {
  568. padding-left: 2em;
  569. }
  570. .markdown:not(code) ul.no-list,
  571. .markdown:not(code) ol.no-list {
  572. padding: 0;
  573. list-style-type: none;
  574. }
  575. .markdown:not(code) ul ul,
  576. .markdown:not(code) ul ol,
  577. .markdown:not(code) ol ol,
  578. .markdown:not(code) ol ul {
  579. margin-top: 0;
  580. margin-bottom: 0;
  581. }
  582. .markdown:not(code) ol ol,
  583. .markdown:not(code) ul ol {
  584. list-style-type: lower-roman;
  585. }
  586. .markdown:not(code) li > p {
  587. margin-top: 16px;
  588. }
  589. .markdown:not(code) dl {
  590. padding: 0;
  591. }
  592. .markdown:not(code) dl dt {
  593. padding: 0;
  594. margin-top: 16px;
  595. font-size: 1em;
  596. font-style: italic;
  597. font-weight: bold;
  598. }
  599. .markdown:not(code) dl dd {
  600. padding: 0 16px;
  601. margin-bottom: 16px;
  602. }
  603. .markdown:not(code) blockquote {
  604. padding: 0 15px;
  605. color: #777;
  606. border-left: 4px solid #ddd;
  607. }
  608. .markdown:not(code) blockquote > :first-child {
  609. margin-top: 0;
  610. }
  611. .markdown:not(code) blockquote > :last-child {
  612. margin-bottom: 0;
  613. }
  614. .markdown:not(code) table {
  615. display: block;
  616. width: 100%;
  617. overflow: auto;
  618. word-break: normal;
  619. word-break: keep-all;
  620. }
  621. .markdown:not(code) table th {
  622. font-weight: bold;
  623. }
  624. .markdown:not(code) table th,
  625. .markdown:not(code) table td {
  626. padding: 6px 13px !important;
  627. border: 1px solid #ddd !important;
  628. }
  629. .markdown:not(code) table tr {
  630. background-color: #fff;
  631. border-top: 1px solid #ccc;
  632. }
  633. .markdown:not(code) table tr:nth-child(2n) {
  634. background-color: #f8f8f8;
  635. }
  636. .markdown:not(code) img {
  637. max-width: 100%;
  638. box-sizing: border-box;
  639. }
  640. .markdown:not(code) .emoji {
  641. max-width: none;
  642. }
  643. .markdown:not(code) span.frame {
  644. display: block;
  645. overflow: hidden;
  646. }
  647. .markdown:not(code) span.frame > span {
  648. display: block;
  649. float: left;
  650. width: auto;
  651. padding: 7px;
  652. margin: 13px 0 0;
  653. overflow: hidden;
  654. border: 1px solid #ddd;
  655. }
  656. .markdown:not(code) span.frame span img {
  657. display: block;
  658. float: left;
  659. }
  660. .markdown:not(code) span.frame span span {
  661. display: block;
  662. padding: 5px 0 0;
  663. clear: both;
  664. color: #333;
  665. }
  666. .markdown:not(code) span.align-center {
  667. display: block;
  668. overflow: hidden;
  669. clear: both;
  670. }
  671. .markdown:not(code) span.align-center > span {
  672. display: block;
  673. margin: 13px auto 0;
  674. overflow: hidden;
  675. text-align: center;
  676. }
  677. .markdown:not(code) span.align-center span img {
  678. margin: 0 auto;
  679. text-align: center;
  680. }
  681. .markdown:not(code) span.align-right {
  682. display: block;
  683. overflow: hidden;
  684. clear: both;
  685. }
  686. .markdown:not(code) span.align-right > span {
  687. display: block;
  688. margin: 13px 0 0;
  689. overflow: hidden;
  690. text-align: right;
  691. }
  692. .markdown:not(code) span.align-right span img {
  693. margin: 0;
  694. text-align: right;
  695. }
  696. .markdown:not(code) span.float-left {
  697. display: block;
  698. float: left;
  699. margin-right: 13px;
  700. overflow: hidden;
  701. }
  702. .markdown:not(code) span.float-left span {
  703. margin: 13px 0 0;
  704. }
  705. .markdown:not(code) span.float-right {
  706. display: block;
  707. float: right;
  708. margin-left: 13px;
  709. overflow: hidden;
  710. }
  711. .markdown:not(code) span.float-right > span {
  712. display: block;
  713. margin: 13px auto 0;
  714. overflow: hidden;
  715. text-align: right;
  716. }
  717. .markdown:not(code) code,
  718. .markdown:not(code) tt {
  719. padding: 0;
  720. padding-top: 0.2em;
  721. padding-bottom: 0.2em;
  722. margin: 0;
  723. font-size: 85%;
  724. background-color: rgba(0, 0, 0, 0.04);
  725. border-radius: 3px;
  726. }
  727. .markdown:not(code) code:before,
  728. .markdown:not(code) code:after,
  729. .markdown:not(code) tt:before,
  730. .markdown:not(code) tt:after {
  731. letter-spacing: -0.2em;
  732. content: "\00a0";
  733. }
  734. .markdown:not(code) code br,
  735. .markdown:not(code) tt br {
  736. display: none;
  737. }
  738. .markdown:not(code) del code {
  739. text-decoration: inherit;
  740. }
  741. .markdown:not(code) pre > code {
  742. padding: 0;
  743. margin: 0;
  744. font-size: 100%;
  745. word-break: normal;
  746. white-space: pre;
  747. background: transparent;
  748. border: 0;
  749. }
  750. .markdown:not(code) .highlight {
  751. margin-bottom: 16px;
  752. }
  753. .markdown:not(code) .highlight pre,
  754. .markdown:not(code) pre {
  755. padding: 16px;
  756. overflow: auto;
  757. font-size: 85%;
  758. line-height: 1.45;
  759. background-color: #f7f7f7;
  760. border-radius: 3px;
  761. }
  762. .markdown:not(code) .highlight pre {
  763. margin-bottom: 0;
  764. word-break: normal;
  765. }
  766. .markdown:not(code) pre {
  767. word-wrap: normal;
  768. }
  769. .markdown:not(code) pre code,
  770. .markdown:not(code) pre tt {
  771. display: inline;
  772. max-width: initial;
  773. padding: 0;
  774. margin: 0;
  775. overflow: initial;
  776. line-height: inherit;
  777. word-wrap: normal;
  778. background-color: transparent;
  779. border: 0;
  780. }
  781. .markdown:not(code) pre code:before,
  782. .markdown:not(code) pre code:after,
  783. .markdown:not(code) pre tt:before,
  784. .markdown:not(code) pre tt:after {
  785. content: normal;
  786. }
  787. .markdown:not(code) kbd {
  788. display: inline-block;
  789. padding: 3px 5px;
  790. font-size: 11px;
  791. line-height: 10px;
  792. color: #555;
  793. vertical-align: middle;
  794. background-color: #fcfcfc;
  795. border: solid 1px #ccc;
  796. border-bottom-color: #bbb;
  797. border-radius: 3px;
  798. box-shadow: inset 0 -1px 0 #bbb;
  799. }
  800. .markdown:not(code) input[type="checkbox"] {
  801. vertical-align: middle !important;
  802. }
  803. .markdown:not(code) .csv-data td,
  804. .markdown:not(code) .csv-data th {
  805. padding: 5px;
  806. overflow: hidden;
  807. font-size: 12px;
  808. line-height: 1;
  809. text-align: left;
  810. white-space: nowrap;
  811. }
  812. .markdown:not(code) .csv-data .blob-num {
  813. padding: 10px 8px 9px;
  814. text-align: right;
  815. background: #fff;
  816. border: 0;
  817. }
  818. .markdown:not(code) .csv-data tr {
  819. border-top: 0;
  820. }
  821. .markdown:not(code) .csv-data th {
  822. font-weight: bold;
  823. background: #f8f8f8;
  824. border-top: 0;
  825. }
  826. .home {
  827. padding-bottom: 80px;
  828. }
  829. .home .logo {
  830. max-width: 220px;
  831. }
  832. .home .hero h1,
  833. .home .hero h2 {
  834. font-family: 'PT Sans Narrow', sans-serif, 'Microsoft YaHei';
  835. }
  836. .home .hero h1 {
  837. font-size: 5.5em;
  838. }
  839. .home .hero h2 {
  840. font-size: 3em;
  841. }
  842. .home .hero .octicon {
  843. color: #d9453d;
  844. font-size: 40px;
  845. width: 50px;
  846. }
  847. .home .hero.header {
  848. font-size: 20px;
  849. }
  850. .home p.large {
  851. font-size: 16px;
  852. }
  853. .home .stackable {
  854. padding-top: 30px;
  855. }
  856. .home a {
  857. color: #d9453d;
  858. }
  859. .signup {
  860. padding-top: 15px;
  861. padding-bottom: 80px;
  862. }
  863. .install {
  864. padding-top: 45px;
  865. padding-bottom: 80px;
  866. }
  867. .install form label {
  868. text-align: right;
  869. width: 320px !important;
  870. }
  871. .install form input {
  872. width: 35% !important;
  873. }
  874. .install form .field {
  875. text-align: left;
  876. }
  877. .install form .field .help {
  878. margin-left: 335px !important;
  879. }
  880. .install form .field.optional .title {
  881. margin-left: 38%;
  882. }
  883. .install .ui .checkbox {
  884. margin-left: 40% !important;
  885. }
  886. .install .ui .checkbox label {
  887. width: auto !important;
  888. }
  889. .form .help {
  890. color: #999999;
  891. padding-top: .6em;
  892. padding-bottom: .6em;
  893. display: inline-block;
  894. }
  895. .ui.attached.header {
  896. background: #f0f0f0;
  897. }
  898. .ui.attached.header .right {
  899. margin-top: -5px;
  900. }
  901. .ui.attached.header .right .button {
  902. padding: 8px 10px;
  903. font-weight: normal;
  904. }
  905. #create-page-form form {
  906. margin: auto;
  907. width: 800px!important;
  908. }
  909. #create-page-form form .ui.message {
  910. text-align: center;
  911. }
  912. #create-page-form form .header {
  913. padding-left: 280px !important;
  914. }
  915. #create-page-form form .inline.field > label {
  916. text-align: right;
  917. width: 250px !important;
  918. word-wrap: break-word;
  919. }
  920. #create-page-form form .help {
  921. margin-left: 265px !important;
  922. }
  923. #create-page-form form .optional .title {
  924. margin-left: 250px !important;
  925. }
  926. #create-page-form form input,
  927. #create-page-form form textarea {
  928. width: 50%!important;
  929. }
  930. .user.activate form,
  931. .user.forgot.password form,
  932. .user.reset.password form,
  933. .user.signin form,
  934. .user.signup form {
  935. margin: auto;
  936. width: 800px!important;
  937. }
  938. .user.activate form .ui.message,
  939. .user.forgot.password form .ui.message,
  940. .user.reset.password form .ui.message,
  941. .user.signin form .ui.message,
  942. .user.signup form .ui.message {
  943. text-align: center;
  944. }
  945. .user.activate form .header,
  946. .user.forgot.password form .header,
  947. .user.reset.password form .header,
  948. .user.signin form .header,
  949. .user.signup form .header {
  950. padding-left: 280px !important;
  951. }
  952. .user.activate form .inline.field > label,
  953. .user.forgot.password form .inline.field > label,
  954. .user.reset.password form .inline.field > label,
  955. .user.signin form .inline.field > label,
  956. .user.signup form .inline.field > label {
  957. text-align: right;
  958. width: 250px !important;
  959. word-wrap: break-word;
  960. }
  961. .user.activate form .help,
  962. .user.forgot.password form .help,
  963. .user.reset.password form .help,
  964. .user.signin form .help,
  965. .user.signup form .help {
  966. margin-left: 265px !important;
  967. }
  968. .user.activate form .optional .title,
  969. .user.forgot.password form .optional .title,
  970. .user.reset.password form .optional .title,
  971. .user.signin form .optional .title,
  972. .user.signup form .optional .title {
  973. margin-left: 250px !important;
  974. }
  975. .user.activate form input,
  976. .user.forgot.password form input,
  977. .user.reset.password form input,
  978. .user.signin form input,
  979. .user.signup form input,
  980. .user.activate form textarea,
  981. .user.forgot.password form textarea,
  982. .user.reset.password form textarea,
  983. .user.signin form textarea,
  984. .user.signup form textarea {
  985. width: 50%!important;
  986. }
  987. .user.activate form,
  988. .user.forgot.password form,
  989. .user.reset.password form,
  990. .user.signin form,
  991. .user.signup form {
  992. width: 700px!important;
  993. }
  994. .user.activate form .header,
  995. .user.forgot.password form .header,
  996. .user.reset.password form .header,
  997. .user.signin form .header,
  998. .user.signup form .header {
  999. padding-left: 230px !important;
  1000. }
  1001. .user.activate form .inline.field > label,
  1002. .user.forgot.password form .inline.field > label,
  1003. .user.reset.password form .inline.field > label,
  1004. .user.signin form .inline.field > label,
  1005. .user.signup form .inline.field > label {
  1006. width: 200px !important;
  1007. }
  1008. .repository.new.repo form,
  1009. .repository.new.migrate form,
  1010. .repository.new.fork form {
  1011. margin: auto;
  1012. width: 800px!important;
  1013. }
  1014. .repository.new.repo form .ui.message,
  1015. .repository.new.migrate form .ui.message,
  1016. .repository.new.fork form .ui.message {
  1017. text-align: center;
  1018. }
  1019. .repository.new.repo form .header,
  1020. .repository.new.migrate form .header,
  1021. .repository.new.fork form .header {
  1022. padding-left: 280px !important;
  1023. }
  1024. .repository.new.repo form .inline.field > label,
  1025. .repository.new.migrate form .inline.field > label,
  1026. .repository.new.fork form .inline.field > label {
  1027. text-align: right;
  1028. width: 250px !important;
  1029. word-wrap: break-word;
  1030. }
  1031. .repository.new.repo form .help,
  1032. .repository.new.migrate form .help,
  1033. .repository.new.fork form .help {
  1034. margin-left: 265px !important;
  1035. }
  1036. .repository.new.repo form .optional .title,
  1037. .repository.new.migrate form .optional .title,
  1038. .repository.new.fork form .optional .title {
  1039. margin-left: 250px !important;
  1040. }
  1041. .repository.new.repo form input,
  1042. .repository.new.migrate form input,
  1043. .repository.new.fork form input,
  1044. .repository.new.repo form textarea,
  1045. .repository.new.migrate form textarea,
  1046. .repository.new.fork form textarea {
  1047. width: 50%!important;
  1048. }
  1049. .repository.new.repo form .dropdown .dropdown.icon,
  1050. .repository.new.migrate form .dropdown .dropdown.icon,
  1051. .repository.new.fork form .dropdown .dropdown.icon {
  1052. margin-top: -7px !important;
  1053. }
  1054. .repository.new.repo form .dropdown .text,
  1055. .repository.new.migrate form .dropdown .text,
  1056. .repository.new.fork form .dropdown .text {
  1057. margin-right: 0!important;
  1058. }
  1059. .repository.new.repo form .dropdown .text i,
  1060. .repository.new.migrate form .dropdown .text i,
  1061. .repository.new.fork form .dropdown .text i {
  1062. margin-right: 0!important;
  1063. }
  1064. .repository.new.repo .ui.form .selection.dropdown:not(.owner) {
  1065. width: 50%!important;
  1066. }
  1067. .repository.new.repo .ui.form #auto-init {
  1068. margin-left: 265px !important;
  1069. }
  1070. .new.webhook form .help {
  1071. margin-left: 25px;
  1072. }
  1073. .new.webhook .events.fields .column {
  1074. padding-left: 40px;
  1075. }
  1076. .repository {
  1077. padding-top: 15px;
  1078. padding-bottom: 80px;
  1079. }
  1080. .repository .head .column {
  1081. padding-top: 5px!important;
  1082. padding-bottom: 5px!important;
  1083. }
  1084. .repository .head .ui.compact.menu {
  1085. margin-left: 1rem;
  1086. }
  1087. .repository .head .ui.header {
  1088. margin-top: 0;
  1089. }
  1090. .repository .head .mega-octicon {
  1091. width: 30px;
  1092. font-size: 30px;
  1093. }
  1094. .repository .head .ui.huge.breadcrumb {
  1095. font-weight: 400;
  1096. font-size: 1.7rem;
  1097. }
  1098. .repository .head .fork-flag {
  1099. margin-left: 38px;
  1100. margin-top: 3px;
  1101. display: block;
  1102. font-size: 12px;
  1103. white-space: nowrap;
  1104. }
  1105. .repository .navbar .ui.label {
  1106. margin-top: -2px;
  1107. margin-left: 7px;
  1108. padding: 3px 5px;
  1109. }
  1110. .repository .owner.dropdown {
  1111. min-width: 40% !important;
  1112. }
  1113. .repository .metas .menu {
  1114. max-height: 300px;
  1115. overflow-x: auto;
  1116. }
  1117. .repository .metas .ui.list .hide {
  1118. display: none!important;
  1119. }
  1120. .repository .metas .ui.list .label.color {
  1121. padding: 0 8px;
  1122. margin-right: 5px;
  1123. }
  1124. .repository .metas .ui.list a {
  1125. padding-top: 5px;
  1126. padding-right: 10px;
  1127. }
  1128. .repository .metas .ui.list a .text {
  1129. color: #444;
  1130. }
  1131. .repository .metas .ui.list a .text:hover {
  1132. color: #000;
  1133. }
  1134. .repository .header-wrapper {
  1135. background-color: #FAFAFA;
  1136. margin-top: -15px;
  1137. padding-top: 15px;
  1138. }
  1139. .repository .header-wrapper .ui.tabs.divider {
  1140. border-bottom: none;
  1141. }
  1142. .repository .filter.menu .label.color {
  1143. margin-left: 15px;
  1144. padding: 0 8px;
  1145. }
  1146. .repository .filter.menu .octicon {
  1147. float: left;
  1148. margin-left: -5px;
  1149. margin-right: -7px;
  1150. }
  1151. .repository .filter.menu .menu {
  1152. max-height: 300px;
  1153. overflow-x: auto;
  1154. right: 0!important;
  1155. left: auto!important;
  1156. }
  1157. .repository .filter.menu .dropdown.item {
  1158. margin: 1px;
  1159. padding-right: 0;
  1160. }
  1161. .repository .ui.tabs.container {
  1162. margin-top: 14px;
  1163. margin-bottom: 0px;
  1164. }
  1165. .repository .ui.tabs.container .ui.menu {
  1166. border-bottom: none;
  1167. }
  1168. .repository .ui.tabs.divider {
  1169. margin-top: 0;
  1170. margin-bottom: 20px;
  1171. }
  1172. .repository #clone-panel {
  1173. margin-top: -8px;
  1174. width: 100%;
  1175. }
  1176. .repository #clone-panel input {
  1177. border-radius: 0;
  1178. padding: 5px 10px;
  1179. }
  1180. .repository #clone-panel .clone.button {
  1181. font-size: 13px;
  1182. padding: 0 5px;
  1183. }
  1184. .repository #clone-panel .clone.button:first-child {
  1185. border-radius: .28571429rem 0 0 .28571429rem;
  1186. }
  1187. .repository #clone-panel .icon.button {
  1188. padding: 0 10px;
  1189. }
  1190. .repository #clone-panel .dropdown .menu {
  1191. right: 0!important;
  1192. left: auto!important;
  1193. }
  1194. .repository.file.list #repo-desc {
  1195. font-size: 1.2em;
  1196. }
  1197. .repository.file.list .choose.reference .header .icon {
  1198. font-size: 1.4em;
  1199. }
  1200. .repository.file.list #repo-files-table thead th {
  1201. padding-top: 8px;
  1202. padding-bottom: 5px;
  1203. font-weight: normal;
  1204. }
  1205. .repository.file.list #repo-files-table thead th:first-child {
  1206. display: block;
  1207. position: relative;
  1208. width: 325%;
  1209. }
  1210. .repository.file.list #repo-files-table thead .ui.avatar {
  1211. margin-bottom: 5px;
  1212. }
  1213. .repository.file.list #repo-files-table tbody .icon {
  1214. margin-left: 3px;
  1215. margin-right: 5px;
  1216. }
  1217. .repository.file.list #repo-files-table td {
  1218. padding-top: 8px;
  1219. padding-bottom: 8px;
  1220. }
  1221. .repository.file.list #repo-files-table tr:hover {
  1222. background-color: #ffffEE;
  1223. }
  1224. .repository.file.list #file-content .header .icon {
  1225. font-size: 1em;
  1226. margin-top: -2px;
  1227. }
  1228. .repository.file.list #file-content .view-raw * {
  1229. max-width: 100%;
  1230. }
  1231. .repository.file.list #file-content .view-raw img {
  1232. padding: 5px 5px 0 5px;
  1233. }
  1234. .repository.file.list #file-content .code-view * {
  1235. font-size: 12px;
  1236. font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  1237. line-height: 20px;
  1238. }
  1239. .repository.file.list #file-content .code-view table {
  1240. width: 100%;
  1241. }
  1242. .repository.file.list #file-content .code-view .lines-num {
  1243. vertical-align: top;
  1244. text-align: right;
  1245. color: #999;
  1246. background: #f5f5f5;
  1247. width: 1%;
  1248. }
  1249. .repository.file.list #file-content .code-view .lines-num span {
  1250. line-height: 20px;
  1251. padding: 0 10px;
  1252. cursor: pointer;
  1253. display: block;
  1254. }
  1255. .repository.file.list #file-content .code-view .lines-num,
  1256. .repository.file.list #file-content .code-view .lines-code {
  1257. padding: 0;
  1258. }
  1259. .repository.file.list #file-content .code-view .lines-num pre,
  1260. .repository.file.list #file-content .code-view .lines-code pre,
  1261. .repository.file.list #file-content .code-view .lines-num ol,
  1262. .repository.file.list #file-content .code-view .lines-code ol,
  1263. .repository.file.list #file-content .code-view .lines-num .hljs,
  1264. .repository.file.list #file-content .code-view .lines-code .hljs {
  1265. background-color: white;
  1266. margin: 0;
  1267. padding: 0 !important;
  1268. }
  1269. .repository.file.list #file-content .code-view .lines-num pre li,
  1270. .repository.file.list #file-content .code-view .lines-code pre li,
  1271. .repository.file.list #file-content .code-view .lines-num ol li,
  1272. .repository.file.list #file-content .code-view .lines-code ol li,
  1273. .repository.file.list #file-content .code-view .lines-num .hljs li,
  1274. .repository.file.list #file-content .code-view .lines-code .hljs li {
  1275. padding-left: 5px;
  1276. }
  1277. .repository.file.list #file-content .code-view .lines-num pre li.active,
  1278. .repository.file.list #file-content .code-view .lines-code pre li.active,
  1279. .repository.file.list #file-content .code-view .lines-num ol li.active,
  1280. .repository.file.list #file-content .code-view .lines-code ol li.active,
  1281. .repository.file.list #file-content .code-view .lines-num .hljs li.active,
  1282. .repository.file.list #file-content .code-view .lines-code .hljs li.active {
  1283. background: #ffffdd;
  1284. }
  1285. .repository.file.list .sidebar {
  1286. padding-left: 0;
  1287. }
  1288. .repository.file.list .sidebar .octicon {
  1289. width: 16px;
  1290. }
  1291. .repository.options #interval {
  1292. width: 100px!important;
  1293. min-width: 100px;
  1294. }
  1295. .repository.options .danger .item {
  1296. padding: 20px 15px;
  1297. }
  1298. .repository.options .danger .ui.divider {
  1299. margin: 0;
  1300. }
  1301. .repository.new.issue .comment.form .comment .avatar {
  1302. width: 3em;
  1303. }
  1304. .repository.new.issue .comment.form .content {
  1305. margin-left: 4em;
  1306. }
  1307. .repository.new.issue .comment.form .content:before,
  1308. .repository.new.issue .comment.form .content:after {
  1309. right: 100%;
  1310. top: 20px;
  1311. border: solid transparent;
  1312. content: " ";
  1313. height: 0;
  1314. width: 0;
  1315. position: absolute;
  1316. pointer-events: none;
  1317. }
  1318. .repository.new.issue .comment.form .content:before {
  1319. border-right-color: #D4D4D5;
  1320. border-width: 9px;
  1321. margin-top: -9px;
  1322. }
  1323. .repository.new.issue .comment.form .content:after {
  1324. border-right-color: #f7f7f7;
  1325. border-width: 8px;
  1326. margin-top: -8px;
  1327. }
  1328. .repository.new.issue .comment.form .content:after {
  1329. border-right-color: #fff;
  1330. }
  1331. .repository.new.issue .comment.form .content .markdown {
  1332. font-size: 14px;
  1333. }
  1334. .repository.new.issue .comment.form .metas {
  1335. min-width: 220px;
  1336. }
  1337. .repository.new.issue .comment.form .metas .filter.menu {
  1338. max-height: 300px;
  1339. overflow-x: auto;
  1340. }
  1341. .repository.view.issue .title {
  1342. padding-bottom: 0!important;
  1343. }
  1344. .repository.view.issue .title h1 {
  1345. font-weight: 300;
  1346. font-size: 2.3rem;
  1347. margin-bottom: 5px;
  1348. }
  1349. .repository.view.issue .title h1 .ui.input {
  1350. font-size: 0.5em;
  1351. vertical-align: top;
  1352. width: 50%;
  1353. min-width: 600px;
  1354. }
  1355. .repository.view.issue .title h1 .ui.input input {
  1356. font-size: 1.5em;
  1357. padding: 6px 10px;
  1358. }
  1359. .repository.view.issue .title .index {
  1360. font-weight: 300;
  1361. color: #aaa;
  1362. letter-spacing: -1px;
  1363. }
  1364. .repository.view.issue .title .label {
  1365. margin-right: 10px;
  1366. }
  1367. .repository.view.issue .title .edit-zone {
  1368. margin-top: 10px;
  1369. }
  1370. .repository.view.issue .pull-desc code {
  1371. color: #0166E6;
  1372. }
  1373. .repository.view.issue .pull.tabular.menu {
  1374. margin-bottom: 10px;
  1375. }
  1376. .repository.view.issue .pull.tabular.menu .octicon {
  1377. margin-right: 5px;
  1378. }
  1379. .repository.view.issue .pull.tab.segment {
  1380. border: none;
  1381. padding: 0;
  1382. padding-top: 10px;
  1383. box-shadow: none;
  1384. background-color: inherit;
  1385. }
  1386. .repository.view.issue .pull .merge.box .avatar {
  1387. margin-left: 10px;
  1388. margin-top: 10px;
  1389. }
  1390. .repository.view.issue .comment-list:before {
  1391. display: block;
  1392. content: "";
  1393. position: absolute;
  1394. margin-top: 12px;
  1395. margin-bottom: 14px;
  1396. top: 0;
  1397. bottom: 0;
  1398. left: 96px;
  1399. width: 2px;
  1400. background-color: #f3f3f3;
  1401. z-index: -1;
  1402. }
  1403. .repository.view.issue .comment-list .comment .avatar {
  1404. width: 3em;
  1405. }
  1406. .repository.view.issue .comment-list .comment .tag {
  1407. color: #767676;
  1408. margin-top: 3px;
  1409. padding: 2px 5px;
  1410. font-size: 12px;
  1411. border: 1px solid rgba(0, 0, 0, 0.1);
  1412. border-radius: 3px;
  1413. }
  1414. .repository.view.issue .comment-list .comment .actions .item {
  1415. float: left;
  1416. }
  1417. .repository.view.issue .comment-list .comment .actions a.item {
  1418. margin-top: 6px;
  1419. margin-left: 10px;
  1420. }
  1421. .repository.view.issue .comment-list .comment .content {
  1422. margin-left: 4em;
  1423. }
  1424. .repository.view.issue .comment-list .comment .content .header {
  1425. font-weight: normal;
  1426. padding: auto 15px;
  1427. position: relative;
  1428. color: #767676;
  1429. background-color: #f7f7f7;
  1430. border-bottom: 1px solid #eee;
  1431. border-top-left-radius: 3px;
  1432. border-top-right-radius: 3px;
  1433. }
  1434. .repository.view.issue .comment-list .comment .content .header:before,
  1435. .repository.view.issue .comment-list .comment .content .header:after {
  1436. right: 100%;
  1437. top: 20px;
  1438. border: solid transparent;
  1439. content: " ";
  1440. height: 0;
  1441. width: 0;
  1442. position: absolute;
  1443. pointer-events: none;
  1444. }
  1445. .repository.view.issue .comment-list .comment .content .header:before {
  1446. border-right-color: #D4D4D5;
  1447. border-width: 9px;
  1448. margin-top: -9px;
  1449. }
  1450. .repository.view.issue .comment-list .comment .content .header:after {
  1451. border-right-color: #f7f7f7;
  1452. border-width: 8px;
  1453. margin-top: -8px;
  1454. }
  1455. .repository.view.issue .comment-list .comment .content .header .text {
  1456. max-width: 78%;
  1457. padding-top: 10px;
  1458. padding-bottom: 10px;
  1459. }
  1460. .repository.view.issue .comment-list .comment .content .markdown {
  1461. font-size: 14px;
  1462. }
  1463. .repository.view.issue .comment-list .comment .content .no-content {
  1464. color: #767676;
  1465. font-style: italic;
  1466. }
  1467. .repository.view.issue .comment-list .comment .content > .bottom.segment {
  1468. background: #f3f4f5;
  1469. }
  1470. .repository.view.issue .comment-list .comment .content > .bottom.segment .ui.images::after {
  1471. clear: both;
  1472. content: ' ';
  1473. display: block;
  1474. }
  1475. .repository.view.issue .comment-list .comment .content > .bottom.segment a {
  1476. display: block;
  1477. float: left;
  1478. margin: 5px;
  1479. padding: 5px;
  1480. height: 150px;
  1481. border: solid 1px #eee;
  1482. border-radius: 3px;
  1483. max-width: 150px;
  1484. background-color: #fff;
  1485. }
  1486. .repository.view.issue .comment-list .comment .content > .bottom.segment a:before {
  1487. content: ' ';
  1488. display: inline-block;
  1489. height: 100%;
  1490. vertical-align: middle;
  1491. }
  1492. .repository.view.issue .comment-list .comment .content > .bottom.segment .ui.image {
  1493. max-height: 100%;
  1494. width: auto;
  1495. margin: 0;
  1496. vertical-align: middle;
  1497. }
  1498. .repository.view.issue .comment-list .comment .ui.form .field:first-child {
  1499. clear: none;
  1500. }
  1501. .repository.view.issue .comment-list .comment .ui.form .tab.segment {
  1502. border: none;
  1503. padding: 0;
  1504. padding-top: 10px;
  1505. }
  1506. .repository.view.issue .comment-list .comment .ui.form textarea {
  1507. height: 200px;
  1508. }
  1509. .repository.view.issue .comment-list .comment .edit.buttons {
  1510. margin-top: 10px;
  1511. }
  1512. .repository.view.issue .comment-list .event {
  1513. position: relative;
  1514. margin: 15px 0 15px 79px;
  1515. padding-left: 25px;
  1516. }
  1517. .repository.view.issue .comment-list .event .octicon {
  1518. width: 30px;
  1519. float: left;
  1520. margin-left: -36px;
  1521. text-align: center;
  1522. }
  1523. .repository.view.issue .comment-list .event .octicon.octicon-circle-slash {
  1524. margin-top: 5px;
  1525. font-size: 20px;
  1526. color: #bd2c00;
  1527. }
  1528. .repository.view.issue .comment-list .event .octicon.octicon-primitive-dot {
  1529. font-size: 30px;
  1530. color: #6cc644;
  1531. }
  1532. .repository.view.issue .comment-list .event .octicon.octicon-bookmark {
  1533. margin-top: 3px;
  1534. font-size: 25px;
  1535. }
  1536. .repository.view.issue .comment-list .event .detail {
  1537. font-size: 0.9rem;
  1538. margin-top: 5px;
  1539. margin-left: 35px;
  1540. }
  1541. .repository.view.issue .comment-list .event .detail .octicon.octicon-git-commit {
  1542. margin-top: 2px;
  1543. }
  1544. .repository.view.issue .ui.segment.metas {
  1545. margin-top: -3px;
  1546. }
  1547. .repository.view.issue .ui.participants img {
  1548. margin-top: 5px;
  1549. margin-right: 5px;
  1550. }
  1551. .repository .comment.form .ui.comments {
  1552. margin-top: -12px;
  1553. max-width: 100%;
  1554. }
  1555. .repository .comment.form .content .field:first-child {
  1556. clear: none;
  1557. }
  1558. .repository .comment.form .content .form:before,
  1559. .repository .comment.form .content .form:after {
  1560. right: 100%;
  1561. top: 20px;
  1562. border: solid transparent;
  1563. content: " ";
  1564. height: 0;
  1565. width: 0;
  1566. position: absolute;
  1567. pointer-events: none;
  1568. }
  1569. .repository .comment.form .content .form:before {
  1570. border-right-color: #D4D4D5;
  1571. border-width: 9px;
  1572. margin-top: -9px;
  1573. }
  1574. .repository .comment.form .content .form:after {
  1575. border-right-color: #f7f7f7;
  1576. border-width: 8px;
  1577. margin-top: -8px;
  1578. }
  1579. .repository .comment.form .content .form:after {
  1580. border-right-color: #fff;
  1581. }
  1582. .repository .comment.form .content .tab.segment {
  1583. border: none;
  1584. padding: 0;
  1585. padding-top: 10px;
  1586. }
  1587. .repository .comment.form .content textarea {
  1588. height: 200px;
  1589. }
  1590. .repository .label.list {
  1591. list-style: none;
  1592. padding-top: 15px;
  1593. }
  1594. .repository .label.list .item {
  1595. padding-top: 10px;
  1596. padding-bottom: 10px;
  1597. border-bottom: 1px dashed #AAA;
  1598. }
  1599. .repository .label.list .item a {
  1600. font-size: 15px;
  1601. padding-top: 5px;
  1602. padding-right: 10px;
  1603. color: #666;
  1604. }
  1605. .repository .label.list .item a:hover {
  1606. color: #000;
  1607. }
  1608. .repository .label.list .item a.open-issues {
  1609. margin-right: 30px;
  1610. }
  1611. .repository .label.list .item .ui.label {
  1612. font-size: 1em;
  1613. }
  1614. .repository .milestone.list {
  1615. list-style: none;
  1616. padding-top: 15px;
  1617. }
  1618. .repository .milestone.list > .item {
  1619. padding-top: 10px;
  1620. padding-bottom: 10px;
  1621. border-bottom: 1px dashed #AAA;
  1622. }
  1623. .repository .milestone.list > .item > a {
  1624. padding-top: 5px;
  1625. padding-right: 10px;
  1626. color: #000;
  1627. }
  1628. .repository .milestone.list > .item > a:hover {
  1629. color: #4078c0;
  1630. }
  1631. .repository .milestone.list > .item .ui.progress {
  1632. width: 40%;
  1633. padding: 0;
  1634. border: 0;
  1635. margin: 0;
  1636. }
  1637. .repository .milestone.list > .item .ui.progress .bar {
  1638. height: 20px;
  1639. }
  1640. .repository .milestone.list > .item .meta {
  1641. color: #999;
  1642. padding-top: 5px;
  1643. }
  1644. .repository .milestone.list > .item .meta .issue-stats .octicon {
  1645. padding-left: 5px;
  1646. }
  1647. .repository .milestone.list > .item .meta .overdue {
  1648. color: red;
  1649. }
  1650. .repository .milestone.list > .item .operate {
  1651. margin-top: -15px;
  1652. }
  1653. .repository .milestone.list > .item .operate > a {
  1654. font-size: 15px;
  1655. padding-top: 5px;
  1656. padding-right: 10px;
  1657. color: #666;
  1658. }
  1659. .repository .milestone.list > .item .operate > a:hover {
  1660. color: #000;
  1661. }
  1662. .repository .milestone.list > .item .content {
  1663. padding-top: 10px;
  1664. }
  1665. .repository.new.milestone textarea {
  1666. height: 200px;
  1667. }
  1668. .repository.new.milestone #deadline {
  1669. width: 150px;
  1670. }
  1671. .repository.compare.pull .choose.branch .octicon {
  1672. padding-right: 10px;
  1673. }
  1674. .repository.compare.pull .comment.form .content:before,
  1675. .repository.compare.pull .comment.form .content:after {
  1676. right: 100%;
  1677. top: 20px;
  1678. border: solid transparent;
  1679. content: " ";
  1680. height: 0;
  1681. width: 0;
  1682. position: absolute;
  1683. pointer-events: none;
  1684. }
  1685. .repository.compare.pull .comment.form .content:before {
  1686. border-right-color: #D4D4D5;
  1687. border-width: 9px;
  1688. margin-top: -9px;
  1689. }
  1690. .repository.compare.pull .comment.form .content:after {
  1691. border-right-color: #f7f7f7;
  1692. border-width: 8px;
  1693. margin-top: -8px;
  1694. }
  1695. .repository.compare.pull .comment.form .content:after {
  1696. border-right-color: #fff;
  1697. }
  1698. .repository .filter.dropdown .menu {
  1699. margin-top: 1px!important;
  1700. }
  1701. .repository.commits .header .ui.right .search input {
  1702. font-weight: normal;
  1703. padding: 5px 10px;
  1704. }
  1705. .repository #commits-table thead th:first-of-type {
  1706. padding-left: 15px;
  1707. }
  1708. .repository #commits-table thead .sha {
  1709. font-size: 13px;
  1710. padding: 6px 40px 4px 35px;
  1711. }
  1712. .repository #commits-table.ui.basic.striped.table tbody tr:nth-child(2n) {
  1713. background-color: rgba(0, 0, 0, 0.02) !important;
  1714. }
  1715. .repository .diff-detail-box {
  1716. margin: 15px 0;
  1717. line-height: 30px;
  1718. }
  1719. .repository .diff-detail-box ol {
  1720. clear: both;
  1721. padding-left: 0;
  1722. margin-top: 5px;
  1723. margin-bottom: 28px;
  1724. }
  1725. .repository .diff-detail-box ol li {
  1726. list-style: none;
  1727. padding-bottom: 4px;
  1728. margin-bottom: 4px;
  1729. border-bottom: 1px dashed #DDD;
  1730. padding-left: 6px;
  1731. }
  1732. .repository .diff-detail-box span.status {
  1733. display: inline-block;
  1734. width: 12px;
  1735. height: 12px;
  1736. margin-right: 8px;
  1737. vertical-align: middle;
  1738. }
  1739. .repository .diff-detail-box span.status.modify {
  1740. background-color: #f0db88;
  1741. }
  1742. .repository .diff-detail-box span.status.add {
  1743. background-color: #b4e2b4;
  1744. }
  1745. .repository .diff-detail-box span.status.del {
  1746. background-color: #e9aeae;
  1747. }
  1748. .repository .diff-detail-box span.status.rename {
  1749. background-color: #dad8ff;
  1750. }
  1751. .repository .diff-box .count {
  1752. margin-right: 12px;
  1753. font-size: 13px;
  1754. }
  1755. .repository .diff-box .count .bar {
  1756. background-color: #bd2c00;
  1757. height: 12px;
  1758. width: 40px;
  1759. display: inline-block;
  1760. margin: 2px 4px 0 4px;
  1761. vertical-align: text-top;
  1762. }
  1763. .repository .diff-box .count .bar .add {
  1764. background-color: #55a532;
  1765. height: 12px;
  1766. }
  1767. .repository .diff-box .file {
  1768. color: #888;
  1769. }
  1770. .repository .diff-file-box .header {
  1771. background-color: #f7f7f7;
  1772. }
  1773. .repository .diff-file-box .file-body.file-code .lines-num {
  1774. text-align: right;
  1775. color: #A7A7A7;
  1776. background: #fafafa;
  1777. width: 1%;
  1778. }
  1779. .repository .diff-file-box .file-body.file-code .lines-num span.fold {
  1780. display: block;
  1781. text-align: center;
  1782. }
  1783. .repository .diff-file-box .file-body.file-code .lines-num-old {
  1784. border-right: 1px solid #DDD;
  1785. }
  1786. .repository .diff-file-box .code-diff {
  1787. font-size: 12px;
  1788. }
  1789. .repository .diff-file-box .code-diff td {
  1790. padding: 0;
  1791. padding-left: 10px;
  1792. border-top: none;
  1793. }
  1794. .repository .diff-file-box .code-diff pre {
  1795. margin: 0;
  1796. }
  1797. .repository .diff-file-box .code-diff .lines-num {
  1798. border-right: 1px solid #d4d4d5;
  1799. padding: 0 5px;
  1800. }
  1801. .repository .diff-file-box .code-diff tbody tr.tag-code td,
  1802. .repository .diff-file-box .code-diff tbody tr.tag-code pre {
  1803. background-color: #F0F0F0 !important;
  1804. border-color: #D2CECE!important;
  1805. padding-top: 4px;
  1806. padding-bottom: 4px;
  1807. }
  1808. .repository .diff-file-box .code-diff tbody tr.tag-code td.halfwidth {
  1809. width: 50%;
  1810. }
  1811. .repository .diff-file-box .code-diff tbody tr.del-code td.add-code {
  1812. background-color: #eaffea !important;
  1813. border-color: #c1e9c1 !important;
  1814. }
  1815. .repository .diff-file-box .code-diff tbody tr.del-code td.add-code pre {
  1816. background-color: #eaffea !important;
  1817. border-color: #c1e9c1 !important;
  1818. }
  1819. .repository .diff-file-box .code-diff tbody tr.del-code td,
  1820. .repository .diff-file-box .code-diff tbody tr.del-code pre {
  1821. background-color: #ffecec !important;
  1822. border-color: #f1c0c0 !important;
  1823. }
  1824. .repository .diff-file-box .code-diff tbody tr.del-code td.halfwidth {
  1825. width: 50%;
  1826. }
  1827. .repository .diff-file-box .code-diff tbody tr.add-code td,
  1828. .repository .diff-file-box .code-diff tbody tr.add-code pre {
  1829. background-color: #eaffea !important;
  1830. border-color: #c1e9c1 !important;
  1831. }
  1832. .repository .diff-file-box .code-diff tbody tr.add-code td.halfwidth {
  1833. width: 50%;
  1834. }
  1835. .repository .diff-file-box .code-diff tbody tr .removed-code {
  1836. background-color: #ff9999;
  1837. }
  1838. .repository .diff-file-box .code-diff tbody tr .added-code {
  1839. background-color: #99ff99;
  1840. }
  1841. .repository .diff-file-box.file-content img {
  1842. max-width: 100%;
  1843. padding: 5px 5px 0 5px;
  1844. }
  1845. .repository .code-view {
  1846. overflow: auto;
  1847. overflow-x: auto;
  1848. overflow-y: hidden;
  1849. }
  1850. .repository.quickstart .guide .item {
  1851. padding: 1em;
  1852. }
  1853. .repository.quickstart .guide .item small {
  1854. font-weight: normal;
  1855. }
  1856. .repository.quickstart .guide .clone.button:first-child {
  1857. border-radius: .28571429rem 0 0 .28571429rem;
  1858. }
  1859. .repository.quickstart .guide .ui.action.small.input {
  1860. width: 100%;
  1861. }
  1862. .repository.quickstart .guide #repo-clone-url {
  1863. border-radius: 0;
  1864. padding: 5px 10px;
  1865. font-size: 1.2em;
  1866. }
  1867. .repository.release #release-list {
  1868. border-top: 1px solid #DDD;
  1869. margin-top: 20px;
  1870. padding-top: 15px;
  1871. }
  1872. .repository.release #release-list > li {
  1873. list-style: none;
  1874. }
  1875. .repository.release #release-list > li .meta,
  1876. .repository.release #release-list > li .detail {
  1877. padding-top: 30px;
  1878. padding-bottom: 40px;
  1879. }
  1880. .repository.release #release-list > li .meta {
  1881. text-align: right;
  1882. position: relative;
  1883. }
  1884. .repository.release #release-list > li .meta .tag:not(.icon) {
  1885. display: block;
  1886. margin-top: 15px;
  1887. }
  1888. .repository.release #release-list > li .meta .commit {
  1889. display: block;
  1890. margin-top: 10px;
  1891. }
  1892. .repository.release #release-list > li .detail {
  1893. border-left: 1px solid #DDD;
  1894. }
  1895. .repository.release #release-list > li .detail .author img {
  1896. margin-bottom: -3px;
  1897. }
  1898. .repository.release #release-list > li .detail .download {
  1899. margin-top: 20px;
  1900. }
  1901. .repository.release #release-list > li .detail .download > a .octicon {
  1902. margin-left: 5px;
  1903. margin-right: 5px;
  1904. }
  1905. .repository.release #release-list > li .detail .download .list {
  1906. padding-left: 0;
  1907. border-top: 1px solid #eee;
  1908. }
  1909. .repository.release #release-list > li .detail .download .list li {
  1910. list-style: none;
  1911. display: block;
  1912. padding-top: 8px;
  1913. padding-bottom: 8px;
  1914. border-bottom: 1px solid #eee;
  1915. }
  1916. .repository.release #release-list > li .detail .dot {
  1917. width: 9px;
  1918. height: 9px;
  1919. background-color: #ccc;
  1920. z-index: 999;
  1921. position: absolute;
  1922. display: block;
  1923. left: -5px;
  1924. top: 40px;
  1925. border-radius: 6px;
  1926. border: 1px solid #FFF;
  1927. }
  1928. .repository.new.release .target {
  1929. min-width: 500px;
  1930. }
  1931. .repository.new.release .target .at {
  1932. margin-left: -5px;
  1933. margin-right: 5px;
  1934. }
  1935. .repository.new.release .target .dropdown.icon {
  1936. margin: 0;
  1937. padding-top: 3px;
  1938. }
  1939. .repository.new.release .target .selection.dropdown {
  1940. padding-top: 10px;
  1941. padding-bottom: 10px;
  1942. }
  1943. .repository.new.release .prerelease.field {
  1944. margin-bottom: 0;
  1945. }
  1946. .repository.forks .list {
  1947. margin-top: 0;
  1948. }
  1949. .repository.forks .list .item {
  1950. padding-top: 10px;
  1951. padding-bottom: 10px;
  1952. border-bottom: 1px solid #DDD;
  1953. }
  1954. .repository.forks .list .item .ui.avatar {
  1955. float: left;
  1956. margin-right: 5px;
  1957. }
  1958. .repository.forks .list .item .link {
  1959. padding-top: 5px;
  1960. }
  1961. .repository.wiki.start .ui.segment {
  1962. padding-top: 70px;
  1963. padding-bottom: 100px;
  1964. }
  1965. .repository.wiki.start .ui.segment .mega-octicon {
  1966. font-size: 48px;
  1967. }
  1968. .repository.wiki.new .CodeMirror .CodeMirror-code .cm-comment {
  1969. background: inherit;
  1970. }
  1971. .repository.wiki.new .editor-preview {
  1972. background-color: white;
  1973. }
  1974. .repository.wiki.view .choose.page {
  1975. margin-top: -5px;
  1976. }
  1977. .repository.wiki.view .ui.sub.header {
  1978. text-transform: none;
  1979. }
  1980. .repository.wiki.view .markdown {
  1981. padding: 15px 30px;
  1982. }
  1983. .repository.wiki.view .markdown h1:first-of-type,
  1984. .repository.wiki.view .markdown h2:first-of-type,
  1985. .repository.wiki.view .markdown h3:first-of-type,
  1986. .repository.wiki.view .markdown h4:first-of-type,
  1987. .repository.wiki.view .markdown h5:first-of-type,
  1988. .repository.wiki.view .markdown h6:first-of-type {
  1989. margin-top: 0;
  1990. }
  1991. .repository.settings.collaboration .collaborator.list {
  1992. padding: 0;
  1993. }
  1994. .repository.settings.collaboration .collaborator.list > .item {
  1995. margin: 0;
  1996. line-height: 2em;
  1997. }
  1998. .repository.settings.collaboration .collaborator.list > .item:not(:last-child) {
  1999. border-bottom: 1px solid #DDD;
  2000. }
  2001. .repository.settings.collaboration #repo-collab-form #search-user-box .results {
  2002. left: 7px;
  2003. }
  2004. .repository.settings.collaboration #repo-collab-form .ui.button {
  2005. margin-left: 5px;
  2006. margin-top: -3px;
  2007. }
  2008. .user-cards .list {
  2009. padding: 0;
  2010. }
  2011. .user-cards .list .item {
  2012. list-style: none;
  2013. width: 32%;
  2014. margin: 10px 10px 10px 0;
  2015. padding-bottom: 14px;
  2016. float: left;
  2017. }
  2018. .user-cards .list .item .avatar {
  2019. width: 48px;
  2020. height: 48px;
  2021. float: left;
  2022. display: block;
  2023. margin-right: 10px;
  2024. }
  2025. .user-cards .list .item .name {
  2026. margin-top: 0;
  2027. margin-bottom: 0;
  2028. font-weight: normal;
  2029. }
  2030. .user-cards .list .item .meta {
  2031. margin-top: 5px;
  2032. }
  2033. #search-repo-box .results,
  2034. #search-user-box .results {
  2035. padding: 0;
  2036. position: absolute;
  2037. }
  2038. #search-repo-box .results .item,
  2039. #search-user-box .results .item {
  2040. padding: 10px 15px;
  2041. border-bottom: 1px solid #DDD;
  2042. cursor: pointer;
  2043. }
  2044. #search-repo-box .results .item:hover,
  2045. #search-user-box .results .item:hover {
  2046. background: rgba(0, 0, 0, 0.05) !important;
  2047. color: rgba(0, 0, 0, 0.95) !important;
  2048. }
  2049. #search-repo-box .results .item img,
  2050. #search-user-box .results .item img {
  2051. margin-right: 8px;
  2052. }
  2053. .issue.list {
  2054. list-style: none;
  2055. padding-top: 15px;
  2056. }
  2057. .issue.list > .item {
  2058. padding-top: 15px;
  2059. padding-bottom: 10px;
  2060. border-bottom: 1px dashed #AAA;
  2061. }
  2062. .issue.list > .item .title {
  2063. color: #444;
  2064. font-size: 15px;
  2065. font-weight: bold;
  2066. margin: 0 6px;
  2067. }
  2068. .issue.list > .item .title:hover {
  2069. color: #000;
  2070. }
  2071. .issue.list > .item .comment {
  2072. padding-right: 10px;
  2073. color: #666;
  2074. }
  2075. .issue.list > .item .desc {
  2076. padding-top: 5px;
  2077. color: #999;
  2078. }
  2079. .issue.list > .item .desc a.milestone {
  2080. padding-left: 5px;
  2081. color: #999!important;
  2082. }
  2083. .issue.list > .item .desc a.milestone:hover {
  2084. color: #000!important;
  2085. }
  2086. .issue.list > .item .desc .assignee {
  2087. margin-top: -5px;
  2088. margin-right: 5px;
  2089. }
  2090. .page.buttons {
  2091. padding-top: 15px;
  2092. }
  2093. .ui.comments .dropzone {
  2094. width: 100%;
  2095. margin-bottom: 10px;
  2096. border: 2px dashed #0087F7;
  2097. box-shadow: none!important;
  2098. }
  2099. .ui.comments .dropzone .dz-error-message {
  2100. top: 140px;
  2101. }
  2102. .settings .content {
  2103. margin-top: 2px;
  2104. }
  2105. .settings .content > .header,
  2106. .settings .content .segment {
  2107. box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
  2108. }
  2109. .settings .key.list .item:not(:first-child) {
  2110. border-top: 1px solid #eaeaea;
  2111. }
  2112. .settings .key.list .ssh-key-state-indicator {
  2113. float: left;
  2114. color: gray;
  2115. padding-left: 10px;
  2116. padding-top: 10px;
  2117. }
  2118. .settings .key.list .ssh-key-state-indicator.active {
  2119. color: #6cc644;
  2120. }
  2121. .settings .key.list .meta {
  2122. padding-top: 5px;
  2123. }
  2124. .settings .key.list .print {
  2125. color: #767676;
  2126. }
  2127. .settings .key.list .activity {
  2128. color: #666;
  2129. }
  2130. .settings .hook.list > .item:not(:first-child) {
  2131. border-top: 1px solid #eaeaea;
  2132. }
  2133. .settings .hook.list .item {
  2134. padding: 10px 20px;
  2135. }
  2136. .settings .hook.list .item .octicon,
  2137. .settings .hook.list .item .fa {
  2138. width: 20px;
  2139. text-align: center;
  2140. }
  2141. .settings .hook.history.list .item {
  2142. padding-left: 13px;
  2143. }
  2144. .settings .hook.history.list .item .meta .ui.right {
  2145. margin-top: 5px;
  2146. }
  2147. .settings .hook.history.list .item .meta .ui.right .time {
  2148. font-size: 12px;
  2149. }
  2150. .settings .hook.history.list .item .info {
  2151. margin-top: 10px;
  2152. }
  2153. .settings .hook.history.list .item .info .tabular.menu .item {
  2154. font-weight: 500;
  2155. }
  2156. .settings .hook.history.list .item .info .tab.segment {
  2157. border: none;
  2158. padding: 0;
  2159. padding-top: 10px;
  2160. box-shadow: none;
  2161. }
  2162. .settings .hook.history.list .item .info .tab.segment > * {
  2163. color: #666;
  2164. }
  2165. .settings .hook.history.list .item .info .tab.segment pre {
  2166. word-wrap: break-word;
  2167. }
  2168. .settings .hook.history.list .item .info .tab.segment pre .hljs {
  2169. padding: 0;
  2170. background-color: inherit;
  2171. }
  2172. .ui.vertical.menu .header.item {
  2173. font-size: 1.1em;
  2174. background: #f0f0f0;
  2175. }
  2176. .edit-label.modal .form .column,
  2177. .new-label.segment .form .column {
  2178. padding-right: 0;
  2179. }
  2180. .edit-label.modal .form .buttons,
  2181. .new-label.segment .form .buttons {
  2182. margin-left: auto;
  2183. padding-top: 15px;
  2184. }
  2185. .edit-label.modal .form .color.picker.column,
  2186. .new-label.segment .form .color.picker.column {
  2187. width: auto;
  2188. }
  2189. .edit-label.modal .form .color.picker.column .color-picker,
  2190. .new-label.segment .form .color.picker.column .color-picker {
  2191. height: 35px;
  2192. width: auto;
  2193. padding-left: 30px;
  2194. }
  2195. .edit-label.modal .form .minicolors-swatch.minicolors-sprite,
  2196. .new-label.segment .form .minicolors-swatch.minicolors-sprite {
  2197. top: 10px;
  2198. left: 10px;
  2199. width: 15px;
  2200. height: 15px;
  2201. }
  2202. .edit-label.modal .form .precolors,
  2203. .new-label.segment .form .precolors {
  2204. padding-left: 0;
  2205. padding-right: 0;
  2206. margin: 3px 10px auto 10px;
  2207. width: 120px;
  2208. }
  2209. .edit-label.modal .form .precolors .color,
  2210. .new-label.segment .form .precolors .color {
  2211. float: left;
  2212. width: 15px;
  2213. height: 15px;
  2214. }
  2215. #avatar-arrow:before,
  2216. #avatar-arrow:after {
  2217. right: 100%;
  2218. top: 20px;
  2219. border: solid transparent;
  2220. content: " ";
  2221. height: 0;
  2222. width: 0;
  2223. position: absolute;
  2224. pointer-events: none;
  2225. }
  2226. #avatar-arrow:before {
  2227. border-right-color: #D4D4D5;
  2228. border-width: 9px;
  2229. margin-top: -9px;
  2230. }
  2231. #avatar-arrow:after {
  2232. border-right-color: #f7f7f7;
  2233. border-width: 8px;
  2234. margin-top: -8px;
  2235. }
  2236. #transfer-repo-modal .ui.message,
  2237. #delete-repo-modal .ui.message {
  2238. width: 100%!important;
  2239. }
  2240. .organization {
  2241. padding-top: 15px;
  2242. padding-bottom: 80px;
  2243. }
  2244. .organization .head .ui.header .text {
  2245. vertical-align: middle;
  2246. font-size: 1.6rem;
  2247. margin-left: 15px;
  2248. }
  2249. .organization .head .ui.header .ui.right {
  2250. margin-top: 5px;
  2251. }
  2252. .organization.new.org form {
  2253. margin: auto;
  2254. width: 800px!important;
  2255. }
  2256. .organization.new.org form .ui.message {
  2257. text-align: center;
  2258. }
  2259. .organization.new.org form .header {
  2260. padding-left: 280px !important;
  2261. }
  2262. .organization.new.org form .inline.field > label {
  2263. text-align: right;
  2264. width: 250px !important;
  2265. word-wrap: break-word;
  2266. }
  2267. .organization.new.org form .help {
  2268. margin-left: 265px !important;
  2269. }
  2270. .organization.new.org form .optional .title {
  2271. margin-left: 250px !important;
  2272. }
  2273. .organization.new.org form input,
  2274. .organization.new.org form textarea {
  2275. width: 50%!important;
  2276. }
  2277. .organization.options input {
  2278. min-width: 300px;
  2279. }
  2280. .organization.profile #org-avatar {
  2281. width: 100px;
  2282. height: 100px;
  2283. margin-right: 15px;
  2284. }
  2285. .organization.profile #org-info .ui.header {
  2286. font-size: 36px;
  2287. margin-bottom: 0;
  2288. }
  2289. .organization.profile #org-info .desc {
  2290. font-size: 16px;
  2291. margin-bottom: 10px;
  2292. }
  2293. .organization.profile #org-info .meta .item {
  2294. display: inline-block;
  2295. margin-right: 10px;
  2296. }
  2297. .organization.profile #org-info .meta .item .icon {
  2298. margin-right: 5px;
  2299. }
  2300. .organization.profile .ui.top.header .ui.right {
  2301. margin-top: 0;
  2302. }
  2303. .organization.profile .teams .item {
  2304. padding: 10px 15px;
  2305. }
  2306. .organization.teams .members .ui.avatar,
  2307. .organization.profile .members .ui.avatar {
  2308. width: 48px;
  2309. height: 48px;
  2310. margin-right: 5px;
  2311. }
  2312. .organization.invite #invite-box {
  2313. margin: auto;
  2314. margin-top: 50px;
  2315. width: 500px !important;
  2316. }
  2317. .organization.invite #invite-box #search-user-box input {
  2318. margin-left: 0;
  2319. width: 300px;
  2320. }
  2321. .organization.invite #invite-box .ui.button {
  2322. margin-left: 5px;
  2323. margin-top: -3px;
  2324. }
  2325. .organization.members .list .item {
  2326. margin-left: 0;
  2327. margin-right: 0;
  2328. border-bottom: 1px solid #eee;
  2329. }
  2330. .organization.members .list .item .ui.avatar {
  2331. width: 48px;
  2332. height: 48px;
  2333. }
  2334. .organization.members .list .item .meta {
  2335. line-height: 24px;
  2336. }
  2337. .organization.teams .detail .item {
  2338. padding: 10px 15px;
  2339. }
  2340. .organization.teams .detail .item:not(:last-child) {
  2341. border-bottom: 1px solid #eee;
  2342. }
  2343. .organization.teams .repositories .item,
  2344. .organization.teams .members .item {
  2345. padding: 10px 20px;
  2346. line-height: 32px;
  2347. }
  2348. .organization.teams .repositories .item:not(:last-child),
  2349. .organization.teams .members .item:not(:last-child) {
  2350. border-bottom: 1px solid #DDD;
  2351. }
  2352. .organization.teams .repositories .item .button,
  2353. .organization.teams .members .item .button {
  2354. padding: 9px 10px;
  2355. }
  2356. .organization.teams #add-repo-form input,
  2357. .organization.teams #add-member-form input {
  2358. margin-left: 0;
  2359. }
  2360. .organization.teams #add-repo-form .ui.button,
  2361. .organization.teams #add-member-form .ui.button {
  2362. margin-left: 5px;
  2363. margin-top: -3px;
  2364. }
  2365. .user:not(.icon) {
  2366. padding-top: 15px;
  2367. padding-bottom: 80px;
  2368. }
  2369. .user.settings .list .item.ui.grid {
  2370. margin-top: 15px;
  2371. }
  2372. .user.settings .email.list .item:not(:first-child) {
  2373. border-top: 1px solid #eaeaea;
  2374. height: 50px;
  2375. }
  2376. .user.settings .email.list .item:not(:first-child) .button {
  2377. margin-top: -10px;
  2378. }
  2379. .user.profile .ui.card .username {
  2380. display: block;
  2381. }
  2382. .user.profile .ui.card .extra.content {
  2383. padding: 0;
  2384. }
  2385. .user.profile .ui.card .extra.content ul {
  2386. margin: 0;
  2387. padding: 0;
  2388. }
  2389. .user.profile .ui.card .extra.content ul li {
  2390. padding: 10px;
  2391. list-style: none;
  2392. }
  2393. .user.profile .ui.card .extra.content ul li:not(:last-child) {
  2394. border-bottom: 1px solid #eaeaea;
  2395. }
  2396. .user.profile .ui.card .extra.content ul li .octicon {
  2397. margin-left: 1px;
  2398. margin-right: 5px;
  2399. }
  2400. .user.profile .ui.card .extra.content ul li.follow .ui.button {
  2401. width: 100%;
  2402. }
  2403. .user.profile .ui.repository.list {
  2404. margin-top: 25px;
  2405. }
  2406. .user.followers .header.name {
  2407. font-size: 20px;
  2408. line-height: 24px;
  2409. vertical-align: middle;
  2410. }
  2411. .user.followers .follow .ui.button {
  2412. padding: 8px 15px;
  2413. }
  2414. .dashboard {
  2415. padding-top: 15px;
  2416. padding-bottom: 80px;
  2417. }
  2418. .dashboard.feeds .context.user.menu,
  2419. .dashboard.issues .context.user.menu {
  2420. z-index: 101;
  2421. min-width: 200px;
  2422. }
  2423. .dashboard.feeds .context.user.menu .ui.header,
  2424. .dashboard.issues .context.user.menu .ui.header {
  2425. font-size: 1rem;
  2426. text-transform: none;
  2427. }
  2428. .dashboard.feeds .filter.menu .item,
  2429. .dashboard.issues .filter.menu .item {
  2430. text-align: left;
  2431. }
  2432. .dashboard.feeds .filter.menu .item .text,
  2433. .dashboard.issues .filter.menu .item .text {
  2434. height: 16px;
  2435. vertical-align: middle;
  2436. }
  2437. .dashboard.feeds .filter.menu .item .text.truncate,
  2438. .dashboard.issues .filter.menu .item .text.truncate {
  2439. width: 85%;
  2440. }
  2441. .dashboard.feeds .filter.menu .item .floating.label,
  2442. .dashboard.issues .filter.menu .item .floating.label {
  2443. top: 7px;
  2444. left: 90%;
  2445. width: 15%;
  2446. }
  2447. .dashboard.feeds .filter.menu .jump.item,
  2448. .dashboard.issues .filter.menu .jump.item {
  2449. margin: 1px;
  2450. padding-right: 0;
  2451. }
  2452. .dashboard.feeds .filter.menu .menu,
  2453. .dashboard.issues .filter.menu .menu {
  2454. max-height: 300px;
  2455. overflow-x: auto;
  2456. right: 0!important;
  2457. left: auto!important;
  2458. }
  2459. .dashboard.feeds .ui.right .head.menu,
  2460. .dashboard.issues .ui.right .head.menu {
  2461. margin-top: -5px;
  2462. }
  2463. .dashboard.feeds .ui.right .head.menu .item.active,
  2464. .dashboard.issues .ui.right .head.menu .item.active {
  2465. color: #d9453d;
  2466. }
  2467. .dashboard.feeds .head.menu .octicon,
  2468. .dashboard.issues .head.menu .octicon {
  2469. margin-right: 5px;
  2470. }
  2471. .feeds .news .ui.avatar {
  2472. margin-top: 13px;
  2473. }
  2474. .feeds .news p {
  2475. line-height: 1em;
  2476. }
  2477. .feeds .news .time-since {
  2478. font-size: 13px;
  2479. }
  2480. .feeds .news .issue.title {
  2481. line-height: 1.1em;
  2482. width: 80%;
  2483. }
  2484. .feeds .news .push.news .content ul {
  2485. font-size: 13px;
  2486. list-style: none;
  2487. padding-left: 10px;
  2488. }
  2489. .feeds .news .push.news .content ul img {
  2490. margin-bottom: -2px;
  2491. }
  2492. .feeds .news .push.news .content ul .text.truncate {
  2493. width: 80%;
  2494. margin-bottom: -5px;
  2495. }
  2496. .feeds .news .commit-id {
  2497. font-family: Consolas, monospace;
  2498. }
  2499. .feeds .news code {
  2500. padding: 1px;
  2501. font-size: 85%;
  2502. background-color: rgba(0, 0, 0, 0.04);
  2503. border-radius: 3px;
  2504. word-break: break-all;
  2505. }
  2506. .feeds .list .header {
  2507. padding-top: 10px;
  2508. padding-bottom: 5px;
  2509. }
  2510. .feeds .list .header .plus.icon {
  2511. margin-top: 5px;
  2512. margin-right: 0;
  2513. }
  2514. .feeds .list ul {
  2515. list-style: none;
  2516. margin: 0;
  2517. padding-left: 0;
  2518. }
  2519. .feeds .list ul li:not(:last-child) {
  2520. border-bottom: 1px solid #EAEAEA;
  2521. }
  2522. .feeds .list ul li.private {
  2523. background-color: #fcf8e9;
  2524. }
  2525. .feeds .list ul li a {
  2526. padding: 6px 1.2em;
  2527. display: block;
  2528. }
  2529. .feeds .list ul li a .octicon {
  2530. margin-right: 6px;
  2531. color: #888;
  2532. }
  2533. .feeds .list .repo-owner-name-list .item-name {
  2534. max-width: 70%;
  2535. margin-bottom: -4px;
  2536. }
  2537. .feeds .list #collaborative-repo-list .owner-and-repo {
  2538. max-width: 80%;
  2539. margin-bottom: -5px;
  2540. }
  2541. .feeds .list #collaborative-repo-list .owner-name {
  2542. max-width: 120px;
  2543. margin-bottom: -5px;
  2544. }
  2545. .admin {
  2546. padding-top: 15px;
  2547. padding-bottom: 80px;
  2548. }
  2549. .admin .table.segment {
  2550. padding: 0;
  2551. font-size: 13px;
  2552. }
  2553. .admin .table.segment:not(.striped) {
  2554. padding-top: 5px;
  2555. }
  2556. .admin .table.segment:not(.striped) thead th:last-child {
  2557. padding-right: 5px !important;
  2558. }
  2559. .admin .table.segment th {
  2560. padding-top: 5px;
  2561. padding-bottom: 5px;
  2562. }
  2563. .admin .table.segment:not(.select) th:first-of-type,
  2564. .admin .table.segment:not(.select) td:first-of-type {
  2565. padding-left: 15px !important;
  2566. }
  2567. .admin .ui.header,
  2568. .admin .ui.segment {
  2569. box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
  2570. }
  2571. .admin.user .email {
  2572. max-width: 200px;
  2573. }
  2574. .admin dl.admin-dl-horizontal {
  2575. padding: 20px;
  2576. margin: 0;
  2577. }
  2578. .admin dl.admin-dl-horizontal dd {
  2579. margin-left: 240px;
  2580. }
  2581. .admin dl.admin-dl-horizontal dt {
  2582. font-weight: bolder;
  2583. float: left;
  2584. width: 250px;
  2585. clear: left;
  2586. overflow: hidden;
  2587. text-overflow: ellipsis;
  2588. white-space: nowrap;
  2589. }
  2590. .admin.config #test-mail-btn {
  2591. margin-left: 5px;
  2592. }
  2593. .explore {
  2594. padding-top: 15px;
  2595. padding-bottom: 80px;
  2596. }
  2597. .ui.repository.list .item {
  2598. padding-bottom: 25px;
  2599. }
  2600. .ui.repository.list .item:not(:first-child) {
  2601. border-top: 1px solid #eee;
  2602. padding-top: 25px;
  2603. }
  2604. .ui.repository.list .item .ui.header {
  2605. font-size: 1.5rem;
  2606. padding-bottom: 10px;
  2607. }
  2608. .ui.repository.list .item .ui.header .name {
  2609. word-break: break-all;
  2610. }
  2611. .ui.repository.list .item .ui.header .metas {
  2612. color: #888;
  2613. font-size: 13px;
  2614. font-weight: normal;
  2615. }
  2616. .ui.repository.list .item .ui.header .metas span:not(:last-child) {
  2617. margin-right: 5px;
  2618. }
  2619. .ui.repository.list .item .time {
  2620. font-size: 12px;
  2621. color: #808080;
  2622. }