gogs.css 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658
  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", "Meiryo Ui", "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. border-radius: 3px;
  1144. margin-left: 15px;
  1145. padding: 0 8px;
  1146. }
  1147. .repository .filter.menu .octicon {
  1148. float: left;
  1149. margin-left: -5px;
  1150. margin-right: -7px;
  1151. }
  1152. .repository .filter.menu .menu {
  1153. max-height: 300px;
  1154. overflow-x: auto;
  1155. right: 0!important;
  1156. left: auto!important;
  1157. }
  1158. .repository .filter.menu .dropdown.item {
  1159. margin: 1px;
  1160. padding-right: 0;
  1161. }
  1162. .repository .ui.tabs.container {
  1163. margin-top: 14px;
  1164. margin-bottom: 0px;
  1165. }
  1166. .repository .ui.tabs.container .ui.menu {
  1167. border-bottom: none;
  1168. }
  1169. .repository .ui.tabs.divider {
  1170. margin-top: 0;
  1171. margin-bottom: 20px;
  1172. }
  1173. .repository #clone-panel {
  1174. margin-top: -8px;
  1175. width: 100%;
  1176. }
  1177. .repository #clone-panel input {
  1178. border-radius: 0;
  1179. padding: 5px 10px;
  1180. }
  1181. .repository #clone-panel .clone.button {
  1182. font-size: 13px;
  1183. padding: 0 5px;
  1184. }
  1185. .repository #clone-panel .clone.button:first-child {
  1186. border-radius: .28571429rem 0 0 .28571429rem;
  1187. }
  1188. .repository #clone-panel .icon.button {
  1189. padding: 0 10px;
  1190. }
  1191. .repository #clone-panel .dropdown .menu {
  1192. right: 0!important;
  1193. left: auto!important;
  1194. }
  1195. .repository.file.list #repo-desc {
  1196. font-size: 1.2em;
  1197. }
  1198. .repository.file.list .choose.reference .header .icon {
  1199. font-size: 1.4em;
  1200. }
  1201. .repository.file.list #repo-files-table thead th {
  1202. padding-top: 8px;
  1203. padding-bottom: 5px;
  1204. font-weight: normal;
  1205. }
  1206. .repository.file.list #repo-files-table thead th:first-child {
  1207. display: block;
  1208. position: relative;
  1209. width: 325%;
  1210. }
  1211. .repository.file.list #repo-files-table thead .ui.avatar {
  1212. margin-bottom: 5px;
  1213. }
  1214. .repository.file.list #repo-files-table tbody .icon {
  1215. margin-left: 3px;
  1216. margin-right: 5px;
  1217. }
  1218. .repository.file.list #repo-files-table td {
  1219. padding-top: 8px;
  1220. padding-bottom: 8px;
  1221. }
  1222. .repository.file.list #repo-files-table tr:hover {
  1223. background-color: #ffffEE;
  1224. }
  1225. .repository.file.list #file-content .header .icon {
  1226. font-size: 1em;
  1227. margin-top: -2px;
  1228. }
  1229. .repository.file.list #file-content .view-raw * {
  1230. max-width: 100%;
  1231. }
  1232. .repository.file.list #file-content .view-raw img {
  1233. padding: 5px 5px 0 5px;
  1234. }
  1235. .repository.file.list #file-content .code-view * {
  1236. font-size: 12px;
  1237. font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  1238. line-height: 20px;
  1239. }
  1240. .repository.file.list #file-content .code-view table {
  1241. width: 100%;
  1242. }
  1243. .repository.file.list #file-content .code-view .lines-num {
  1244. vertical-align: top;
  1245. text-align: right;
  1246. color: #999;
  1247. background: #f5f5f5;
  1248. width: 1%;
  1249. }
  1250. .repository.file.list #file-content .code-view .lines-num span {
  1251. line-height: 20px;
  1252. padding: 0 10px;
  1253. cursor: pointer;
  1254. display: block;
  1255. }
  1256. .repository.file.list #file-content .code-view .lines-num,
  1257. .repository.file.list #file-content .code-view .lines-code {
  1258. padding: 0;
  1259. }
  1260. .repository.file.list #file-content .code-view .lines-num pre,
  1261. .repository.file.list #file-content .code-view .lines-code pre,
  1262. .repository.file.list #file-content .code-view .lines-num ol,
  1263. .repository.file.list #file-content .code-view .lines-code ol,
  1264. .repository.file.list #file-content .code-view .lines-num .hljs,
  1265. .repository.file.list #file-content .code-view .lines-code .hljs {
  1266. background-color: white;
  1267. margin: 0;
  1268. padding: 0 !important;
  1269. }
  1270. .repository.file.list #file-content .code-view .lines-num pre li,
  1271. .repository.file.list #file-content .code-view .lines-code pre li,
  1272. .repository.file.list #file-content .code-view .lines-num ol li,
  1273. .repository.file.list #file-content .code-view .lines-code ol li,
  1274. .repository.file.list #file-content .code-view .lines-num .hljs li,
  1275. .repository.file.list #file-content .code-view .lines-code .hljs li {
  1276. padding-left: 5px;
  1277. }
  1278. .repository.file.list #file-content .code-view .lines-num pre li.active,
  1279. .repository.file.list #file-content .code-view .lines-code pre li.active,
  1280. .repository.file.list #file-content .code-view .lines-num ol li.active,
  1281. .repository.file.list #file-content .code-view .lines-code ol li.active,
  1282. .repository.file.list #file-content .code-view .lines-num .hljs li.active,
  1283. .repository.file.list #file-content .code-view .lines-code .hljs li.active {
  1284. background: #ffffdd;
  1285. }
  1286. .repository.file.list .sidebar {
  1287. padding-left: 0;
  1288. }
  1289. .repository.file.list .sidebar .octicon {
  1290. width: 16px;
  1291. }
  1292. .repository.options #interval {
  1293. width: 100px!important;
  1294. min-width: 100px;
  1295. }
  1296. .repository.options .danger .item {
  1297. padding: 20px 15px;
  1298. }
  1299. .repository.options .danger .ui.divider {
  1300. margin: 0;
  1301. }
  1302. .repository.new.issue .comment.form .comment .avatar {
  1303. width: 3em;
  1304. }
  1305. .repository.new.issue .comment.form .content {
  1306. margin-left: 4em;
  1307. }
  1308. .repository.new.issue .comment.form .content:before,
  1309. .repository.new.issue .comment.form .content:after {
  1310. right: 100%;
  1311. top: 20px;
  1312. border: solid transparent;
  1313. content: " ";
  1314. height: 0;
  1315. width: 0;
  1316. position: absolute;
  1317. pointer-events: none;
  1318. }
  1319. .repository.new.issue .comment.form .content:before {
  1320. border-right-color: #D4D4D5;
  1321. border-width: 9px;
  1322. margin-top: -9px;
  1323. }
  1324. .repository.new.issue .comment.form .content:after {
  1325. border-right-color: #f7f7f7;
  1326. border-width: 8px;
  1327. margin-top: -8px;
  1328. }
  1329. .repository.new.issue .comment.form .content:after {
  1330. border-right-color: #fff;
  1331. }
  1332. .repository.new.issue .comment.form .content .markdown {
  1333. font-size: 14px;
  1334. }
  1335. .repository.new.issue .comment.form .metas {
  1336. min-width: 220px;
  1337. }
  1338. .repository.new.issue .comment.form .metas .filter.menu {
  1339. max-height: 300px;
  1340. overflow-x: auto;
  1341. }
  1342. .repository.view.issue .title {
  1343. padding-bottom: 0!important;
  1344. }
  1345. .repository.view.issue .title h1 {
  1346. font-weight: 300;
  1347. font-size: 2.3rem;
  1348. margin-bottom: 5px;
  1349. }
  1350. .repository.view.issue .title h1 .ui.input {
  1351. font-size: 0.5em;
  1352. vertical-align: top;
  1353. width: 50%;
  1354. min-width: 600px;
  1355. }
  1356. .repository.view.issue .title h1 .ui.input input {
  1357. font-size: 1.5em;
  1358. padding: 6px 10px;
  1359. }
  1360. .repository.view.issue .title .index {
  1361. font-weight: 300;
  1362. color: #aaa;
  1363. letter-spacing: -1px;
  1364. }
  1365. .repository.view.issue .title .label {
  1366. margin-right: 10px;
  1367. }
  1368. .repository.view.issue .title .edit-zone {
  1369. margin-top: 10px;
  1370. }
  1371. .repository.view.issue .pull-desc code {
  1372. color: #0166E6;
  1373. }
  1374. .repository.view.issue .pull.tabular.menu {
  1375. margin-bottom: 10px;
  1376. }
  1377. .repository.view.issue .pull.tabular.menu .octicon {
  1378. margin-right: 5px;
  1379. }
  1380. .repository.view.issue .pull.tab.segment {
  1381. border: none;
  1382. padding: 0;
  1383. padding-top: 10px;
  1384. box-shadow: none;
  1385. background-color: inherit;
  1386. }
  1387. .repository.view.issue .pull .merge.box .avatar {
  1388. margin-left: 10px;
  1389. margin-top: 10px;
  1390. }
  1391. .repository.view.issue .comment-list:before {
  1392. display: block;
  1393. content: "";
  1394. position: absolute;
  1395. margin-top: 12px;
  1396. margin-bottom: 14px;
  1397. top: 0;
  1398. bottom: 0;
  1399. left: 96px;
  1400. width: 2px;
  1401. background-color: #f3f3f3;
  1402. z-index: -1;
  1403. }
  1404. .repository.view.issue .comment-list .comment .avatar {
  1405. width: 3em;
  1406. }
  1407. .repository.view.issue .comment-list .comment .tag {
  1408. color: #767676;
  1409. margin-top: 3px;
  1410. padding: 2px 5px;
  1411. font-size: 12px;
  1412. border: 1px solid rgba(0, 0, 0, 0.1);
  1413. border-radius: 3px;
  1414. }
  1415. .repository.view.issue .comment-list .comment .actions .item {
  1416. float: left;
  1417. }
  1418. .repository.view.issue .comment-list .comment .actions a.item {
  1419. margin-top: 6px;
  1420. margin-left: 10px;
  1421. }
  1422. .repository.view.issue .comment-list .comment .content {
  1423. margin-left: 4em;
  1424. }
  1425. .repository.view.issue .comment-list .comment .content .header {
  1426. font-weight: normal;
  1427. padding: auto 15px;
  1428. position: relative;
  1429. color: #767676;
  1430. background-color: #f7f7f7;
  1431. border-bottom: 1px solid #eee;
  1432. border-top-left-radius: 3px;
  1433. border-top-right-radius: 3px;
  1434. }
  1435. .repository.view.issue .comment-list .comment .content .header:before,
  1436. .repository.view.issue .comment-list .comment .content .header:after {
  1437. right: 100%;
  1438. top: 20px;
  1439. border: solid transparent;
  1440. content: " ";
  1441. height: 0;
  1442. width: 0;
  1443. position: absolute;
  1444. pointer-events: none;
  1445. }
  1446. .repository.view.issue .comment-list .comment .content .header:before {
  1447. border-right-color: #D4D4D5;
  1448. border-width: 9px;
  1449. margin-top: -9px;
  1450. }
  1451. .repository.view.issue .comment-list .comment .content .header:after {
  1452. border-right-color: #f7f7f7;
  1453. border-width: 8px;
  1454. margin-top: -8px;
  1455. }
  1456. .repository.view.issue .comment-list .comment .content .header .text {
  1457. max-width: 78%;
  1458. padding-top: 10px;
  1459. padding-bottom: 10px;
  1460. }
  1461. .repository.view.issue .comment-list .comment .content .markdown {
  1462. font-size: 14px;
  1463. }
  1464. .repository.view.issue .comment-list .comment .content .no-content {
  1465. color: #767676;
  1466. font-style: italic;
  1467. }
  1468. .repository.view.issue .comment-list .comment .content > .bottom.segment {
  1469. background: #f3f4f5;
  1470. }
  1471. .repository.view.issue .comment-list .comment .content > .bottom.segment .ui.images::after {
  1472. clear: both;
  1473. content: ' ';
  1474. display: block;
  1475. }
  1476. .repository.view.issue .comment-list .comment .content > .bottom.segment a {
  1477. display: block;
  1478. float: left;
  1479. margin: 5px;
  1480. padding: 5px;
  1481. height: 150px;
  1482. border: solid 1px #eee;
  1483. border-radius: 3px;
  1484. max-width: 150px;
  1485. background-color: #fff;
  1486. }
  1487. .repository.view.issue .comment-list .comment .content > .bottom.segment a:before {
  1488. content: ' ';
  1489. display: inline-block;
  1490. height: 100%;
  1491. vertical-align: middle;
  1492. }
  1493. .repository.view.issue .comment-list .comment .content > .bottom.segment .ui.image {
  1494. max-height: 100%;
  1495. width: auto;
  1496. margin: 0;
  1497. vertical-align: middle;
  1498. }
  1499. .repository.view.issue .comment-list .comment .ui.form .field:first-child {
  1500. clear: none;
  1501. }
  1502. .repository.view.issue .comment-list .comment .ui.form .tab.segment {
  1503. border: none;
  1504. padding: 0;
  1505. padding-top: 10px;
  1506. }
  1507. .repository.view.issue .comment-list .comment .ui.form textarea {
  1508. height: 200px;
  1509. font-family: "Consolas", monospace;
  1510. }
  1511. .repository.view.issue .comment-list .comment .edit.buttons {
  1512. margin-top: 10px;
  1513. }
  1514. .repository.view.issue .comment-list .event {
  1515. position: relative;
  1516. margin: 15px 0 15px 79px;
  1517. padding-left: 25px;
  1518. }
  1519. .repository.view.issue .comment-list .event .octicon {
  1520. width: 30px;
  1521. float: left;
  1522. margin-left: -36px;
  1523. text-align: center;
  1524. }
  1525. .repository.view.issue .comment-list .event .octicon.octicon-circle-slash {
  1526. margin-top: 5px;
  1527. font-size: 20px;
  1528. color: #bd2c00;
  1529. }
  1530. .repository.view.issue .comment-list .event .octicon.octicon-primitive-dot {
  1531. font-size: 30px;
  1532. color: #6cc644;
  1533. }
  1534. .repository.view.issue .comment-list .event .octicon.octicon-bookmark {
  1535. margin-top: 3px;
  1536. font-size: 25px;
  1537. }
  1538. .repository.view.issue .comment-list .event .detail {
  1539. font-size: 0.9rem;
  1540. margin-top: 5px;
  1541. margin-left: 35px;
  1542. }
  1543. .repository.view.issue .comment-list .event .detail .octicon.octicon-git-commit {
  1544. margin-top: 2px;
  1545. }
  1546. .repository.view.issue .ui.segment.metas {
  1547. margin-top: -3px;
  1548. }
  1549. .repository.view.issue .ui.participants img {
  1550. margin-top: 5px;
  1551. margin-right: 5px;
  1552. }
  1553. .repository .comment.form .ui.comments {
  1554. margin-top: -12px;
  1555. max-width: 100%;
  1556. }
  1557. .repository .comment.form .content .field:first-child {
  1558. clear: none;
  1559. }
  1560. .repository .comment.form .content .form:before,
  1561. .repository .comment.form .content .form:after {
  1562. right: 100%;
  1563. top: 20px;
  1564. border: solid transparent;
  1565. content: " ";
  1566. height: 0;
  1567. width: 0;
  1568. position: absolute;
  1569. pointer-events: none;
  1570. }
  1571. .repository .comment.form .content .form:before {
  1572. border-right-color: #D4D4D5;
  1573. border-width: 9px;
  1574. margin-top: -9px;
  1575. }
  1576. .repository .comment.form .content .form:after {
  1577. border-right-color: #f7f7f7;
  1578. border-width: 8px;
  1579. margin-top: -8px;
  1580. }
  1581. .repository .comment.form .content .form:after {
  1582. border-right-color: #fff;
  1583. }
  1584. .repository .comment.form .content .tab.segment {
  1585. border: none;
  1586. padding: 0;
  1587. padding-top: 10px;
  1588. }
  1589. .repository .comment.form .content textarea {
  1590. height: 200px;
  1591. font-family: "Consolas", monospace;
  1592. }
  1593. .repository .label.list {
  1594. list-style: none;
  1595. padding-top: 15px;
  1596. }
  1597. .repository .label.list .item {
  1598. padding-top: 10px;
  1599. padding-bottom: 10px;
  1600. border-bottom: 1px dashed #AAA;
  1601. }
  1602. .repository .label.list .item a {
  1603. font-size: 15px;
  1604. padding-top: 5px;
  1605. padding-right: 10px;
  1606. color: #666;
  1607. }
  1608. .repository .label.list .item a:hover {
  1609. color: #000;
  1610. }
  1611. .repository .label.list .item a.open-issues {
  1612. margin-right: 30px;
  1613. }
  1614. .repository .label.list .item .ui.label {
  1615. font-size: 1em;
  1616. }
  1617. .repository .milestone.list {
  1618. list-style: none;
  1619. padding-top: 15px;
  1620. }
  1621. .repository .milestone.list > .item {
  1622. padding-top: 10px;
  1623. padding-bottom: 10px;
  1624. border-bottom: 1px dashed #AAA;
  1625. }
  1626. .repository .milestone.list > .item > a {
  1627. padding-top: 5px;
  1628. padding-right: 10px;
  1629. color: #000;
  1630. }
  1631. .repository .milestone.list > .item > a:hover {
  1632. color: #4078c0;
  1633. }
  1634. .repository .milestone.list > .item .ui.progress {
  1635. width: 40%;
  1636. padding: 0;
  1637. border: 0;
  1638. margin: 0;
  1639. }
  1640. .repository .milestone.list > .item .ui.progress .bar {
  1641. height: 20px;
  1642. }
  1643. .repository .milestone.list > .item .meta {
  1644. color: #999;
  1645. padding-top: 5px;
  1646. }
  1647. .repository .milestone.list > .item .meta .issue-stats .octicon {
  1648. padding-left: 5px;
  1649. }
  1650. .repository .milestone.list > .item .meta .overdue {
  1651. color: red;
  1652. }
  1653. .repository .milestone.list > .item .operate {
  1654. margin-top: -15px;
  1655. }
  1656. .repository .milestone.list > .item .operate > a {
  1657. font-size: 15px;
  1658. padding-top: 5px;
  1659. padding-right: 10px;
  1660. color: #666;
  1661. }
  1662. .repository .milestone.list > .item .operate > a:hover {
  1663. color: #000;
  1664. }
  1665. .repository .milestone.list > .item .content {
  1666. padding-top: 10px;
  1667. }
  1668. .repository.new.milestone textarea {
  1669. height: 200px;
  1670. }
  1671. .repository.new.milestone #deadline {
  1672. width: 150px;
  1673. }
  1674. .repository.compare.pull .choose.branch .octicon {
  1675. padding-right: 10px;
  1676. }
  1677. .repository.compare.pull .comment.form .content:before,
  1678. .repository.compare.pull .comment.form .content:after {
  1679. right: 100%;
  1680. top: 20px;
  1681. border: solid transparent;
  1682. content: " ";
  1683. height: 0;
  1684. width: 0;
  1685. position: absolute;
  1686. pointer-events: none;
  1687. }
  1688. .repository.compare.pull .comment.form .content:before {
  1689. border-right-color: #D4D4D5;
  1690. border-width: 9px;
  1691. margin-top: -9px;
  1692. }
  1693. .repository.compare.pull .comment.form .content:after {
  1694. border-right-color: #f7f7f7;
  1695. border-width: 8px;
  1696. margin-top: -8px;
  1697. }
  1698. .repository.compare.pull .comment.form .content:after {
  1699. border-right-color: #fff;
  1700. }
  1701. .repository .filter.dropdown .menu {
  1702. margin-top: 1px!important;
  1703. }
  1704. .repository.commits .header .ui.right .search input {
  1705. font-weight: normal;
  1706. padding: 5px 10px;
  1707. }
  1708. .repository #commits-table thead th:first-of-type {
  1709. padding-left: 15px;
  1710. }
  1711. .repository #commits-table thead .sha {
  1712. font-size: 13px;
  1713. padding: 6px 40px 4px 35px;
  1714. }
  1715. .repository #commits-table.ui.basic.striped.table tbody tr:nth-child(2n) {
  1716. background-color: rgba(0, 0, 0, 0.02) !important;
  1717. }
  1718. .repository .diff-detail-box {
  1719. margin: 15px 0;
  1720. line-height: 30px;
  1721. }
  1722. .repository .diff-detail-box ol {
  1723. clear: both;
  1724. padding-left: 0;
  1725. margin-top: 5px;
  1726. margin-bottom: 28px;
  1727. }
  1728. .repository .diff-detail-box ol li {
  1729. list-style: none;
  1730. padding-bottom: 4px;
  1731. margin-bottom: 4px;
  1732. border-bottom: 1px dashed #DDD;
  1733. padding-left: 6px;
  1734. }
  1735. .repository .diff-detail-box span.status {
  1736. display: inline-block;
  1737. width: 12px;
  1738. height: 12px;
  1739. margin-right: 8px;
  1740. vertical-align: middle;
  1741. }
  1742. .repository .diff-detail-box span.status.modify {
  1743. background-color: #f0db88;
  1744. }
  1745. .repository .diff-detail-box span.status.add {
  1746. background-color: #b4e2b4;
  1747. }
  1748. .repository .diff-detail-box span.status.del {
  1749. background-color: #e9aeae;
  1750. }
  1751. .repository .diff-detail-box span.status.rename {
  1752. background-color: #dad8ff;
  1753. }
  1754. .repository .diff-box .count {
  1755. margin-right: 12px;
  1756. font-size: 13px;
  1757. }
  1758. .repository .diff-box .count .bar {
  1759. background-color: #bd2c00;
  1760. height: 12px;
  1761. width: 40px;
  1762. display: inline-block;
  1763. margin: 2px 4px 0 4px;
  1764. vertical-align: text-top;
  1765. }
  1766. .repository .diff-box .count .bar .add {
  1767. background-color: #55a532;
  1768. height: 12px;
  1769. }
  1770. .repository .diff-box .file {
  1771. color: #888;
  1772. }
  1773. .repository .diff-file-box .header {
  1774. background-color: #f7f7f7;
  1775. }
  1776. .repository .diff-file-box .file-body.file-code .lines-num {
  1777. text-align: right;
  1778. color: #A7A7A7;
  1779. background: #fafafa;
  1780. width: 1%;
  1781. }
  1782. .repository .diff-file-box .file-body.file-code .lines-num span.fold {
  1783. display: block;
  1784. text-align: center;
  1785. }
  1786. .repository .diff-file-box .file-body.file-code .lines-num-old {
  1787. border-right: 1px solid #DDD;
  1788. }
  1789. .repository .diff-file-box .code-diff {
  1790. font-size: 12px;
  1791. }
  1792. .repository .diff-file-box .code-diff td {
  1793. padding: 0;
  1794. padding-left: 10px;
  1795. border-top: none;
  1796. }
  1797. .repository .diff-file-box .code-diff pre {
  1798. margin: 0;
  1799. }
  1800. .repository .diff-file-box .code-diff .lines-num {
  1801. border-right: 1px solid #d4d4d5;
  1802. padding: 0 5px;
  1803. }
  1804. .repository .diff-file-box .code-diff tbody tr.tag-code td,
  1805. .repository .diff-file-box .code-diff tbody tr.tag-code pre {
  1806. background-color: #F0F0F0 !important;
  1807. border-color: #D2CECE!important;
  1808. padding-top: 4px;
  1809. padding-bottom: 4px;
  1810. }
  1811. .repository .diff-file-box .code-diff tbody tr.tag-code td.halfwidth {
  1812. width: 50%;
  1813. }
  1814. .repository .diff-file-box .code-diff tbody tr.del-code td.add-code {
  1815. background-color: #eaffea !important;
  1816. border-color: #c1e9c1 !important;
  1817. }
  1818. .repository .diff-file-box .code-diff tbody tr.del-code td.add-code pre {
  1819. background-color: #eaffea !important;
  1820. border-color: #c1e9c1 !important;
  1821. }
  1822. .repository .diff-file-box .code-diff tbody tr.del-code td,
  1823. .repository .diff-file-box .code-diff tbody tr.del-code pre {
  1824. background-color: #ffecec !important;
  1825. border-color: #f1c0c0 !important;
  1826. }
  1827. .repository .diff-file-box .code-diff tbody tr.del-code td.halfwidth {
  1828. width: 50%;
  1829. }
  1830. .repository .diff-file-box .code-diff tbody tr.add-code td,
  1831. .repository .diff-file-box .code-diff tbody tr.add-code pre {
  1832. background-color: #eaffea !important;
  1833. border-color: #c1e9c1 !important;
  1834. }
  1835. .repository .diff-file-box .code-diff tbody tr.add-code td.halfwidth {
  1836. width: 50%;
  1837. }
  1838. .repository .diff-file-box .code-diff tbody tr .removed-code {
  1839. background-color: #ff9999;
  1840. }
  1841. .repository .diff-file-box .code-diff tbody tr .added-code {
  1842. background-color: #99ff99;
  1843. }
  1844. .repository .diff-file-box.file-content img {
  1845. max-width: 100%;
  1846. padding: 5px 5px 0 5px;
  1847. }
  1848. .repository .code-view {
  1849. overflow: auto;
  1850. overflow-x: auto;
  1851. overflow-y: hidden;
  1852. }
  1853. .repository.quickstart .guide .item {
  1854. padding: 1em;
  1855. }
  1856. .repository.quickstart .guide .item small {
  1857. font-weight: normal;
  1858. }
  1859. .repository.quickstart .guide .clone.button:first-child {
  1860. border-radius: .28571429rem 0 0 .28571429rem;
  1861. }
  1862. .repository.quickstart .guide .ui.action.small.input {
  1863. width: 100%;
  1864. }
  1865. .repository.quickstart .guide #repo-clone-url {
  1866. border-radius: 0;
  1867. padding: 5px 10px;
  1868. font-size: 1.2em;
  1869. }
  1870. .repository.release #release-list {
  1871. border-top: 1px solid #DDD;
  1872. margin-top: 20px;
  1873. padding-top: 15px;
  1874. }
  1875. .repository.release #release-list > li {
  1876. list-style: none;
  1877. }
  1878. .repository.release #release-list > li .meta,
  1879. .repository.release #release-list > li .detail {
  1880. padding-top: 30px;
  1881. padding-bottom: 40px;
  1882. }
  1883. .repository.release #release-list > li .meta {
  1884. text-align: right;
  1885. position: relative;
  1886. }
  1887. .repository.release #release-list > li .meta .tag:not(.icon) {
  1888. display: block;
  1889. margin-top: 15px;
  1890. }
  1891. .repository.release #release-list > li .meta .commit {
  1892. display: block;
  1893. margin-top: 10px;
  1894. }
  1895. .repository.release #release-list > li .detail {
  1896. border-left: 1px solid #DDD;
  1897. }
  1898. .repository.release #release-list > li .detail .author img {
  1899. margin-bottom: -3px;
  1900. }
  1901. .repository.release #release-list > li .detail .download {
  1902. margin-top: 20px;
  1903. }
  1904. .repository.release #release-list > li .detail .download > a .octicon {
  1905. margin-left: 5px;
  1906. margin-right: 5px;
  1907. }
  1908. .repository.release #release-list > li .detail .download .list {
  1909. padding-left: 0;
  1910. border-top: 1px solid #eee;
  1911. }
  1912. .repository.release #release-list > li .detail .download .list li {
  1913. list-style: none;
  1914. display: block;
  1915. padding-top: 8px;
  1916. padding-bottom: 8px;
  1917. border-bottom: 1px solid #eee;
  1918. }
  1919. .repository.release #release-list > li .detail .dot {
  1920. width: 9px;
  1921. height: 9px;
  1922. background-color: #ccc;
  1923. z-index: 999;
  1924. position: absolute;
  1925. display: block;
  1926. left: -5px;
  1927. top: 40px;
  1928. border-radius: 6px;
  1929. border: 1px solid #FFF;
  1930. }
  1931. .repository.new.release .target {
  1932. min-width: 500px;
  1933. }
  1934. .repository.new.release .target .at {
  1935. margin-left: -5px;
  1936. margin-right: 5px;
  1937. }
  1938. .repository.new.release .target .dropdown.icon {
  1939. margin: 0;
  1940. padding-top: 3px;
  1941. }
  1942. .repository.new.release .target .selection.dropdown {
  1943. padding-top: 10px;
  1944. padding-bottom: 10px;
  1945. }
  1946. .repository.new.release .prerelease.field {
  1947. margin-bottom: 0;
  1948. }
  1949. .repository.forks .list {
  1950. margin-top: 0;
  1951. }
  1952. .repository.forks .list .item {
  1953. padding-top: 10px;
  1954. padding-bottom: 10px;
  1955. border-bottom: 1px solid #DDD;
  1956. }
  1957. .repository.forks .list .item .ui.avatar {
  1958. float: left;
  1959. margin-right: 5px;
  1960. }
  1961. .repository.forks .list .item .link {
  1962. padding-top: 5px;
  1963. }
  1964. .repository.wiki.start .ui.segment {
  1965. padding-top: 70px;
  1966. padding-bottom: 100px;
  1967. }
  1968. .repository.wiki.start .ui.segment .mega-octicon {
  1969. font-size: 48px;
  1970. }
  1971. .repository.wiki.new .CodeMirror .CodeMirror-code {
  1972. font-family: "Consolas", monospace;
  1973. }
  1974. .repository.wiki.new .CodeMirror .CodeMirror-code .cm-comment {
  1975. background: inherit;
  1976. }
  1977. .repository.wiki.new .editor-preview {
  1978. background-color: white;
  1979. }
  1980. .repository.wiki.view .choose.page {
  1981. margin-top: -5px;
  1982. }
  1983. .repository.wiki.view .ui.sub.header {
  1984. text-transform: none;
  1985. }
  1986. .repository.wiki.view .markdown {
  1987. padding: 15px 30px;
  1988. }
  1989. .repository.wiki.view .markdown h1:first-of-type,
  1990. .repository.wiki.view .markdown h2:first-of-type,
  1991. .repository.wiki.view .markdown h3:first-of-type,
  1992. .repository.wiki.view .markdown h4:first-of-type,
  1993. .repository.wiki.view .markdown h5:first-of-type,
  1994. .repository.wiki.view .markdown h6:first-of-type {
  1995. margin-top: 0;
  1996. }
  1997. .repository.settings.collaboration .collaborator.list {
  1998. padding: 0;
  1999. }
  2000. .repository.settings.collaboration .collaborator.list > .item {
  2001. margin: 0;
  2002. line-height: 2em;
  2003. }
  2004. .repository.settings.collaboration .collaborator.list > .item:not(:last-child) {
  2005. border-bottom: 1px solid #DDD;
  2006. }
  2007. .repository.settings.collaboration #repo-collab-form #search-user-box .results {
  2008. left: 7px;
  2009. }
  2010. .repository.settings.collaboration #repo-collab-form .ui.button {
  2011. margin-left: 5px;
  2012. margin-top: -3px;
  2013. }
  2014. .user-cards .list {
  2015. padding: 0;
  2016. }
  2017. .user-cards .list .item {
  2018. list-style: none;
  2019. width: 32%;
  2020. margin: 10px 10px 10px 0;
  2021. padding-bottom: 14px;
  2022. float: left;
  2023. }
  2024. .user-cards .list .item .avatar {
  2025. width: 48px;
  2026. height: 48px;
  2027. float: left;
  2028. display: block;
  2029. margin-right: 10px;
  2030. }
  2031. .user-cards .list .item .name {
  2032. margin-top: 0;
  2033. margin-bottom: 0;
  2034. font-weight: normal;
  2035. }
  2036. .user-cards .list .item .meta {
  2037. margin-top: 5px;
  2038. }
  2039. #search-repo-box .results,
  2040. #search-user-box .results {
  2041. padding: 0;
  2042. position: absolute;
  2043. }
  2044. #search-repo-box .results .item,
  2045. #search-user-box .results .item {
  2046. padding: 10px 15px;
  2047. border-bottom: 1px solid #DDD;
  2048. cursor: pointer;
  2049. }
  2050. #search-repo-box .results .item:hover,
  2051. #search-user-box .results .item:hover {
  2052. background: rgba(0, 0, 0, 0.05) !important;
  2053. color: rgba(0, 0, 0, 0.95) !important;
  2054. }
  2055. #search-repo-box .results .item img,
  2056. #search-user-box .results .item img {
  2057. margin-right: 8px;
  2058. }
  2059. .issue.list {
  2060. list-style: none;
  2061. padding-top: 15px;
  2062. }
  2063. .issue.list > .item {
  2064. padding-top: 15px;
  2065. padding-bottom: 10px;
  2066. border-bottom: 1px dashed #AAA;
  2067. }
  2068. .issue.list > .item .title {
  2069. color: #444;
  2070. font-size: 15px;
  2071. font-weight: bold;
  2072. margin: 0 6px;
  2073. }
  2074. .issue.list > .item .title:hover {
  2075. color: #000;
  2076. }
  2077. .issue.list > .item .comment {
  2078. padding-right: 10px;
  2079. color: #666;
  2080. }
  2081. .issue.list > .item .desc {
  2082. padding-top: 5px;
  2083. color: #999;
  2084. }
  2085. .issue.list > .item .desc a.milestone {
  2086. padding-left: 5px;
  2087. color: #999!important;
  2088. }
  2089. .issue.list > .item .desc a.milestone:hover {
  2090. color: #000!important;
  2091. }
  2092. .issue.list > .item .desc .assignee {
  2093. margin-top: -5px;
  2094. margin-right: 5px;
  2095. }
  2096. .page.buttons {
  2097. padding-top: 15px;
  2098. }
  2099. .ui.comments .dropzone {
  2100. width: 100%;
  2101. margin-bottom: 10px;
  2102. border: 2px dashed #0087F7;
  2103. box-shadow: none!important;
  2104. }
  2105. .ui.comments .dropzone .dz-error-message {
  2106. top: 140px;
  2107. }
  2108. .settings .content {
  2109. margin-top: 2px;
  2110. }
  2111. .settings .content > .header,
  2112. .settings .content .segment {
  2113. box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
  2114. }
  2115. .settings .key.list .item:not(:first-child) {
  2116. border-top: 1px solid #eaeaea;
  2117. }
  2118. .settings .key.list .ssh-key-state-indicator {
  2119. float: left;
  2120. color: gray;
  2121. padding-left: 10px;
  2122. padding-top: 10px;
  2123. }
  2124. .settings .key.list .ssh-key-state-indicator.active {
  2125. color: #6cc644;
  2126. }
  2127. .settings .key.list .meta {
  2128. padding-top: 5px;
  2129. }
  2130. .settings .key.list .print {
  2131. color: #767676;
  2132. }
  2133. .settings .key.list .activity {
  2134. color: #666;
  2135. }
  2136. .settings .hook.list > .item:not(:first-child) {
  2137. border-top: 1px solid #eaeaea;
  2138. }
  2139. .settings .hook.list .item {
  2140. padding: 10px 20px;
  2141. }
  2142. .settings .hook.list .item .octicon,
  2143. .settings .hook.list .item .fa {
  2144. width: 20px;
  2145. text-align: center;
  2146. }
  2147. .settings .hook.history.list .item {
  2148. padding-left: 13px;
  2149. }
  2150. .settings .hook.history.list .item .meta .ui.right {
  2151. margin-top: 5px;
  2152. }
  2153. .settings .hook.history.list .item .meta .ui.right .time {
  2154. font-size: 12px;
  2155. }
  2156. .settings .hook.history.list .item .info {
  2157. margin-top: 10px;
  2158. }
  2159. .settings .hook.history.list .item .info .tabular.menu .item {
  2160. font-weight: 500;
  2161. }
  2162. .settings .hook.history.list .item .info .tab.segment {
  2163. border: none;
  2164. padding: 0;
  2165. padding-top: 10px;
  2166. box-shadow: none;
  2167. }
  2168. .settings .hook.history.list .item .info .tab.segment > * {
  2169. color: #666;
  2170. }
  2171. .settings .hook.history.list .item .info .tab.segment pre {
  2172. word-wrap: break-word;
  2173. }
  2174. .settings .hook.history.list .item .info .tab.segment pre .hljs {
  2175. padding: 0;
  2176. background-color: inherit;
  2177. }
  2178. .ui.vertical.menu .header.item {
  2179. font-size: 1.1em;
  2180. background: #f0f0f0;
  2181. }
  2182. .edit-label.modal .form .column,
  2183. .new-label.segment .form .column {
  2184. padding-right: 0;
  2185. }
  2186. .edit-label.modal .form .buttons,
  2187. .new-label.segment .form .buttons {
  2188. margin-left: auto;
  2189. padding-top: 15px;
  2190. }
  2191. .edit-label.modal .form .color.picker.column,
  2192. .new-label.segment .form .color.picker.column {
  2193. width: auto;
  2194. }
  2195. .edit-label.modal .form .color.picker.column .color-picker,
  2196. .new-label.segment .form .color.picker.column .color-picker {
  2197. height: 35px;
  2198. width: auto;
  2199. padding-left: 30px;
  2200. }
  2201. .edit-label.modal .form .minicolors-swatch.minicolors-sprite,
  2202. .new-label.segment .form .minicolors-swatch.minicolors-sprite {
  2203. top: 10px;
  2204. left: 10px;
  2205. width: 15px;
  2206. height: 15px;
  2207. }
  2208. .edit-label.modal .form .precolors,
  2209. .new-label.segment .form .precolors {
  2210. padding-left: 0;
  2211. padding-right: 0;
  2212. margin: 3px 10px auto 10px;
  2213. width: 120px;
  2214. }
  2215. .edit-label.modal .form .precolors .color,
  2216. .new-label.segment .form .precolors .color {
  2217. float: left;
  2218. width: 15px;
  2219. height: 15px;
  2220. }
  2221. #avatar-arrow:before,
  2222. #avatar-arrow:after {
  2223. right: 100%;
  2224. top: 20px;
  2225. border: solid transparent;
  2226. content: " ";
  2227. height: 0;
  2228. width: 0;
  2229. position: absolute;
  2230. pointer-events: none;
  2231. }
  2232. #avatar-arrow:before {
  2233. border-right-color: #D4D4D5;
  2234. border-width: 9px;
  2235. margin-top: -9px;
  2236. }
  2237. #avatar-arrow:after {
  2238. border-right-color: #f7f7f7;
  2239. border-width: 8px;
  2240. margin-top: -8px;
  2241. }
  2242. #transfer-repo-modal .ui.message,
  2243. #delete-repo-modal .ui.message {
  2244. width: 100%!important;
  2245. }
  2246. .organization {
  2247. padding-top: 15px;
  2248. padding-bottom: 80px;
  2249. }
  2250. .organization .head .ui.header .text {
  2251. vertical-align: middle;
  2252. font-size: 1.6rem;
  2253. margin-left: 15px;
  2254. }
  2255. .organization .head .ui.header .ui.right {
  2256. margin-top: 5px;
  2257. }
  2258. .organization.new.org form {
  2259. margin: auto;
  2260. width: 800px!important;
  2261. }
  2262. .organization.new.org form .ui.message {
  2263. text-align: center;
  2264. }
  2265. .organization.new.org form .header {
  2266. padding-left: 280px !important;
  2267. }
  2268. .organization.new.org form .inline.field > label {
  2269. text-align: right;
  2270. width: 250px !important;
  2271. word-wrap: break-word;
  2272. }
  2273. .organization.new.org form .help {
  2274. margin-left: 265px !important;
  2275. }
  2276. .organization.new.org form .optional .title {
  2277. margin-left: 250px !important;
  2278. }
  2279. .organization.new.org form input,
  2280. .organization.new.org form textarea {
  2281. width: 50%!important;
  2282. }
  2283. .organization.options input {
  2284. min-width: 300px;
  2285. }
  2286. .organization.profile #org-avatar {
  2287. width: 100px;
  2288. height: 100px;
  2289. margin-right: 15px;
  2290. }
  2291. .organization.profile #org-info .ui.header {
  2292. font-size: 36px;
  2293. margin-bottom: 0;
  2294. }
  2295. .organization.profile #org-info .desc {
  2296. font-size: 16px;
  2297. margin-bottom: 10px;
  2298. }
  2299. .organization.profile #org-info .meta .item {
  2300. display: inline-block;
  2301. margin-right: 10px;
  2302. }
  2303. .organization.profile #org-info .meta .item .icon {
  2304. margin-right: 5px;
  2305. }
  2306. .organization.profile .ui.top.header .ui.right {
  2307. margin-top: 0;
  2308. }
  2309. .organization.profile .teams .item {
  2310. padding: 10px 15px;
  2311. }
  2312. .organization.teams .members .ui.avatar,
  2313. .organization.profile .members .ui.avatar {
  2314. width: 48px;
  2315. height: 48px;
  2316. margin-right: 5px;
  2317. }
  2318. .organization.invite #invite-box {
  2319. margin: auto;
  2320. margin-top: 50px;
  2321. width: 500px !important;
  2322. }
  2323. .organization.invite #invite-box #search-user-box input {
  2324. margin-left: 0;
  2325. width: 300px;
  2326. }
  2327. .organization.invite #invite-box .ui.button {
  2328. margin-left: 5px;
  2329. margin-top: -3px;
  2330. }
  2331. .organization.members .list .item {
  2332. margin-left: 0;
  2333. margin-right: 0;
  2334. border-bottom: 1px solid #eee;
  2335. }
  2336. .organization.members .list .item .ui.avatar {
  2337. width: 48px;
  2338. height: 48px;
  2339. }
  2340. .organization.members .list .item .meta {
  2341. line-height: 24px;
  2342. }
  2343. .organization.teams .detail .item {
  2344. padding: 10px 15px;
  2345. }
  2346. .organization.teams .detail .item:not(:last-child) {
  2347. border-bottom: 1px solid #eee;
  2348. }
  2349. .organization.teams .repositories .item,
  2350. .organization.teams .members .item {
  2351. padding: 10px 20px;
  2352. line-height: 32px;
  2353. }
  2354. .organization.teams .repositories .item:not(:last-child),
  2355. .organization.teams .members .item:not(:last-child) {
  2356. border-bottom: 1px solid #DDD;
  2357. }
  2358. .organization.teams .repositories .item .button,
  2359. .organization.teams .members .item .button {
  2360. padding: 9px 10px;
  2361. }
  2362. .organization.teams #add-repo-form input,
  2363. .organization.teams #add-member-form input {
  2364. margin-left: 0;
  2365. }
  2366. .organization.teams #add-repo-form .ui.button,
  2367. .organization.teams #add-member-form .ui.button {
  2368. margin-left: 5px;
  2369. margin-top: -3px;
  2370. }
  2371. .user:not(.icon) {
  2372. padding-top: 15px;
  2373. padding-bottom: 80px;
  2374. }
  2375. .user.settings .list .item.ui.grid {
  2376. margin-top: 15px;
  2377. }
  2378. .user.settings .email.list .item:not(:first-child) {
  2379. border-top: 1px solid #eaeaea;
  2380. height: 50px;
  2381. }
  2382. .user.settings .email.list .item:not(:first-child) .button {
  2383. margin-top: -10px;
  2384. }
  2385. .user.profile .ui.card #profile-avatar {
  2386. height: 290px;
  2387. }
  2388. .user.profile .ui.card .username {
  2389. display: block;
  2390. }
  2391. .user.profile .ui.card .extra.content {
  2392. padding: 0;
  2393. }
  2394. .user.profile .ui.card .extra.content ul {
  2395. margin: 0;
  2396. padding: 0;
  2397. }
  2398. .user.profile .ui.card .extra.content ul li {
  2399. padding: 10px;
  2400. list-style: none;
  2401. }
  2402. .user.profile .ui.card .extra.content ul li:not(:last-child) {
  2403. border-bottom: 1px solid #eaeaea;
  2404. }
  2405. .user.profile .ui.card .extra.content ul li .octicon {
  2406. margin-left: 1px;
  2407. margin-right: 5px;
  2408. }
  2409. .user.profile .ui.card .extra.content ul li.follow .ui.button {
  2410. width: 100%;
  2411. }
  2412. .user.profile .ui.repository.list {
  2413. margin-top: 25px;
  2414. }
  2415. .user.followers .header.name {
  2416. font-size: 20px;
  2417. line-height: 24px;
  2418. vertical-align: middle;
  2419. }
  2420. .user.followers .follow .ui.button {
  2421. padding: 8px 15px;
  2422. }
  2423. .dashboard {
  2424. padding-top: 15px;
  2425. padding-bottom: 80px;
  2426. }
  2427. .dashboard.feeds .context.user.menu,
  2428. .dashboard.issues .context.user.menu {
  2429. z-index: 101;
  2430. min-width: 200px;
  2431. }
  2432. .dashboard.feeds .context.user.menu .ui.header,
  2433. .dashboard.issues .context.user.menu .ui.header {
  2434. font-size: 1rem;
  2435. text-transform: none;
  2436. }
  2437. .dashboard.feeds .filter.menu .item,
  2438. .dashboard.issues .filter.menu .item {
  2439. text-align: left;
  2440. }
  2441. .dashboard.feeds .filter.menu .item .text,
  2442. .dashboard.issues .filter.menu .item .text {
  2443. height: 16px;
  2444. vertical-align: middle;
  2445. }
  2446. .dashboard.feeds .filter.menu .item .text.truncate,
  2447. .dashboard.issues .filter.menu .item .text.truncate {
  2448. width: 85%;
  2449. }
  2450. .dashboard.feeds .filter.menu .item .floating.label,
  2451. .dashboard.issues .filter.menu .item .floating.label {
  2452. top: 7px;
  2453. left: 90%;
  2454. width: 15%;
  2455. }
  2456. .dashboard.feeds .filter.menu .jump.item,
  2457. .dashboard.issues .filter.menu .jump.item {
  2458. margin: 1px;
  2459. padding-right: 0;
  2460. }
  2461. .dashboard.feeds .filter.menu .menu,
  2462. .dashboard.issues .filter.menu .menu {
  2463. max-height: 300px;
  2464. overflow-x: auto;
  2465. right: 0!important;
  2466. left: auto!important;
  2467. }
  2468. .dashboard.feeds .ui.right .head.menu,
  2469. .dashboard.issues .ui.right .head.menu {
  2470. margin-top: -5px;
  2471. }
  2472. .dashboard.feeds .ui.right .head.menu .item.active,
  2473. .dashboard.issues .ui.right .head.menu .item.active {
  2474. color: #d9453d;
  2475. }
  2476. .dashboard.feeds .head.menu .octicon,
  2477. .dashboard.issues .head.menu .octicon {
  2478. margin-right: 5px;
  2479. }
  2480. .feeds .news .ui.avatar {
  2481. margin-top: 13px;
  2482. }
  2483. .feeds .news p {
  2484. line-height: 1em;
  2485. }
  2486. .feeds .news .time-since {
  2487. font-size: 13px;
  2488. }
  2489. .feeds .news .issue.title {
  2490. line-height: 1.1em;
  2491. width: 80%;
  2492. }
  2493. .feeds .news .push.news .content ul {
  2494. font-size: 13px;
  2495. list-style: none;
  2496. padding-left: 10px;
  2497. }
  2498. .feeds .news .push.news .content ul img {
  2499. margin-bottom: -2px;
  2500. }
  2501. .feeds .news .push.news .content ul .text.truncate {
  2502. width: 80%;
  2503. margin-bottom: -5px;
  2504. }
  2505. .feeds .news .commit-id {
  2506. font-family: Consolas, monospace;
  2507. }
  2508. .feeds .news code {
  2509. padding: 1px;
  2510. font-size: 85%;
  2511. background-color: rgba(0, 0, 0, 0.04);
  2512. border-radius: 3px;
  2513. word-break: break-all;
  2514. }
  2515. .feeds .list .header {
  2516. padding-top: 10px;
  2517. padding-bottom: 5px;
  2518. }
  2519. .feeds .list .header .plus.icon {
  2520. margin-top: 5px;
  2521. margin-right: 0;
  2522. }
  2523. .feeds .list ul {
  2524. list-style: none;
  2525. margin: 0;
  2526. padding-left: 0;
  2527. }
  2528. .feeds .list ul li:not(:last-child) {
  2529. border-bottom: 1px solid #EAEAEA;
  2530. }
  2531. .feeds .list ul li.private {
  2532. background-color: #fcf8e9;
  2533. }
  2534. .feeds .list ul li a {
  2535. padding: 6px 1.2em;
  2536. display: block;
  2537. }
  2538. .feeds .list ul li a .octicon {
  2539. margin-right: 6px;
  2540. color: #888;
  2541. }
  2542. .feeds .list .repo-owner-name-list .item-name {
  2543. max-width: 70%;
  2544. margin-bottom: -4px;
  2545. }
  2546. .feeds .list #collaborative-repo-list .owner-and-repo {
  2547. max-width: 80%;
  2548. margin-bottom: -5px;
  2549. }
  2550. .feeds .list #collaborative-repo-list .owner-name {
  2551. max-width: 120px;
  2552. margin-bottom: -5px;
  2553. }
  2554. .admin {
  2555. padding-top: 15px;
  2556. padding-bottom: 80px;
  2557. }
  2558. .admin .table.segment {
  2559. padding: 0;
  2560. font-size: 13px;
  2561. }
  2562. .admin .table.segment:not(.striped) {
  2563. padding-top: 5px;
  2564. }
  2565. .admin .table.segment:not(.striped) thead th:last-child {
  2566. padding-right: 5px !important;
  2567. }
  2568. .admin .table.segment th {
  2569. padding-top: 5px;
  2570. padding-bottom: 5px;
  2571. }
  2572. .admin .table.segment:not(.select) th:first-of-type,
  2573. .admin .table.segment:not(.select) td:first-of-type {
  2574. padding-left: 15px !important;
  2575. }
  2576. .admin .ui.header,
  2577. .admin .ui.segment {
  2578. box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
  2579. }
  2580. .admin.user .email {
  2581. max-width: 200px;
  2582. }
  2583. .admin dl.admin-dl-horizontal {
  2584. padding: 20px;
  2585. margin: 0;
  2586. }
  2587. .admin dl.admin-dl-horizontal dd {
  2588. margin-left: 240px;
  2589. }
  2590. .admin dl.admin-dl-horizontal dt {
  2591. font-weight: bolder;
  2592. float: left;
  2593. width: 250px;
  2594. clear: left;
  2595. overflow: hidden;
  2596. text-overflow: ellipsis;
  2597. white-space: nowrap;
  2598. }
  2599. .admin.config #test-mail-btn {
  2600. margin-left: 5px;
  2601. }
  2602. .explore {
  2603. padding-top: 15px;
  2604. padding-bottom: 80px;
  2605. }
  2606. .explore .navbar .octicon {
  2607. width: 16px;
  2608. text-align: center;
  2609. }
  2610. .ui.repository.list .item {
  2611. padding-bottom: 25px;
  2612. }
  2613. .ui.repository.list .item:not(:first-child) {
  2614. border-top: 1px solid #eee;
  2615. padding-top: 25px;
  2616. }
  2617. .ui.repository.list .item .ui.header {
  2618. font-size: 1.5rem;
  2619. padding-bottom: 10px;
  2620. }
  2621. .ui.repository.list .item .ui.header .name {
  2622. word-break: break-all;
  2623. }
  2624. .ui.repository.list .item .ui.header .metas {
  2625. color: #888;
  2626. font-size: 13px;
  2627. font-weight: normal;
  2628. }
  2629. .ui.repository.list .item .ui.header .metas span:not(:last-child) {
  2630. margin-right: 5px;
  2631. }
  2632. .ui.repository.list .item .time {
  2633. font-size: 12px;
  2634. color: #808080;
  2635. }
  2636. .ui.user.list .item {
  2637. padding-bottom: 25px;
  2638. }
  2639. .ui.user.list .item:not(:first-child) {
  2640. border-top: 1px solid #eee;
  2641. padding-top: 25px;
  2642. }
  2643. .ui.user.list .item .ui.avatar.image {
  2644. width: 40px;
  2645. height: 40px;
  2646. }
  2647. .ui.user.list .item .description {
  2648. margin-top: 5px;
  2649. }
  2650. .ui.user.list .item .description .octicon:not(:first-child) {
  2651. margin-left: 5px;
  2652. }
  2653. .ui.user.list .item .description a {
  2654. color: #333;
  2655. }
  2656. .ui.user.list .item .description a:hover {
  2657. text-decoration: underline;
  2658. }