gogs.css 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054
  1. @font-face {
  2. font-family: 'octicons';
  3. src: url('../fonts/octicons.eot?#iefix&v=30e752e9a0821a0a098947055eeece0b0f46bc34') format('embedded-opentype'), url('../fonts/octicons.woff?v=30e752e9a0821a0a098947055eeece0b0f46bc34') format('woff'), url('../fonts/octicons.ttf?v=30e752e9a0821a0a098947055eeece0b0f46bc34') format('truetype'), url('../fonts/octicons.svg?v=30e752e9a0821a0a098947055eeece0b0f46bc34#octicons') format('svg');
  4. font-weight: normal;
  5. font-style: normal;
  6. }
  7. .octicon,
  8. .mega-octicon {
  9. font: normal normal normal 16px/1 octicons;
  10. display: inline-block;
  11. text-decoration: none;
  12. text-rendering: auto;
  13. -webkit-font-smoothing: antialiased;
  14. -moz-osx-font-smoothing: grayscale;
  15. -webkit-user-select: none;
  16. -moz-user-select: none;
  17. -ms-user-select: none;
  18. user-select: none;
  19. }
  20. .mega-octicon {
  21. font-size: 32px;
  22. }
  23. .octicon-alert:before {
  24. content: '\f02d';
  25. }
  26. /*  */
  27. .octicon-arrow-down:before {
  28. content: '\f03f';
  29. }
  30. /*  */
  31. .octicon-arrow-left:before {
  32. content: '\f040';
  33. }
  34. /*  */
  35. .octicon-arrow-right:before {
  36. content: '\f03e';
  37. }
  38. /*  */
  39. .octicon-arrow-small-down:before {
  40. content: '\f0a0';
  41. }
  42. /*  */
  43. .octicon-arrow-small-left:before {
  44. content: '\f0a1';
  45. }
  46. /*  */
  47. .octicon-arrow-small-right:before {
  48. content: '\f071';
  49. }
  50. /*  */
  51. .octicon-arrow-small-up:before {
  52. content: '\f09f';
  53. }
  54. /*  */
  55. .octicon-arrow-up:before {
  56. content: '\f03d';
  57. }
  58. /*  */
  59. .octicon-microscope:before,
  60. .octicon-beaker:before {
  61. content: '\f0dd';
  62. }
  63. /*  */
  64. .octicon-bell:before {
  65. content: '\f0de';
  66. }
  67. /*  */
  68. .octicon-bold:before {
  69. content: '\f0e2';
  70. }
  71. /*  */
  72. .octicon-book:before {
  73. content: '\f007';
  74. }
  75. /*  */
  76. .octicon-bookmark:before {
  77. content: '\f07b';
  78. }
  79. /*  */
  80. .octicon-briefcase:before {
  81. content: '\f0d3';
  82. }
  83. /*  */
  84. .octicon-broadcast:before {
  85. content: '\f048';
  86. }
  87. /*  */
  88. .octicon-browser:before {
  89. content: '\f0c5';
  90. }
  91. /*  */
  92. .octicon-bug:before {
  93. content: '\f091';
  94. }
  95. /*  */
  96. .octicon-calendar:before {
  97. content: '\f068';
  98. }
  99. /*  */
  100. .octicon-check:before {
  101. content: '\f03a';
  102. }
  103. /*  */
  104. .octicon-checklist:before {
  105. content: '\f076';
  106. }
  107. /*  */
  108. .octicon-chevron-down:before {
  109. content: '\f0a3';
  110. }
  111. /*  */
  112. .octicon-chevron-left:before {
  113. content: '\f0a4';
  114. }
  115. /*  */
  116. .octicon-chevron-right:before {
  117. content: '\f078';
  118. }
  119. /*  */
  120. .octicon-chevron-up:before {
  121. content: '\f0a2';
  122. }
  123. /*  */
  124. .octicon-circle-slash:before {
  125. content: '\f084';
  126. }
  127. /*  */
  128. .octicon-circuit-board:before {
  129. content: '\f0d6';
  130. }
  131. /*  */
  132. .octicon-clippy:before {
  133. content: '\f035';
  134. }
  135. /*  */
  136. .octicon-clock:before {
  137. content: '\f046';
  138. }
  139. /*  */
  140. .octicon-cloud-download:before {
  141. content: '\f00b';
  142. }
  143. /*  */
  144. .octicon-cloud-upload:before {
  145. content: '\f00c';
  146. }
  147. /*  */
  148. .octicon-code:before {
  149. content: '\f05f';
  150. }
  151. /*  */
  152. .octicon-color-mode:before {
  153. content: '\f065';
  154. }
  155. /*  */
  156. .octicon-comment-add:before,
  157. .octicon-comment:before {
  158. content: '\f02b';
  159. }
  160. /*  */
  161. .octicon-comment-discussion:before {
  162. content: '\f04f';
  163. }
  164. /*  */
  165. .octicon-credit-card:before {
  166. content: '\f045';
  167. }
  168. /*  */
  169. .octicon-dash:before {
  170. content: '\f0ca';
  171. }
  172. /*  */
  173. .octicon-dashboard:before {
  174. content: '\f07d';
  175. }
  176. /*  */
  177. .octicon-database:before {
  178. content: '\f096';
  179. }
  180. /*  */
  181. .octicon-clone:before,
  182. .octicon-desktop-download:before {
  183. content: '\f0dc';
  184. }
  185. /*  */
  186. .octicon-device-camera:before {
  187. content: '\f056';
  188. }
  189. /*  */
  190. .octicon-device-camera-video:before {
  191. content: '\f057';
  192. }
  193. /*  */
  194. .octicon-device-desktop:before {
  195. content: '\f27c';
  196. }
  197. /*  */
  198. .octicon-device-mobile:before {
  199. content: '\f038';
  200. }
  201. /*  */
  202. .octicon-diff:before {
  203. content: '\f04d';
  204. }
  205. /*  */
  206. .octicon-diff-added:before {
  207. content: '\f06b';
  208. }
  209. /*  */
  210. .octicon-diff-ignored:before {
  211. content: '\f099';
  212. }
  213. /*  */
  214. .octicon-diff-modified:before {
  215. content: '\f06d';
  216. }
  217. /*  */
  218. .octicon-diff-removed:before {
  219. content: '\f06c';
  220. }
  221. /*  */
  222. .octicon-diff-renamed:before {
  223. content: '\f06e';
  224. }
  225. /*  */
  226. .octicon-ellipsis:before {
  227. content: '\f09a';
  228. }
  229. /*  */
  230. .octicon-eye-unwatch:before,
  231. .octicon-eye-watch:before,
  232. .octicon-eye:before {
  233. content: '\f04e';
  234. }
  235. /*  */
  236. .octicon-file-binary:before {
  237. content: '\f094';
  238. }
  239. /*  */
  240. .octicon-file-code:before {
  241. content: '\f010';
  242. }
  243. /*  */
  244. .octicon-file-directory:before {
  245. content: '\f016';
  246. }
  247. /*  */
  248. .octicon-file-media:before {
  249. content: '\f012';
  250. }
  251. /*  */
  252. .octicon-file-pdf:before {
  253. content: '\f014';
  254. }
  255. /*  */
  256. .octicon-file-submodule:before {
  257. content: '\f017';
  258. }
  259. /*  */
  260. .octicon-file-symlink-directory:before {
  261. content: '\f0b1';
  262. }
  263. /*  */
  264. .octicon-file-symlink-file:before {
  265. content: '\f0b0';
  266. }
  267. /*  */
  268. .octicon-file-text:before {
  269. content: '\f011';
  270. }
  271. /*  */
  272. .octicon-file-zip:before {
  273. content: '\f013';
  274. }
  275. /*  */
  276. .octicon-flame:before {
  277. content: '\f0d2';
  278. }
  279. /*  */
  280. .octicon-fold:before {
  281. content: '\f0cc';
  282. }
  283. /*  */
  284. .octicon-gear:before {
  285. content: '\f02f';
  286. }
  287. /*  */
  288. .octicon-gift:before {
  289. content: '\f042';
  290. }
  291. /*  */
  292. .octicon-gist:before {
  293. content: '\f00e';
  294. }
  295. /*  */
  296. .octicon-gist-secret:before {
  297. content: '\f08c';
  298. }
  299. /*  */
  300. .octicon-git-branch-create:before,
  301. .octicon-git-branch-delete:before,
  302. .octicon-git-branch:before {
  303. content: '\f020';
  304. }
  305. /*  */
  306. .octicon-git-commit:before {
  307. content: '\f01f';
  308. }
  309. /*  */
  310. .octicon-git-compare:before {
  311. content: '\f0ac';
  312. }
  313. /*  */
  314. .octicon-git-merge:before {
  315. content: '\f023';
  316. }
  317. /*  */
  318. .octicon-git-pull-request-abandoned:before,
  319. .octicon-git-pull-request:before {
  320. content: '\f009';
  321. }
  322. /*  */
  323. .octicon-globe:before {
  324. content: '\f0b6';
  325. }
  326. /*  */
  327. .octicon-graph:before {
  328. content: '\f043';
  329. }
  330. /*  */
  331. .octicon-heart:before {
  332. content: '\2665';
  333. }
  334. /* ♥ */
  335. .octicon-history:before {
  336. content: '\f07e';
  337. }
  338. /*  */
  339. .octicon-home:before {
  340. content: '\f08d';
  341. }
  342. /*  */
  343. .octicon-horizontal-rule:before {
  344. content: '\f070';
  345. }
  346. /*  */
  347. .octicon-hubot:before {
  348. content: '\f09d';
  349. }
  350. /*  */
  351. .octicon-inbox:before {
  352. content: '\f0cf';
  353. }
  354. /*  */
  355. .octicon-info:before {
  356. content: '\f059';
  357. }
  358. /*  */
  359. .octicon-issue-closed:before {
  360. content: '\f028';
  361. }
  362. /*  */
  363. .octicon-issue-opened:before {
  364. content: '\f026';
  365. }
  366. /*  */
  367. .octicon-issue-reopened:before {
  368. content: '\f027';
  369. }
  370. /*  */
  371. .octicon-italic:before {
  372. content: '\f0e4';
  373. }
  374. /*  */
  375. .octicon-jersey:before {
  376. content: '\f019';
  377. }
  378. /*  */
  379. .octicon-key:before {
  380. content: '\f049';
  381. }
  382. /*  */
  383. .octicon-keyboard:before {
  384. content: '\f00d';
  385. }
  386. /*  */
  387. .octicon-law:before {
  388. content: '\f0d8';
  389. }
  390. /*  */
  391. .octicon-light-bulb:before {
  392. content: '\f000';
  393. }
  394. /*  */
  395. .octicon-link:before {
  396. content: '\f05c';
  397. }
  398. /*  */
  399. .octicon-link-external:before {
  400. content: '\f07f';
  401. }
  402. /*  */
  403. .octicon-list-ordered:before {
  404. content: '\f062';
  405. }
  406. /*  */
  407. .octicon-list-unordered:before {
  408. content: '\f061';
  409. }
  410. /*  */
  411. .octicon-location:before {
  412. content: '\f060';
  413. }
  414. /*  */
  415. .octicon-gist-private:before,
  416. .octicon-mirror-private:before,
  417. .octicon-git-fork-private:before,
  418. .octicon-lock:before {
  419. content: '\f06a';
  420. }
  421. /*  */
  422. .octicon-logo-gist:before {
  423. content: '\f0ad';
  424. }
  425. /*  */
  426. .octicon-logo-github:before {
  427. content: '\f092';
  428. }
  429. /*  */
  430. .octicon-mail:before {
  431. content: '\f03b';
  432. }
  433. /*  */
  434. .octicon-mail-read:before {
  435. content: '\f03c';
  436. }
  437. /*  */
  438. .octicon-mail-reply:before {
  439. content: '\f051';
  440. }
  441. /*  */
  442. .octicon-mark-github:before {
  443. content: '\f00a';
  444. }
  445. /*  */
  446. .octicon-markdown:before {
  447. content: '\f0c9';
  448. }
  449. /*  */
  450. .octicon-megaphone:before {
  451. content: '\f077';
  452. }
  453. /*  */
  454. .octicon-mention:before {
  455. content: '\f0be';
  456. }
  457. /*  */
  458. .octicon-milestone:before {
  459. content: '\f075';
  460. }
  461. /*  */
  462. .octicon-mirror-public:before,
  463. .octicon-mirror:before {
  464. content: '\f024';
  465. }
  466. /*  */
  467. .octicon-mortar-board:before {
  468. content: '\f0d7';
  469. }
  470. /*  */
  471. .octicon-mute:before {
  472. content: '\f080';
  473. }
  474. /*  */
  475. .octicon-no-newline:before {
  476. content: '\f09c';
  477. }
  478. /*  */
  479. .octicon-octoface:before {
  480. content: '\f008';
  481. }
  482. /*  */
  483. .octicon-organization:before {
  484. content: '\f037';
  485. }
  486. /*  */
  487. .octicon-package:before {
  488. content: '\f0c4';
  489. }
  490. /*  */
  491. .octicon-paintcan:before {
  492. content: '\f0d1';
  493. }
  494. /*  */
  495. .octicon-pencil:before {
  496. content: '\f058';
  497. }
  498. /*  */
  499. .octicon-person-add:before,
  500. .octicon-person-follow:before,
  501. .octicon-person:before {
  502. content: '\f018';
  503. }
  504. /*  */
  505. .octicon-pin:before {
  506. content: '\f041';
  507. }
  508. /*  */
  509. .octicon-plug:before {
  510. content: '\f0d4';
  511. }
  512. /*  */
  513. .octicon-repo-create:before,
  514. .octicon-gist-new:before,
  515. .octicon-file-directory-create:before,
  516. .octicon-file-add:before,
  517. .octicon-plus:before {
  518. content: '\f05d';
  519. }
  520. /*  */
  521. .octicon-primitive-dot:before {
  522. content: '\f052';
  523. }
  524. /*  */
  525. .octicon-primitive-square:before {
  526. content: '\f053';
  527. }
  528. /*  */
  529. .octicon-pulse:before {
  530. content: '\f085';
  531. }
  532. /*  */
  533. .octicon-question:before {
  534. content: '\f02c';
  535. }
  536. /*  */
  537. .octicon-quote:before {
  538. content: '\f063';
  539. }
  540. /*  */
  541. .octicon-radio-tower:before {
  542. content: '\f030';
  543. }
  544. /*  */
  545. .octicon-repo-delete:before,
  546. .octicon-repo:before {
  547. content: '\f001';
  548. }
  549. /*  */
  550. .octicon-repo-clone:before {
  551. content: '\f04c';
  552. }
  553. /*  */
  554. .octicon-repo-force-push:before {
  555. content: '\f04a';
  556. }
  557. /*  */
  558. .octicon-gist-fork:before,
  559. .octicon-repo-forked:before {
  560. content: '\f002';
  561. }
  562. /*  */
  563. .octicon-repo-pull:before {
  564. content: '\f006';
  565. }
  566. /*  */
  567. .octicon-repo-push:before {
  568. content: '\f005';
  569. }
  570. /*  */
  571. .octicon-rocket:before {
  572. content: '\f033';
  573. }
  574. /*  */
  575. .octicon-rss:before {
  576. content: '\f034';
  577. }
  578. /*  */
  579. .octicon-ruby:before {
  580. content: '\f047';
  581. }
  582. /*  */
  583. .octicon-search-save:before,
  584. .octicon-search:before {
  585. content: '\f02e';
  586. }
  587. /*  */
  588. .octicon-server:before {
  589. content: '\f097';
  590. }
  591. /*  */
  592. .octicon-settings:before {
  593. content: '\f07c';
  594. }
  595. /*  */
  596. .octicon-shield:before {
  597. content: '\f0e1';
  598. }
  599. /*  */
  600. .octicon-log-in:before,
  601. .octicon-sign-in:before {
  602. content: '\f036';
  603. }
  604. /*  */
  605. .octicon-log-out:before,
  606. .octicon-sign-out:before {
  607. content: '\f032';
  608. }
  609. /*  */
  610. .octicon-squirrel:before {
  611. content: '\f0b2';
  612. }
  613. /*  */
  614. .octicon-star-add:before,
  615. .octicon-star-delete:before,
  616. .octicon-star:before {
  617. content: '\f02a';
  618. }
  619. /*  */
  620. .octicon-stop:before {
  621. content: '\f08f';
  622. }
  623. /*  */
  624. .octicon-repo-sync:before,
  625. .octicon-sync:before {
  626. content: '\f087';
  627. }
  628. /*  */
  629. .octicon-tag-remove:before,
  630. .octicon-tag-add:before,
  631. .octicon-tag:before {
  632. content: '\f015';
  633. }
  634. /*  */
  635. .octicon-tasklist:before {
  636. content: '\f0e5';
  637. }
  638. /*  */
  639. .octicon-telescope:before {
  640. content: '\f088';
  641. }
  642. /*  */
  643. .octicon-terminal:before {
  644. content: '\f0c8';
  645. }
  646. /*  */
  647. .octicon-text-size:before {
  648. content: '\f0e3';
  649. }
  650. /*  */
  651. .octicon-three-bars:before {
  652. content: '\f05e';
  653. }
  654. /*  */
  655. .octicon-thumbsdown:before {
  656. content: '\f0db';
  657. }
  658. /*  */
  659. .octicon-thumbsup:before {
  660. content: '\f0da';
  661. }
  662. /*  */
  663. .octicon-tools:before {
  664. content: '\f031';
  665. }
  666. /*  */
  667. .octicon-trashcan:before {
  668. content: '\f0d0';
  669. }
  670. /*  */
  671. .octicon-triangle-down:before {
  672. content: '\f05b';
  673. }
  674. /*  */
  675. .octicon-triangle-left:before {
  676. content: '\f044';
  677. }
  678. /*  */
  679. .octicon-triangle-right:before {
  680. content: '\f05a';
  681. }
  682. /*  */
  683. .octicon-triangle-up:before {
  684. content: '\f0aa';
  685. }
  686. /*  */
  687. .octicon-unfold:before {
  688. content: '\f039';
  689. }
  690. /*  */
  691. .octicon-unmute:before {
  692. content: '\f0ba';
  693. }
  694. /*  */
  695. .octicon-versions:before {
  696. content: '\f064';
  697. }
  698. /*  */
  699. .octicon-watch:before {
  700. content: '\f0e0';
  701. }
  702. /*  */
  703. .octicon-remove-close:before,
  704. .octicon-x:before {
  705. content: '\f081';
  706. }
  707. /*  */
  708. .octicon-zap:before {
  709. content: '\26A1';
  710. }
  711. /* ⚡ */
  712. .emoji {
  713. width: 1.5em;
  714. height: 1.5em;
  715. display: inline-block;
  716. background-size: contain;
  717. }
  718. body {
  719. font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif, '微软雅黑';
  720. background-color: #FAFAFA;
  721. }
  722. img {
  723. border-radius: 3px;
  724. }
  725. pre {
  726. font: 12px Consolas, "Liberation Mono", Menlo, Courier, monospace;
  727. }
  728. pre.raw {
  729. padding: 7px 12px;
  730. margin: 10px 0;
  731. background-color: #f8f8f8;
  732. border: 1px solid #ddd;
  733. border-radius: 3px;
  734. font-size: 13px;
  735. line-height: 1.5;
  736. overflow: auto;
  737. }
  738. .full.height {
  739. padding: 0;
  740. margin: 0 0 -80px 0;
  741. min-height: 100%;
  742. }
  743. .following.bar {
  744. z-index: 900;
  745. left: 0;
  746. width: 100%;
  747. }
  748. .following.bar.light {
  749. background-color: white;
  750. border-bottom: 1px solid #DDDDDD;
  751. box-shadow: 0 2px 3px rgba(0, 0, 0, 0.04);
  752. }
  753. .following.bar .column .menu {
  754. margin-top: 0;
  755. }
  756. .following.bar .top.menu a.item.brand {
  757. padding-left: 0;
  758. }
  759. .following.bar .brand .ui.mini.image {
  760. width: 30px;
  761. }
  762. .following.bar .top.menu a.item:hover,
  763. .following.bar .top.menu .dropdown.item:hover,
  764. .following.bar .top.menu .dropdown.item.active {
  765. background-color: transparent;
  766. }
  767. .following.bar .top.menu a.item:hover {
  768. color: rgba(0, 0, 0, 0.45);
  769. }
  770. .following.bar .top.menu .menu {
  771. z-index: 900;
  772. }
  773. .following.bar .head.link.item {
  774. padding-right: 0 !important;
  775. }
  776. .following.bar .head.link.item .dropdown.icon,
  777. .following.bar .head.link.item .menu .octicon {
  778. margin-right: 5px;
  779. }
  780. .following.bar .avatar > .ui.image {
  781. margin-right: 0;
  782. }
  783. .following.bar .searchbox {
  784. background-color: #f4f4f4 !important;
  785. }
  786. .following.bar .searchbox:focus {
  787. background-color: #e9e9e9 !important;
  788. }
  789. .following.bar .text .octicon {
  790. width: 16px;
  791. text-align: center;
  792. }
  793. .following.bar .right.menu .menu {
  794. left: auto;
  795. right: 0;
  796. }
  797. .following.bar .right.menu .dropdown .menu {
  798. margin-top: 0;
  799. }
  800. .ui.left {
  801. float: left;
  802. }
  803. .ui.right {
  804. float: right;
  805. }
  806. .ui .text.red {
  807. color: #d95c5c !important;
  808. }
  809. .ui .text.red a {
  810. color: #d95c5c !important;
  811. }
  812. .ui .text.red a:hover {
  813. color: #E67777 !important;
  814. }
  815. .ui .text.blue {
  816. color: #428bca !important;
  817. }
  818. .ui .text.blue a {
  819. color: #15c !important;
  820. }
  821. .ui .text.blue a:hover {
  822. color: #428bca !important;
  823. }
  824. .ui .text.black {
  825. color: #444;
  826. }
  827. .ui .text.black:hover {
  828. color: #000;
  829. }
  830. .ui .text.grey {
  831. color: #767676 !important;
  832. }
  833. .ui .text.grey a {
  834. color: #444 !important;
  835. }
  836. .ui .text.grey a:hover {
  837. color: #000 !important;
  838. }
  839. .ui .text.light.grey {
  840. color: #888 !important;
  841. }
  842. .ui .text.green {
  843. color: #6cc644 !important;
  844. }
  845. .ui .text.purple {
  846. color: #6e5494 !important;
  847. }
  848. .ui .text.yellow {
  849. color: #FBBD08 !important;
  850. }
  851. .ui .text.gold {
  852. color: #a1882b !important;
  853. }
  854. .ui .text.left {
  855. text-align: left !important;
  856. }
  857. .ui .text.right {
  858. text-align: right !important;
  859. }
  860. .ui .text.small {
  861. font-size: 0.75em;
  862. }
  863. .ui .text.normal {
  864. font-weight: normal;
  865. }
  866. .ui .text.bold {
  867. font-weight: bold;
  868. }
  869. .ui .text.italic {
  870. font-style: italic;
  871. }
  872. .ui .text.truncate {
  873. overflow: hidden;
  874. text-overflow: ellipsis;
  875. white-space: nowrap;
  876. display: inline-block;
  877. }
  878. .ui .text.thin {
  879. font-weight: normal;
  880. }
  881. .ui .text.middle {
  882. vertical-align: middle;
  883. }
  884. .ui .message {
  885. text-align: center;
  886. }
  887. .ui .header > i + .content {
  888. padding-left: 0.75rem;
  889. vertical-align: middle;
  890. }
  891. .ui .warning.header {
  892. background-color: #F9EDBE !important;
  893. border-color: #F0C36D;
  894. }
  895. .ui .warning.segment {
  896. border-color: #F0C36D;
  897. }
  898. .ui .info.header {
  899. background-color: #d9edf7 !important;
  900. border-color: #85c5e5;
  901. }
  902. .ui .info.segment {
  903. border-color: #85c5e5;
  904. }
  905. .ui .normal.header {
  906. font-weight: normal;
  907. }
  908. .ui .avatar.image {
  909. border-radius: 3px;
  910. }
  911. .ui .form .fake {
  912. display: none !important;
  913. }
  914. .ui .sha.label {
  915. font-family: Consolas, Menlo, Monaco, "Lucida Console", monospace;
  916. font-size: 13px;
  917. padding: 6px 10px 4px 10px;
  918. font-weight: normal;
  919. margin: 0 6px;
  920. }
  921. .ui.status.buttons .octicon {
  922. margin-right: 4px;
  923. }
  924. .overflow.menu .items {
  925. max-height: 300px;
  926. overflow-y: auto;
  927. }
  928. .overflow.menu .items .item {
  929. position: relative;
  930. cursor: pointer;
  931. display: block;
  932. border: none;
  933. height: auto;
  934. border-top: none;
  935. line-height: 1em;
  936. color: rgba(0, 0, 0, 0.8);
  937. padding: .71428571em 1.14285714em !important;
  938. font-size: 1rem;
  939. text-transform: none;
  940. font-weight: 400;
  941. box-shadow: none;
  942. -webkit-touch-callout: none;
  943. }
  944. .overflow.menu .items .item.active {
  945. font-weight: 700;
  946. }
  947. .overflow.menu .items .item:hover {
  948. background: rgba(0, 0, 0, 0.05);
  949. color: rgba(0, 0, 0, 0.8);
  950. z-index: 13;
  951. }
  952. .scrolling.menu .item.selected {
  953. font-weight: 700 !important;
  954. }
  955. footer {
  956. margin-top: 54px !important;
  957. height: 40px;
  958. background-color: white;
  959. border-top: 1px solid #d6d6d6;
  960. clear: both;
  961. width: 100%;
  962. color: #888888;
  963. }
  964. footer .container {
  965. padding-top: 10px;
  966. }
  967. footer .container .fa {
  968. width: 16px;
  969. text-align: center;
  970. color: #428bca;
  971. }
  972. footer .container .links > * {
  973. border-left: 1px solid #d6d6d6;
  974. padding-left: 8px;
  975. margin-left: 5px;
  976. }
  977. footer .container .links > *:first-child {
  978. border-left: none;
  979. }
  980. .hide {
  981. display: none;
  982. }
  983. .center {
  984. text-align: center;
  985. }
  986. .img-1 {
  987. width: 2px !important;
  988. height: 2px !important;
  989. }
  990. .img-2 {
  991. width: 4px !important;
  992. height: 4px !important;
  993. }
  994. .img-3 {
  995. width: 6px !important;
  996. height: 6px !important;
  997. }
  998. .img-4 {
  999. width: 8px !important;
  1000. height: 8px !important;
  1001. }
  1002. .img-5 {
  1003. width: 10px !important;
  1004. height: 10px !important;
  1005. }
  1006. .img-6 {
  1007. width: 12px !important;
  1008. height: 12px !important;
  1009. }
  1010. .img-7 {
  1011. width: 14px !important;
  1012. height: 14px !important;
  1013. }
  1014. .img-8 {
  1015. width: 16px !important;
  1016. height: 16px !important;
  1017. }
  1018. .img-9 {
  1019. width: 18px !important;
  1020. height: 18px !important;
  1021. }
  1022. .img-10 {
  1023. width: 20px !important;
  1024. height: 20px !important;
  1025. }
  1026. .img-11 {
  1027. width: 22px !important;
  1028. height: 22px !important;
  1029. }
  1030. .img-12 {
  1031. width: 24px !important;
  1032. height: 24px !important;
  1033. }
  1034. .img-13 {
  1035. width: 26px !important;
  1036. height: 26px !important;
  1037. }
  1038. .img-14 {
  1039. width: 28px !important;
  1040. height: 28px !important;
  1041. }
  1042. .img-15 {
  1043. width: 30px !important;
  1044. height: 30px !important;
  1045. }
  1046. .img-16 {
  1047. width: 32px !important;
  1048. height: 32px !important;
  1049. }
  1050. .octicon.icon,
  1051. .mega-octicon.icon {
  1052. font-family: octicons;
  1053. font-size: 16px;
  1054. opacity: 1 !important;
  1055. }
  1056. .sr-only {
  1057. position: absolute;
  1058. width: 1px;
  1059. height: 1px;
  1060. padding: 0;
  1061. margin: -1px;
  1062. overflow: hidden;
  1063. clip: rect(0, 0, 0, 0);
  1064. border: 0;
  1065. }
  1066. .sr-only-focusable:active,
  1067. .sr-only-focusable:focus {
  1068. position: static;
  1069. width: auto;
  1070. height: auto;
  1071. margin: 0;
  1072. overflow: visible;
  1073. clip: auto;
  1074. }
  1075. @media only screen and (max-width: 991px) and (min-width: 768px) {
  1076. .ui.container {
  1077. width: 95%;
  1078. }
  1079. }
  1080. .markdown {
  1081. overflow: hidden;
  1082. font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif;
  1083. font-size: 16px;
  1084. line-height: 1.6 !important;
  1085. word-wrap: break-word;
  1086. }
  1087. .markdown.file-view {
  1088. padding: 5px 2em 2em !important;
  1089. }
  1090. .markdown > *:first-child {
  1091. margin-top: 0 !important;
  1092. }
  1093. .markdown > *:last-child {
  1094. margin-bottom: 0 !important;
  1095. }
  1096. .markdown a:not([href]) {
  1097. color: inherit;
  1098. text-decoration: none;
  1099. }
  1100. .markdown .absent {
  1101. color: #c00;
  1102. }
  1103. .markdown .anchor {
  1104. position: absolute;
  1105. top: 0;
  1106. left: 0;
  1107. display: block;
  1108. padding-right: 6px;
  1109. padding-left: 30px;
  1110. margin-left: -30px;
  1111. }
  1112. .markdown .anchor:focus {
  1113. outline: none;
  1114. }
  1115. .markdown h1,
  1116. .markdown h2,
  1117. .markdown h3,
  1118. .markdown h4,
  1119. .markdown h5,
  1120. .markdown h6 {
  1121. position: relative;
  1122. margin-top: 1em;
  1123. margin-bottom: 16px;
  1124. font-weight: bold;
  1125. line-height: 1.4;
  1126. }
  1127. .markdown h1 .octicon-link,
  1128. .markdown h2 .octicon-link,
  1129. .markdown h3 .octicon-link,
  1130. .markdown h4 .octicon-link,
  1131. .markdown h5 .octicon-link,
  1132. .markdown h6 .octicon-link {
  1133. display: none;
  1134. color: #000;
  1135. vertical-align: middle;
  1136. }
  1137. .markdown h1:hover .anchor,
  1138. .markdown h2:hover .anchor,
  1139. .markdown h3:hover .anchor,
  1140. .markdown h4:hover .anchor,
  1141. .markdown h5:hover .anchor,
  1142. .markdown h6:hover .anchor {
  1143. padding-left: 8px;
  1144. margin-left: -30px;
  1145. text-decoration: none;
  1146. }
  1147. .markdown h1:hover .anchor .octicon-link,
  1148. .markdown h2:hover .anchor .octicon-link,
  1149. .markdown h3:hover .anchor .octicon-link,
  1150. .markdown h4:hover .anchor .octicon-link,
  1151. .markdown h5:hover .anchor .octicon-link,
  1152. .markdown h6:hover .anchor .octicon-link {
  1153. display: inline-block;
  1154. }
  1155. .markdown h1 tt,
  1156. .markdown h1 code,
  1157. .markdown h2 tt,
  1158. .markdown h2 code,
  1159. .markdown h3 tt,
  1160. .markdown h3 code,
  1161. .markdown h4 tt,
  1162. .markdown h4 code,
  1163. .markdown h5 tt,
  1164. .markdown h5 code,
  1165. .markdown h6 tt,
  1166. .markdown h6 code {
  1167. font-size: inherit;
  1168. }
  1169. .markdown h1 {
  1170. padding-bottom: 0.3em;
  1171. font-size: 2.25em;
  1172. line-height: 1.2;
  1173. border-bottom: 1px solid #eee;
  1174. }
  1175. .markdown h1 .anchor {
  1176. line-height: 1;
  1177. }
  1178. .markdown h2 {
  1179. padding-bottom: 0.3em;
  1180. font-size: 1.75em;
  1181. line-height: 1.225;
  1182. border-bottom: 1px solid #eee;
  1183. }
  1184. .markdown h2 .anchor {
  1185. line-height: 1;
  1186. }
  1187. .markdown h3 {
  1188. font-size: 1.5em;
  1189. line-height: 1.43;
  1190. }
  1191. .markdown h3 .anchor {
  1192. line-height: 1.2;
  1193. }
  1194. .markdown h4 {
  1195. font-size: 1.25em;
  1196. }
  1197. .markdown h4 .anchor {
  1198. line-height: 1.2;
  1199. }
  1200. .markdown h5 {
  1201. font-size: 1em;
  1202. }
  1203. .markdown h5 .anchor {
  1204. line-height: 1.1;
  1205. }
  1206. .markdown h6 {
  1207. font-size: 1em;
  1208. color: #777;
  1209. }
  1210. .markdown h6 .anchor {
  1211. line-height: 1.1;
  1212. }
  1213. .markdown p,
  1214. .markdown blockquote,
  1215. .markdown ul,
  1216. .markdown ol,
  1217. .markdown dl,
  1218. .markdown table,
  1219. .markdown pre {
  1220. margin-top: 0;
  1221. margin-bottom: 16px;
  1222. }
  1223. .markdown blockquote {
  1224. margin-left: 0;
  1225. }
  1226. .markdown hr {
  1227. height: 4px;
  1228. padding: 0;
  1229. margin: 16px 0;
  1230. background-color: #e7e7e7;
  1231. border: 0 none;
  1232. }
  1233. .markdown ul,
  1234. .markdown ol {
  1235. padding-left: 2em;
  1236. }
  1237. .markdown ul.no-list,
  1238. .markdown ol.no-list {
  1239. padding: 0;
  1240. list-style-type: none;
  1241. }
  1242. .markdown ul ul,
  1243. .markdown ul ol,
  1244. .markdown ol ol,
  1245. .markdown ol ul {
  1246. margin-top: 0;
  1247. margin-bottom: 0;
  1248. }
  1249. .markdown ol ol,
  1250. .markdown ul ol {
  1251. list-style-type: lower-roman;
  1252. }
  1253. .markdown li > p {
  1254. margin-top: 16px;
  1255. }
  1256. .markdown dl {
  1257. padding: 0;
  1258. }
  1259. .markdown dl dt {
  1260. padding: 0;
  1261. margin-top: 16px;
  1262. font-size: 1em;
  1263. font-style: italic;
  1264. font-weight: bold;
  1265. }
  1266. .markdown dl dd {
  1267. padding: 0 16px;
  1268. margin-bottom: 16px;
  1269. }
  1270. .markdown blockquote {
  1271. padding: 0 15px;
  1272. color: #777;
  1273. border-left: 4px solid #ddd;
  1274. }
  1275. .markdown blockquote > :first-child {
  1276. margin-top: 0;
  1277. }
  1278. .markdown blockquote > :last-child {
  1279. margin-bottom: 0;
  1280. }
  1281. .markdown table {
  1282. display: block;
  1283. width: 100%;
  1284. overflow: auto;
  1285. word-break: normal;
  1286. word-break: keep-all;
  1287. }
  1288. .markdown table th {
  1289. font-weight: bold;
  1290. }
  1291. .markdown table th,
  1292. .markdown table td {
  1293. padding: 6px 13px !important;
  1294. border: 1px solid #ddd;
  1295. }
  1296. .markdown table tr {
  1297. background-color: #fff;
  1298. border-top: 1px solid #ccc;
  1299. }
  1300. .markdown table tr:nth-child(2n) {
  1301. background-color: #f8f8f8;
  1302. }
  1303. .markdown img {
  1304. max-width: 100%;
  1305. box-sizing: border-box;
  1306. }
  1307. .markdown .emoji {
  1308. max-width: none;
  1309. }
  1310. .markdown span.frame {
  1311. display: block;
  1312. overflow: hidden;
  1313. }
  1314. .markdown span.frame > span {
  1315. display: block;
  1316. float: left;
  1317. width: auto;
  1318. padding: 7px;
  1319. margin: 13px 0 0;
  1320. overflow: hidden;
  1321. border: 1px solid #ddd;
  1322. }
  1323. .markdown span.frame span img {
  1324. display: block;
  1325. float: left;
  1326. }
  1327. .markdown span.frame span span {
  1328. display: block;
  1329. padding: 5px 0 0;
  1330. clear: both;
  1331. color: #333;
  1332. }
  1333. .markdown span.align-center {
  1334. display: block;
  1335. overflow: hidden;
  1336. clear: both;
  1337. }
  1338. .markdown span.align-center > span {
  1339. display: block;
  1340. margin: 13px auto 0;
  1341. overflow: hidden;
  1342. text-align: center;
  1343. }
  1344. .markdown span.align-center span img {
  1345. margin: 0 auto;
  1346. text-align: center;
  1347. }
  1348. .markdown span.align-right {
  1349. display: block;
  1350. overflow: hidden;
  1351. clear: both;
  1352. }
  1353. .markdown span.align-right > span {
  1354. display: block;
  1355. margin: 13px 0 0;
  1356. overflow: hidden;
  1357. text-align: right;
  1358. }
  1359. .markdown span.align-right span img {
  1360. margin: 0;
  1361. text-align: right;
  1362. }
  1363. .markdown span.float-left {
  1364. display: block;
  1365. float: left;
  1366. margin-right: 13px;
  1367. overflow: hidden;
  1368. }
  1369. .markdown span.float-left span {
  1370. margin: 13px 0 0;
  1371. }
  1372. .markdown span.float-right {
  1373. display: block;
  1374. float: right;
  1375. margin-left: 13px;
  1376. overflow: hidden;
  1377. }
  1378. .markdown span.float-right > span {
  1379. display: block;
  1380. margin: 13px auto 0;
  1381. overflow: hidden;
  1382. text-align: right;
  1383. }
  1384. .markdown code,
  1385. .markdown tt {
  1386. padding: 0;
  1387. padding-top: 0.2em;
  1388. padding-bottom: 0.2em;
  1389. margin: 0;
  1390. font-size: 85%;
  1391. background-color: rgba(0, 0, 0, 0.04);
  1392. border-radius: 3px;
  1393. }
  1394. .markdown code:before,
  1395. .markdown code:after,
  1396. .markdown tt:before,
  1397. .markdown tt:after {
  1398. letter-spacing: -0.2em;
  1399. content: "\00a0";
  1400. }
  1401. .markdown code br,
  1402. .markdown tt br {
  1403. display: none;
  1404. }
  1405. .markdown del code {
  1406. text-decoration: inherit;
  1407. }
  1408. .markdown pre > code {
  1409. padding: 0;
  1410. margin: 0;
  1411. font-size: 100%;
  1412. word-break: normal;
  1413. white-space: pre;
  1414. background: transparent;
  1415. border: 0;
  1416. }
  1417. .markdown .highlight {
  1418. margin-bottom: 16px;
  1419. }
  1420. .markdown .highlight pre,
  1421. .markdown pre {
  1422. padding: 16px;
  1423. overflow: auto;
  1424. font-size: 85%;
  1425. line-height: 1.45;
  1426. background-color: #f7f7f7;
  1427. border-radius: 3px;
  1428. }
  1429. .markdown .highlight pre {
  1430. margin-bottom: 0;
  1431. word-break: normal;
  1432. }
  1433. .markdown pre {
  1434. word-wrap: normal;
  1435. }
  1436. .markdown pre code,
  1437. .markdown pre tt {
  1438. display: inline;
  1439. max-width: initial;
  1440. padding: 0;
  1441. margin: 0;
  1442. overflow: initial;
  1443. line-height: inherit;
  1444. word-wrap: normal;
  1445. background-color: transparent;
  1446. border: 0;
  1447. }
  1448. .markdown pre code:before,
  1449. .markdown pre code:after,
  1450. .markdown pre tt:before,
  1451. .markdown pre tt:after {
  1452. content: normal;
  1453. }
  1454. .markdown kbd {
  1455. display: inline-block;
  1456. padding: 3px 5px;
  1457. font-size: 11px;
  1458. line-height: 10px;
  1459. color: #555;
  1460. vertical-align: middle;
  1461. background-color: #fcfcfc;
  1462. border: solid 1px #ccc;
  1463. border-bottom-color: #bbb;
  1464. border-radius: 3px;
  1465. box-shadow: inset 0 -1px 0 #bbb;
  1466. }
  1467. .markdown .csv-data td,
  1468. .markdown .csv-data th {
  1469. padding: 5px;
  1470. overflow: hidden;
  1471. font-size: 12px;
  1472. line-height: 1;
  1473. text-align: left;
  1474. white-space: nowrap;
  1475. }
  1476. .markdown .csv-data .blob-num {
  1477. padding: 10px 8px 9px;
  1478. text-align: right;
  1479. background: #fff;
  1480. border: 0;
  1481. }
  1482. .markdown .csv-data tr {
  1483. border-top: 0;
  1484. }
  1485. .markdown .csv-data th {
  1486. font-weight: bold;
  1487. background: #f8f8f8;
  1488. border-top: 0;
  1489. }
  1490. .home {
  1491. padding-bottom: 80px;
  1492. }
  1493. .home .logo {
  1494. max-width: 220px;
  1495. }
  1496. .home .hero h1,
  1497. .home .hero h2 {
  1498. font-family: 'PT Sans Narrow', sans-serif, 'Microsoft YaHei';
  1499. }
  1500. .home .hero h1 {
  1501. font-size: 5.5em;
  1502. }
  1503. .home .hero h2 {
  1504. font-size: 3em;
  1505. }
  1506. .home .hero .octicon {
  1507. color: #d9453d;
  1508. font-size: 40px;
  1509. width: 50px;
  1510. }
  1511. .home .hero.header {
  1512. font-size: 20px;
  1513. }
  1514. .home p.large {
  1515. font-size: 16px;
  1516. }
  1517. .home .stackable {
  1518. padding-top: 30px;
  1519. }
  1520. .home a {
  1521. color: #d9453d;
  1522. }
  1523. .signup {
  1524. padding-top: 15px;
  1525. padding-bottom: 80px;
  1526. }
  1527. .install {
  1528. padding-top: 45px;
  1529. padding-bottom: 80px;
  1530. }
  1531. .install form label {
  1532. text-align: right;
  1533. width: 320px !important;
  1534. }
  1535. .install form input {
  1536. width: 35% !important;
  1537. }
  1538. .install form .field {
  1539. text-align: left;
  1540. }
  1541. .install form .field .help {
  1542. margin-left: 335px !important;
  1543. }
  1544. .install form .field.optional .title {
  1545. margin-left: 38%;
  1546. }
  1547. .install .ui .checkbox {
  1548. margin-left: 40% !important;
  1549. }
  1550. .install .ui .checkbox label {
  1551. width: auto !important;
  1552. }
  1553. .form .help {
  1554. color: #999999;
  1555. padding-top: .6em;
  1556. padding-bottom: .6em;
  1557. display: inline-block;
  1558. }
  1559. .ui.attached.header {
  1560. background: #f0f0f0;
  1561. }
  1562. .ui.attached.header .right {
  1563. margin-top: -5px;
  1564. }
  1565. .ui.attached.header .right .button {
  1566. padding: 8px 10px;
  1567. font-weight: normal;
  1568. }
  1569. #create-page-form form {
  1570. margin: auto;
  1571. width: 800px!important;
  1572. }
  1573. #create-page-form form .ui.message {
  1574. text-align: center;
  1575. }
  1576. #create-page-form form .header {
  1577. padding-left: 280px !important;
  1578. }
  1579. #create-page-form form .inline.field > label {
  1580. text-align: right;
  1581. width: 250px !important;
  1582. word-wrap: break-word;
  1583. }
  1584. #create-page-form form .help {
  1585. margin-left: 265px !important;
  1586. }
  1587. #create-page-form form .optional .title {
  1588. margin-left: 250px !important;
  1589. }
  1590. #create-page-form form input,
  1591. #create-page-form form textarea {
  1592. width: 50%!important;
  1593. }
  1594. .user.activate form,
  1595. .user.forgot.password form,
  1596. .user.reset.password form,
  1597. .user.signin form,
  1598. .user.signup form {
  1599. margin: auto;
  1600. width: 800px!important;
  1601. }
  1602. .user.activate form .ui.message,
  1603. .user.forgot.password form .ui.message,
  1604. .user.reset.password form .ui.message,
  1605. .user.signin form .ui.message,
  1606. .user.signup form .ui.message {
  1607. text-align: center;
  1608. }
  1609. .user.activate form .header,
  1610. .user.forgot.password form .header,
  1611. .user.reset.password form .header,
  1612. .user.signin form .header,
  1613. .user.signup form .header {
  1614. padding-left: 280px !important;
  1615. }
  1616. .user.activate form .inline.field > label,
  1617. .user.forgot.password form .inline.field > label,
  1618. .user.reset.password form .inline.field > label,
  1619. .user.signin form .inline.field > label,
  1620. .user.signup form .inline.field > label {
  1621. text-align: right;
  1622. width: 250px !important;
  1623. word-wrap: break-word;
  1624. }
  1625. .user.activate form .help,
  1626. .user.forgot.password form .help,
  1627. .user.reset.password form .help,
  1628. .user.signin form .help,
  1629. .user.signup form .help {
  1630. margin-left: 265px !important;
  1631. }
  1632. .user.activate form .optional .title,
  1633. .user.forgot.password form .optional .title,
  1634. .user.reset.password form .optional .title,
  1635. .user.signin form .optional .title,
  1636. .user.signup form .optional .title {
  1637. margin-left: 250px !important;
  1638. }
  1639. .user.activate form input,
  1640. .user.forgot.password form input,
  1641. .user.reset.password form input,
  1642. .user.signin form input,
  1643. .user.signup form input,
  1644. .user.activate form textarea,
  1645. .user.forgot.password form textarea,
  1646. .user.reset.password form textarea,
  1647. .user.signin form textarea,
  1648. .user.signup form textarea {
  1649. width: 50%!important;
  1650. }
  1651. .user.activate form,
  1652. .user.forgot.password form,
  1653. .user.reset.password form,
  1654. .user.signin form,
  1655. .user.signup form {
  1656. width: 700px!important;
  1657. }
  1658. .user.activate form .header,
  1659. .user.forgot.password form .header,
  1660. .user.reset.password form .header,
  1661. .user.signin form .header,
  1662. .user.signup form .header {
  1663. padding-left: 230px !important;
  1664. }
  1665. .user.activate form .inline.field > label,
  1666. .user.forgot.password form .inline.field > label,
  1667. .user.reset.password form .inline.field > label,
  1668. .user.signin form .inline.field > label,
  1669. .user.signup form .inline.field > label {
  1670. width: 200px !important;
  1671. }
  1672. .repository.new.repo form,
  1673. .repository.new.migrate form,
  1674. .repository.new.fork form {
  1675. margin: auto;
  1676. width: 800px!important;
  1677. }
  1678. .repository.new.repo form .ui.message,
  1679. .repository.new.migrate form .ui.message,
  1680. .repository.new.fork form .ui.message {
  1681. text-align: center;
  1682. }
  1683. .repository.new.repo form .header,
  1684. .repository.new.migrate form .header,
  1685. .repository.new.fork form .header {
  1686. padding-left: 280px !important;
  1687. }
  1688. .repository.new.repo form .inline.field > label,
  1689. .repository.new.migrate form .inline.field > label,
  1690. .repository.new.fork form .inline.field > label {
  1691. text-align: right;
  1692. width: 250px !important;
  1693. word-wrap: break-word;
  1694. }
  1695. .repository.new.repo form .help,
  1696. .repository.new.migrate form .help,
  1697. .repository.new.fork form .help {
  1698. margin-left: 265px !important;
  1699. }
  1700. .repository.new.repo form .optional .title,
  1701. .repository.new.migrate form .optional .title,
  1702. .repository.new.fork form .optional .title {
  1703. margin-left: 250px !important;
  1704. }
  1705. .repository.new.repo form input,
  1706. .repository.new.migrate form input,
  1707. .repository.new.fork form input,
  1708. .repository.new.repo form textarea,
  1709. .repository.new.migrate form textarea,
  1710. .repository.new.fork form textarea {
  1711. width: 50%!important;
  1712. }
  1713. .repository.new.repo form .dropdown .dropdown.icon,
  1714. .repository.new.migrate form .dropdown .dropdown.icon,
  1715. .repository.new.fork form .dropdown .dropdown.icon {
  1716. margin-top: -7px !important;
  1717. }
  1718. .repository.new.repo form .dropdown .text,
  1719. .repository.new.migrate form .dropdown .text,
  1720. .repository.new.fork form .dropdown .text {
  1721. margin-right: 0!important;
  1722. }
  1723. .repository.new.repo form .dropdown .text i,
  1724. .repository.new.migrate form .dropdown .text i,
  1725. .repository.new.fork form .dropdown .text i {
  1726. margin-right: 0!important;
  1727. }
  1728. .repository.new.repo .ui.form .selection.dropdown:not(.owner) {
  1729. width: 50%!important;
  1730. }
  1731. .repository.new.repo .ui.form #auto-init {
  1732. margin-left: 265px !important;
  1733. }
  1734. .new.webhook form .help {
  1735. margin-left: 25px;
  1736. }
  1737. .new.webhook .events.fields .column {
  1738. padding-left: 40px;
  1739. }
  1740. .repository {
  1741. padding-top: 15px;
  1742. padding-bottom: 80px;
  1743. }
  1744. .repository .head .column {
  1745. padding-top: 5px!important;
  1746. padding-bottom: 5px!important;
  1747. }
  1748. .repository .head .ui.compact.menu {
  1749. margin-left: 1rem;
  1750. }
  1751. .repository .head .ui.header {
  1752. margin-top: 0;
  1753. }
  1754. .repository .head .mega-octicon {
  1755. width: 30px;
  1756. font-size: 30px;
  1757. }
  1758. .repository .head .ui.huge.breadcrumb {
  1759. font-weight: 300;
  1760. font-size: 1.7rem;
  1761. }
  1762. .repository .head .fork-flag {
  1763. margin-left: 38px;
  1764. display: block;
  1765. font-size: 12px;
  1766. line-height: 10px;
  1767. white-space: nowrap;
  1768. }
  1769. .repository .navbar .ui.label {
  1770. margin-top: -2px;
  1771. margin-left: 7px;
  1772. padding: 3px 5px;
  1773. }
  1774. .repository .owner.dropdown {
  1775. min-width: 40% !important;
  1776. }
  1777. .repository .metas .menu {
  1778. max-height: 300px;
  1779. overflow-x: auto;
  1780. }
  1781. .repository .metas .ui.list .hide {
  1782. display: none!important;
  1783. }
  1784. .repository .metas .ui.list .label.color {
  1785. padding: 0 8px;
  1786. margin-right: 5px;
  1787. }
  1788. .repository .metas .ui.list a {
  1789. padding-top: 5px;
  1790. padding-right: 10px;
  1791. }
  1792. .repository .metas .ui.list a .text {
  1793. color: #444;
  1794. }
  1795. .repository .metas .ui.list a .text:hover {
  1796. color: #000;
  1797. }
  1798. .repository .filter.menu .label.color {
  1799. margin-left: 15px;
  1800. padding: 0 8px;
  1801. }
  1802. .repository .filter.menu .octicon {
  1803. float: left;
  1804. margin-left: -5px;
  1805. margin-right: -7px;
  1806. }
  1807. .repository .filter.menu .menu {
  1808. max-height: 300px;
  1809. overflow-x: auto;
  1810. right: 0!important;
  1811. left: auto!important;
  1812. }
  1813. .repository .filter.menu .dropdown.item {
  1814. margin: 1px;
  1815. padding-right: 0;
  1816. }
  1817. .repository .ui.tabs.container {
  1818. margin-top: 14px;
  1819. margin-bottom: 0px;
  1820. }
  1821. .repository .ui.tabs.container .ui.menu {
  1822. border-bottom: none;
  1823. }
  1824. .repository .ui.tabs.divider {
  1825. margin-top: 0;
  1826. margin-bottom: 20px;
  1827. }
  1828. .repository #clone-panel {
  1829. margin-top: -8px;
  1830. width: 100%;
  1831. }
  1832. .repository #clone-panel input {
  1833. border-radius: 0;
  1834. padding: 5px 10px;
  1835. }
  1836. .repository #clone-panel .clone.button {
  1837. font-size: 13px;
  1838. padding: 0 5px;
  1839. }
  1840. .repository #clone-panel .clone.button:first-child {
  1841. border-radius: .28571429rem 0 0 .28571429rem;
  1842. }
  1843. .repository #clone-panel .icon.button {
  1844. padding: 0 10px;
  1845. }
  1846. .repository #clone-panel .dropdown .menu {
  1847. right: 0!important;
  1848. left: auto!important;
  1849. }
  1850. .repository.file.list #repo-desc {
  1851. font-size: 1.2em;
  1852. }
  1853. .repository.file.list .choose.reference .header .icon {
  1854. font-size: 1.4em;
  1855. }
  1856. .repository.file.list #repo-files-table thead th {
  1857. padding-top: 8px;
  1858. padding-bottom: 5px;
  1859. font-weight: normal;
  1860. }
  1861. .repository.file.list #repo-files-table thead th:first-child {
  1862. display: block;
  1863. position: relative;
  1864. width: 325%;
  1865. }
  1866. .repository.file.list #repo-files-table thead th .ui.sha.label {
  1867. font-weight: bold;
  1868. }
  1869. .repository.file.list #repo-files-table thead .ui.avatar {
  1870. margin-bottom: 5px;
  1871. }
  1872. .repository.file.list #repo-files-table tbody .icon {
  1873. margin-left: 3px;
  1874. margin-right: 5px;
  1875. }
  1876. .repository.file.list #repo-files-table td {
  1877. padding-top: 8px;
  1878. padding-bottom: 8px;
  1879. }
  1880. .repository.file.list #repo-files-table tr:hover {
  1881. background-color: #ffffEE;
  1882. }
  1883. .repository.file.list #file-content .header .icon {
  1884. font-size: 1em;
  1885. margin-top: -2px;
  1886. }
  1887. .repository.file.list #file-content .view-raw * {
  1888. width: 100%;
  1889. }
  1890. .repository.file.list #file-content .view-raw img {
  1891. padding: 5px 5px 0 5px;
  1892. }
  1893. .repository.file.list #file-content .code-view * {
  1894. font-size: 13px;
  1895. font-family: monospace;
  1896. line-height: 20px;
  1897. }
  1898. .repository.file.list #file-content .code-view table {
  1899. width: 100%;
  1900. }
  1901. .repository.file.list #file-content .code-view .lines-num {
  1902. vertical-align: top;
  1903. text-align: right;
  1904. color: #999;
  1905. background: #f5f5f5;
  1906. width: 1%;
  1907. }
  1908. .repository.file.list #file-content .code-view .lines-num span {
  1909. font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  1910. line-height: 20px;
  1911. padding: 0 10px;
  1912. cursor: pointer;
  1913. display: block;
  1914. }
  1915. .repository.file.list #file-content .code-view .lines-num,
  1916. .repository.file.list #file-content .code-view .lines-code {
  1917. padding: 0;
  1918. }
  1919. .repository.file.list #file-content .code-view .lines-num pre,
  1920. .repository.file.list #file-content .code-view .lines-code pre,
  1921. .repository.file.list #file-content .code-view .lines-num ol,
  1922. .repository.file.list #file-content .code-view .lines-code ol,
  1923. .repository.file.list #file-content .code-view .lines-num .hljs,
  1924. .repository.file.list #file-content .code-view .lines-code .hljs {
  1925. background-color: white;
  1926. margin: 0;
  1927. padding: 0 !important;
  1928. }
  1929. .repository.file.list #file-content .code-view .lines-num pre li,
  1930. .repository.file.list #file-content .code-view .lines-code pre li,
  1931. .repository.file.list #file-content .code-view .lines-num ol li,
  1932. .repository.file.list #file-content .code-view .lines-code ol li,
  1933. .repository.file.list #file-content .code-view .lines-num .hljs li,
  1934. .repository.file.list #file-content .code-view .lines-code .hljs li {
  1935. padding-left: 5px;
  1936. }
  1937. .repository.file.list #file-content .code-view .lines-num pre li.active,
  1938. .repository.file.list #file-content .code-view .lines-code pre li.active,
  1939. .repository.file.list #file-content .code-view .lines-num ol li.active,
  1940. .repository.file.list #file-content .code-view .lines-code ol li.active,
  1941. .repository.file.list #file-content .code-view .lines-num .hljs li.active,
  1942. .repository.file.list #file-content .code-view .lines-code .hljs li.active {
  1943. background: #ffffdd;
  1944. }
  1945. .repository.file.list .sidebar {
  1946. padding-left: 0;
  1947. }
  1948. .repository.file.list .sidebar .octicon {
  1949. width: 16px;
  1950. }
  1951. .repository.options #interval {
  1952. width: 100px!important;
  1953. min-width: 100px;
  1954. }
  1955. .repository.options .danger .item {
  1956. padding: 20px 15px;
  1957. }
  1958. .repository.options .danger .ui.divider {
  1959. margin: 0;
  1960. }
  1961. .repository.new.issue .comment.form .comment .avatar {
  1962. width: 3em;
  1963. }
  1964. .repository.new.issue .comment.form .content {
  1965. margin-left: 4em;
  1966. }
  1967. .repository.new.issue .comment.form .content .markdown {
  1968. font-size: 14px;
  1969. }
  1970. .repository.new.issue .comment.form .metas {
  1971. min-width: 220px;
  1972. }
  1973. .repository.new.issue .comment.form .metas .filter.menu {
  1974. max-height: 300px;
  1975. overflow-x: auto;
  1976. }
  1977. .repository.view.issue .title {
  1978. padding-bottom: 0!important;
  1979. }
  1980. .repository.view.issue .title h1 {
  1981. font-weight: 300;
  1982. font-size: 3rem;
  1983. margin-bottom: 5px;
  1984. }
  1985. .repository.view.issue .title h1 .ui.input {
  1986. font-size: 0.5em;
  1987. vertical-align: top;
  1988. width: 50%;
  1989. min-width: 600px;
  1990. }
  1991. .repository.view.issue .title h1 .ui.input input {
  1992. font-size: 1.5em;
  1993. padding: 6px 10px;
  1994. }
  1995. .repository.view.issue .title .index {
  1996. font-weight: 300;
  1997. color: #aaa;
  1998. letter-spacing: -1px;
  1999. }
  2000. .repository.view.issue .title .label {
  2001. margin-right: 10px;
  2002. }
  2003. .repository.view.issue .title .edit-zone {
  2004. margin-top: 10px;
  2005. }
  2006. .repository.view.issue .pull-desc code {
  2007. color: #0166E6;
  2008. }
  2009. .repository.view.issue .pull.tabular.menu {
  2010. margin-bottom: 10px;
  2011. }
  2012. .repository.view.issue .pull.tabular.menu .octicon {
  2013. margin-right: 5px;
  2014. }
  2015. .repository.view.issue .pull.tab.segment {
  2016. border: none;
  2017. padding: 0;
  2018. padding-top: 10px;
  2019. box-shadow: none;
  2020. background-color: inherit;
  2021. }
  2022. .repository.view.issue .pull .merge.box .avatar {
  2023. margin-left: 10px;
  2024. margin-top: 10px;
  2025. }
  2026. .repository.view.issue .comment-list:before {
  2027. display: block;
  2028. content: "";
  2029. position: absolute;
  2030. margin-top: 12px;
  2031. margin-bottom: 14px;
  2032. top: 0;
  2033. bottom: 0;
  2034. left: 96px;
  2035. width: 2px;
  2036. background-color: #f3f3f3;
  2037. z-index: -1;
  2038. }
  2039. .repository.view.issue .comment-list .comment .avatar {
  2040. width: 3em;
  2041. }
  2042. .repository.view.issue .comment-list .comment .tag {
  2043. color: #767676;
  2044. margin-top: 3px;
  2045. padding: 2px 5px;
  2046. font-size: 12px;
  2047. border: 1px solid rgba(0, 0, 0, 0.1);
  2048. border-radius: 3px;
  2049. }
  2050. .repository.view.issue .comment-list .comment .actions .item {
  2051. float: left;
  2052. }
  2053. .repository.view.issue .comment-list .comment .actions a.item {
  2054. margin-top: 6px;
  2055. margin-left: 10px;
  2056. }
  2057. .repository.view.issue .comment-list .comment .content {
  2058. margin-left: 4em;
  2059. }
  2060. .repository.view.issue .comment-list .comment .content .header {
  2061. font-weight: normal;
  2062. padding: auto 15px;
  2063. color: #767676;
  2064. background-color: #f7f7f7;
  2065. border-bottom: 1px solid #eee;
  2066. border-top-left-radius: 3px;
  2067. border-top-right-radius: 3px;
  2068. }
  2069. .repository.view.issue .comment-list .comment .content .header .text {
  2070. max-width: 78%;
  2071. padding-top: 10px;
  2072. padding-bottom: 10px;
  2073. }
  2074. .repository.view.issue .comment-list .comment .content .markdown {
  2075. font-size: 14px;
  2076. }
  2077. .repository.view.issue .comment-list .comment .content .no-content {
  2078. color: #767676;
  2079. font-style: italic;
  2080. }
  2081. .repository.view.issue .comment-list .comment .content > .bottom.segment {
  2082. background: #f3f4f5;
  2083. }
  2084. .repository.view.issue .comment-list .comment .content > .bottom.segment .ui.image {
  2085. max-height: 150px;
  2086. }
  2087. .repository.view.issue .comment-list .comment .ui.form .field:first-child {
  2088. clear: none;
  2089. }
  2090. .repository.view.issue .comment-list .comment .ui.form .tab.segment {
  2091. border: none;
  2092. padding: 0;
  2093. padding-top: 10px;
  2094. }
  2095. .repository.view.issue .comment-list .comment .ui.form textarea {
  2096. height: 200px;
  2097. }
  2098. .repository.view.issue .comment-list .comment .edit.buttons {
  2099. margin-top: 10px;
  2100. }
  2101. .repository.view.issue .comment-list .event {
  2102. position: relative;
  2103. margin: 15px 0 15px 79px;
  2104. padding-left: 25px;
  2105. }
  2106. .repository.view.issue .comment-list .event .octicon {
  2107. width: 30px;
  2108. float: left;
  2109. margin-left: -36px;
  2110. text-align: center;
  2111. }
  2112. .repository.view.issue .comment-list .event .octicon.octicon-circle-slash {
  2113. margin-top: 5px;
  2114. font-size: 20px;
  2115. color: #bd2c00;
  2116. }
  2117. .repository.view.issue .comment-list .event .octicon.octicon-primitive-dot {
  2118. font-size: 30px;
  2119. color: #6cc644;
  2120. }
  2121. .repository.view.issue .comment-list .event .octicon.octicon-bookmark {
  2122. margin-top: 3px;
  2123. font-size: 25px;
  2124. }
  2125. .repository.view.issue .comment-list .event .detail {
  2126. font-size: 0.9rem;
  2127. margin-top: 5px;
  2128. margin-left: 35px;
  2129. }
  2130. .repository.view.issue .comment-list .event .detail .octicon.octicon-git-commit {
  2131. margin-top: 2px;
  2132. }
  2133. .repository.view.issue .ui.segment.metas {
  2134. margin-top: -3px;
  2135. }
  2136. .repository .comment.form .ui.comments {
  2137. margin-top: -12px;
  2138. max-width: 100%;
  2139. }
  2140. .repository .comment.form .content .field:first-child {
  2141. clear: none;
  2142. }
  2143. .repository .comment.form .content .tab.segment {
  2144. border: none;
  2145. padding: 0;
  2146. padding-top: 10px;
  2147. }
  2148. .repository .comment.form .content textarea {
  2149. height: 200px;
  2150. }
  2151. .repository .label.list {
  2152. list-style: none;
  2153. padding-top: 15px;
  2154. }
  2155. .repository .label.list .item {
  2156. padding-top: 10px;
  2157. padding-bottom: 10px;
  2158. border-bottom: 1px dashed #AAA;
  2159. }
  2160. .repository .label.list .item a {
  2161. font-size: 15px;
  2162. padding-top: 5px;
  2163. padding-right: 10px;
  2164. color: #666;
  2165. }
  2166. .repository .label.list .item a:hover {
  2167. color: #000;
  2168. }
  2169. .repository .label.list .item a.open-issues {
  2170. margin-right: 30px;
  2171. }
  2172. .repository .milestone.list {
  2173. list-style: none;
  2174. padding-top: 15px;
  2175. }
  2176. .repository .milestone.list > .item {
  2177. padding-top: 10px;
  2178. padding-bottom: 10px;
  2179. border-bottom: 1px dashed #AAA;
  2180. }
  2181. .repository .milestone.list > .item > a {
  2182. padding-top: 5px;
  2183. padding-right: 10px;
  2184. color: #000;
  2185. }
  2186. .repository .milestone.list > .item > a:hover {
  2187. color: #4078c0;
  2188. }
  2189. .repository .milestone.list > .item .ui.progress {
  2190. width: 40%;
  2191. padding: 0;
  2192. border: 0;
  2193. margin: 0;
  2194. }
  2195. .repository .milestone.list > .item .ui.progress .bar {
  2196. height: 20px;
  2197. }
  2198. .repository .milestone.list > .item .meta {
  2199. color: #999;
  2200. padding-top: 5px;
  2201. }
  2202. .repository .milestone.list > .item .meta .issue-stats .octicon {
  2203. padding-left: 5px;
  2204. }
  2205. .repository .milestone.list > .item .meta .overdue {
  2206. color: red;
  2207. }
  2208. .repository .milestone.list > .item .operate {
  2209. margin-top: -15px;
  2210. }
  2211. .repository .milestone.list > .item .operate > a {
  2212. font-size: 15px;
  2213. padding-top: 5px;
  2214. padding-right: 10px;
  2215. color: #666;
  2216. }
  2217. .repository .milestone.list > .item .operate > a:hover {
  2218. color: #000;
  2219. }
  2220. .repository .milestone.list > .item .content {
  2221. padding-top: 10px;
  2222. }
  2223. .repository.new.milestone textarea {
  2224. height: 200px;
  2225. }
  2226. .repository.new.milestone #deadline {
  2227. width: 150px;
  2228. }
  2229. .repository.compare.pull .choose.branch .octicon {
  2230. padding-right: 10px;
  2231. }
  2232. .repository .filter.dropdown .menu {
  2233. margin-top: 1px!important;
  2234. }
  2235. .repository.commits .header .ui.right .search input {
  2236. font-weight: normal;
  2237. padding: 5px 10px;
  2238. }
  2239. .repository #commits-table {
  2240. width: 100%;
  2241. }
  2242. .repository .diff-detail-box {
  2243. margin: 15px 0;
  2244. line-height: 30px;
  2245. }
  2246. .repository .diff-detail-box ol {
  2247. clear: both;
  2248. padding-left: 0;
  2249. margin-top: 5px;
  2250. margin-bottom: 28px;
  2251. }
  2252. .repository .diff-detail-box ol li {
  2253. list-style: none;
  2254. padding-bottom: 4px;
  2255. margin-bottom: 4px;
  2256. border-bottom: 1px dashed #DDD;
  2257. padding-left: 6px;
  2258. }
  2259. .repository .diff-detail-box span.status {
  2260. display: inline-block;
  2261. width: 12px;
  2262. height: 12px;
  2263. margin-right: 8px;
  2264. vertical-align: middle;
  2265. }
  2266. .repository .diff-detail-box span.status.modify {
  2267. background-color: #f0db88;
  2268. }
  2269. .repository .diff-detail-box span.status.add {
  2270. background-color: #b4e2b4;
  2271. }
  2272. .repository .diff-detail-box span.status.del {
  2273. background-color: #e9aeae;
  2274. }
  2275. .repository .diff-detail-box span.status.rename {
  2276. background-color: #dad8ff;
  2277. }
  2278. .repository .diff-box .count {
  2279. margin-right: 12px;
  2280. }
  2281. .repository .diff-box .count .bar {
  2282. background-color: #e75316;
  2283. height: 12px;
  2284. width: 40px;
  2285. display: inline-block;
  2286. margin: 2px 4px 0 4px;
  2287. vertical-align: text-top;
  2288. }
  2289. .repository .diff-box .count .bar .add {
  2290. background-color: #77c64a;
  2291. height: 12px;
  2292. }
  2293. .repository .diff-box .file {
  2294. color: #888;
  2295. }
  2296. .repository .diff-file-box .header {
  2297. border-bottom: 1px solid #d4d4d5!important;
  2298. }
  2299. .repository .diff-file-box .file-body.file-code .lines-num {
  2300. text-align: right;
  2301. color: #999;
  2302. background: #fafafa;
  2303. width: 1%;
  2304. }
  2305. .repository .diff-file-box .file-body.file-code .lines-num-old {
  2306. border-right: 1px solid #DDD;
  2307. }
  2308. .repository .diff-file-box .code-diff {
  2309. font-size: 13px;
  2310. }
  2311. .repository .diff-file-box .code-diff td {
  2312. padding: 0;
  2313. border-top: none;
  2314. }
  2315. .repository .diff-file-box .code-diff pre {
  2316. margin: 0;
  2317. }
  2318. .repository .diff-file-box .code-diff .lines-num {
  2319. border-right: 1px solid #d4d4d5;
  2320. padding: 0 5px;
  2321. }
  2322. .repository .diff-file-box .code-diff tbody tr.tag-code td,
  2323. .repository .diff-file-box .code-diff tbody tr.tag-code pre {
  2324. background-color: #E0E0E0 !important;
  2325. border-color: #ADADAD!important;
  2326. }
  2327. .repository .diff-file-box .code-diff tbody tr.del-code td,
  2328. .repository .diff-file-box .code-diff tbody tr.del-code pre {
  2329. background-color: #ffe2dd !important;
  2330. border-color: #e9aeae !important;
  2331. }
  2332. .repository .diff-file-box .code-diff tbody tr.add-code td,
  2333. .repository .diff-file-box .code-diff tbody tr.add-code pre {
  2334. background-color: #d1ffd6 !important;
  2335. border-color: #b4e2b4 !important;
  2336. }
  2337. .repository .diff-file-box .code-diff tbody tr:hover td {
  2338. background-color: #FFF8D2 !important;
  2339. border-color: #F0DB88 !important;
  2340. }
  2341. .repository .diff-file-box .code-diff tbody tr:hover pre {
  2342. background-color: transparent !important;
  2343. }
  2344. .repository .diff-file-box.file-content img {
  2345. max-width: 100%;
  2346. padding: 5px 5px 0 5px;
  2347. }
  2348. .repository .code-view {
  2349. overflow: auto;
  2350. overflow-x: auto;
  2351. overflow-y: hidden;
  2352. }
  2353. .repository.quickstart .ui.grid {
  2354. margin-top: 0;
  2355. }
  2356. .repository.quickstart .guide .item {
  2357. padding: 1em;
  2358. }
  2359. .repository.quickstart .guide .item small {
  2360. font-weight: normal;
  2361. }
  2362. .repository.quickstart .guide .clone.button:first-child {
  2363. border-radius: .28571429rem 0 0 .28571429rem;
  2364. }
  2365. .repository.quickstart .guide .ui.action.small.input {
  2366. width: 100%;
  2367. }
  2368. .repository.quickstart .guide #repo-clone-url {
  2369. border-radius: 0;
  2370. padding: 5px 10px;
  2371. font-size: 1.2em;
  2372. }
  2373. .repository.release #release-list {
  2374. border-top: 1px solid #DDD;
  2375. margin-top: 20px;
  2376. padding-top: 15px;
  2377. }
  2378. .repository.release #release-list > li {
  2379. list-style: none;
  2380. }
  2381. .repository.release #release-list > li .meta,
  2382. .repository.release #release-list > li .detail {
  2383. padding-top: 30px;
  2384. padding-bottom: 40px;
  2385. }
  2386. .repository.release #release-list > li .meta {
  2387. text-align: right;
  2388. position: relative;
  2389. }
  2390. .repository.release #release-list > li .meta .tag:not(.icon) {
  2391. display: block;
  2392. margin-top: 15px;
  2393. }
  2394. .repository.release #release-list > li .meta .commit {
  2395. display: block;
  2396. margin-top: 10px;
  2397. }
  2398. .repository.release #release-list > li .detail {
  2399. border-left: 1px solid #DDD;
  2400. }
  2401. .repository.release #release-list > li .detail .author img {
  2402. margin-bottom: -3px;
  2403. }
  2404. .repository.release #release-list > li .detail .download {
  2405. margin-top: 20px;
  2406. }
  2407. .repository.release #release-list > li .detail .download > a .octicon {
  2408. margin-left: 5px;
  2409. margin-right: 5px;
  2410. }
  2411. .repository.release #release-list > li .detail .download .list {
  2412. padding-left: 0;
  2413. border-top: 1px solid #eee;
  2414. }
  2415. .repository.release #release-list > li .detail .download .list li {
  2416. list-style: none;
  2417. display: block;
  2418. padding-top: 8px;
  2419. padding-bottom: 8px;
  2420. border-bottom: 1px solid #eee;
  2421. }
  2422. .repository.release #release-list > li .detail .dot {
  2423. width: 9px;
  2424. height: 9px;
  2425. background-color: #ccc;
  2426. z-index: 999;
  2427. position: absolute;
  2428. display: block;
  2429. left: -5px;
  2430. top: 40px;
  2431. border-radius: 6px;
  2432. border: 1px solid #FFF;
  2433. }
  2434. .repository.new.release .target {
  2435. min-width: 500px;
  2436. }
  2437. .repository.new.release .target .at {
  2438. margin-left: -5px;
  2439. margin-right: 5px;
  2440. }
  2441. .repository.new.release .target .dropdown.icon {
  2442. margin: 0;
  2443. padding-top: 3px;
  2444. }
  2445. .repository.new.release .target .selection.dropdown {
  2446. padding-top: 10px;
  2447. padding-bottom: 10px;
  2448. }
  2449. .repository.new.release .prerelease.field {
  2450. margin-bottom: 0;
  2451. }
  2452. .repository.watchers .list {
  2453. padding: 0;
  2454. }
  2455. .repository.watchers .list .item {
  2456. list-style: none;
  2457. width: 32%;
  2458. margin: 10px 10px 10px 0;
  2459. padding-bottom: 14px;
  2460. float: left;
  2461. }
  2462. .repository.watchers .list .item .avatar {
  2463. width: 48px;
  2464. height: 48px;
  2465. float: left;
  2466. display: block;
  2467. margin-right: 10px;
  2468. }
  2469. .repository.watchers .list .item .name {
  2470. margin-top: 0;
  2471. margin-bottom: 0;
  2472. font-weight: normal;
  2473. }
  2474. .repository.watchers .list .item .meta {
  2475. margin-top: 5px;
  2476. }
  2477. .repository.forks .list {
  2478. margin-top: 0;
  2479. }
  2480. .repository.forks .list .item {
  2481. padding-top: 10px;
  2482. padding-bottom: 10px;
  2483. border-bottom: 1px solid #DDD;
  2484. }
  2485. .repository.forks .list .item .ui.avatar {
  2486. float: left;
  2487. margin-right: 5px;
  2488. }
  2489. .repository.forks .list .item .link {
  2490. padding-top: 5px;
  2491. }
  2492. .repository.wiki.start .ui.segment {
  2493. padding-top: 70px;
  2494. padding-bottom: 100px;
  2495. }
  2496. .repository.wiki.start .ui.segment .mega-octicon {
  2497. font-size: 48px;
  2498. }
  2499. .repository.wiki.new .CodeMirror .CodeMirror-code .cm-comment {
  2500. background: inherit;
  2501. }
  2502. .repository.wiki.new .editor-preview {
  2503. background-color: white;
  2504. }
  2505. .repository.wiki.view .choose.page {
  2506. margin-top: -5px;
  2507. }
  2508. .repository.wiki.view .ui.sub.header {
  2509. text-transform: none;
  2510. }
  2511. .repository.wiki.view .markdown {
  2512. padding: 15px 30px;
  2513. }
  2514. .repository.wiki.view .markdown h1:first-of-type,
  2515. .repository.wiki.view .markdown h2:first-of-type,
  2516. .repository.wiki.view .markdown h3:first-of-type,
  2517. .repository.wiki.view .markdown h4:first-of-type,
  2518. .repository.wiki.view .markdown h5:first-of-type,
  2519. .repository.wiki.view .markdown h6:first-of-type {
  2520. margin-top: 0;
  2521. }
  2522. .repository.settings.collaboration .collaborator.list {
  2523. padding: 0;
  2524. }
  2525. .repository.settings.collaboration .collaborator.list .item {
  2526. padding: 10px 20px;
  2527. }
  2528. .repository.settings.collaboration .collaborator.list .item:not(:last-child) {
  2529. border-bottom: 1px solid #DDD;
  2530. }
  2531. .repository.settings.collaboration #repo-collab-form #search-user-box .results {
  2532. left: 7px;
  2533. }
  2534. .repository.settings.collaboration #repo-collab-form .ui.button {
  2535. margin-left: 5px;
  2536. margin-top: -3px;
  2537. }
  2538. #search-repo-box .results,
  2539. #search-user-box .results {
  2540. padding: 0;
  2541. position: absolute;
  2542. }
  2543. #search-repo-box .results .item,
  2544. #search-user-box .results .item {
  2545. padding: 10px 15px;
  2546. border-bottom: 1px solid #DDD;
  2547. cursor: pointer;
  2548. }
  2549. #search-repo-box .results .item:hover,
  2550. #search-user-box .results .item:hover {
  2551. background: rgba(0, 0, 0, 0.05) !important;
  2552. color: rgba(0, 0, 0, 0.95) !important;
  2553. }
  2554. #search-repo-box .results .item img,
  2555. #search-user-box .results .item img {
  2556. margin-right: 8px;
  2557. }
  2558. .issue.list {
  2559. list-style: none;
  2560. padding-top: 15px;
  2561. }
  2562. .issue.list > .item {
  2563. padding-top: 15px;
  2564. padding-bottom: 10px;
  2565. border-bottom: 1px dashed #AAA;
  2566. }
  2567. .issue.list > .item .title {
  2568. color: #444;
  2569. font-size: 15px;
  2570. font-weight: bold;
  2571. margin: 0 6px;
  2572. }
  2573. .issue.list > .item .title:hover {
  2574. color: #000;
  2575. }
  2576. .issue.list > .item .comment {
  2577. padding-right: 10px;
  2578. color: #666;
  2579. }
  2580. .issue.list > .item .desc {
  2581. padding-top: 5px;
  2582. color: #999;
  2583. }
  2584. .issue.list > .item .desc a.milestone {
  2585. padding-left: 5px;
  2586. color: #999!important;
  2587. }
  2588. .issue.list > .item .desc a.milestone:hover {
  2589. color: #000!important;
  2590. }
  2591. .issue.list > .item .desc .assignee {
  2592. margin-top: -5px;
  2593. margin-right: 5px;
  2594. }
  2595. .page.buttons {
  2596. padding-top: 15px;
  2597. }
  2598. .ui.comments .dropzone {
  2599. width: 100%;
  2600. margin-bottom: 10px;
  2601. border: 2px dashed #0087F7;
  2602. box-shadow: none!important;
  2603. }
  2604. .ui.comments .dropzone .dz-error-message {
  2605. top: 140px;
  2606. }
  2607. .settings .content {
  2608. margin-top: 2px;
  2609. }
  2610. .settings .content > .header,
  2611. .settings .content .segment {
  2612. box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
  2613. }
  2614. .settings .key.list .item:not(:first-child) {
  2615. border-top: 1px solid #eaeaea;
  2616. }
  2617. .settings .key.list .ssh-key-state-indicator {
  2618. float: left;
  2619. color: gray;
  2620. padding-left: 10px;
  2621. padding-top: 10px;
  2622. }
  2623. .settings .key.list .ssh-key-state-indicator.active {
  2624. color: #6cc644;
  2625. }
  2626. .settings .key.list .meta {
  2627. padding-top: 5px;
  2628. }
  2629. .settings .key.list .print {
  2630. color: #767676;
  2631. }
  2632. .settings .key.list .activity {
  2633. color: #666;
  2634. }
  2635. .settings .hook.list > .item:not(:first-child) {
  2636. border-top: 1px solid #eaeaea;
  2637. }
  2638. .settings .hook.list .item {
  2639. padding: 10px 20px;
  2640. }
  2641. .settings .hook.list .item .octicon,
  2642. .settings .hook.list .item .fa {
  2643. width: 20px;
  2644. text-align: center;
  2645. }
  2646. .settings .hook.history.list .item {
  2647. padding-left: 13px;
  2648. }
  2649. .settings .hook.history.list .item .meta .ui.right {
  2650. margin-top: 5px;
  2651. }
  2652. .settings .hook.history.list .item .meta .ui.right .time {
  2653. font-size: 12px;
  2654. }
  2655. .settings .hook.history.list .item .info {
  2656. margin-top: 10px;
  2657. }
  2658. .settings .hook.history.list .item .info .tabular.menu .item {
  2659. font-weight: 500;
  2660. }
  2661. .settings .hook.history.list .item .info .tab.segment {
  2662. border: none;
  2663. padding: 0;
  2664. padding-top: 10px;
  2665. box-shadow: none;
  2666. }
  2667. .settings .hook.history.list .item .info .tab.segment > * {
  2668. color: #666;
  2669. }
  2670. .settings .hook.history.list .item .info .tab.segment pre {
  2671. word-wrap: break-word;
  2672. }
  2673. .settings .hook.history.list .item .info .tab.segment pre .hljs {
  2674. padding: 0;
  2675. background-color: inherit;
  2676. }
  2677. .ui.vertical.menu .header.item {
  2678. font-size: 1.1em;
  2679. background: #f0f0f0;
  2680. }
  2681. .edit-label.modal .form .column,
  2682. .new-label.segment .form .column {
  2683. padding-right: 0;
  2684. }
  2685. .edit-label.modal .form .buttons,
  2686. .new-label.segment .form .buttons {
  2687. margin-left: auto;
  2688. padding-top: 15px;
  2689. }
  2690. .edit-label.modal .form .color.picker.column,
  2691. .new-label.segment .form .color.picker.column {
  2692. width: auto;
  2693. }
  2694. .edit-label.modal .form .color.picker.column .color-picker,
  2695. .new-label.segment .form .color.picker.column .color-picker {
  2696. height: 35px;
  2697. width: auto;
  2698. padding-left: 30px;
  2699. }
  2700. .edit-label.modal .form .minicolors-swatch.minicolors-sprite,
  2701. .new-label.segment .form .minicolors-swatch.minicolors-sprite {
  2702. top: 10px;
  2703. left: 10px;
  2704. width: 15px;
  2705. height: 15px;
  2706. }
  2707. .edit-label.modal .form .precolors,
  2708. .new-label.segment .form .precolors {
  2709. padding-left: 0;
  2710. padding-right: 0;
  2711. margin: 3px 10px auto 10px;
  2712. width: 120px;
  2713. }
  2714. .edit-label.modal .form .precolors .color,
  2715. .new-label.segment .form .precolors .color {
  2716. float: left;
  2717. width: 15px;
  2718. height: 15px;
  2719. }
  2720. #transfer-repo-modal .ui.message,
  2721. #delete-repo-modal .ui.message {
  2722. width: 100%!important;
  2723. }
  2724. .organization {
  2725. padding-top: 15px;
  2726. padding-bottom: 80px;
  2727. }
  2728. .organization .head .ui.header .text {
  2729. vertical-align: middle;
  2730. font-size: 1.6rem;
  2731. margin-left: 15px;
  2732. }
  2733. .organization .head .ui.header .ui.right {
  2734. margin-top: 5px;
  2735. }
  2736. .organization.new.org form {
  2737. margin: auto;
  2738. width: 800px!important;
  2739. }
  2740. .organization.new.org form .ui.message {
  2741. text-align: center;
  2742. }
  2743. .organization.new.org form .header {
  2744. padding-left: 280px !important;
  2745. }
  2746. .organization.new.org form .inline.field > label {
  2747. text-align: right;
  2748. width: 250px !important;
  2749. word-wrap: break-word;
  2750. }
  2751. .organization.new.org form .help {
  2752. margin-left: 265px !important;
  2753. }
  2754. .organization.new.org form .optional .title {
  2755. margin-left: 250px !important;
  2756. }
  2757. .organization.new.org form input,
  2758. .organization.new.org form textarea {
  2759. width: 50%!important;
  2760. }
  2761. .organization.options input {
  2762. width: 50%!important;
  2763. min-width: 300px;
  2764. }
  2765. .organization.profile #org-avatar {
  2766. width: 100px;
  2767. height: 100px;
  2768. margin-right: 15px;
  2769. }
  2770. .organization.profile #org-info .ui.header {
  2771. font-size: 36px;
  2772. margin-bottom: 0;
  2773. }
  2774. .organization.profile #org-info .desc {
  2775. font-size: 16px;
  2776. margin-bottom: 10px;
  2777. }
  2778. .organization.profile #org-info .meta .item {
  2779. display: inline-block;
  2780. margin-right: 10px;
  2781. }
  2782. .organization.profile #org-info .meta .item .icon {
  2783. margin-right: 5px;
  2784. }
  2785. .organization.profile .ui.top.header .ui.right {
  2786. margin-top: 0;
  2787. }
  2788. .organization.profile .teams .item {
  2789. padding: 10px 15px;
  2790. }
  2791. .organization.teams .members .ui.avatar,
  2792. .organization.profile .members .ui.avatar {
  2793. width: 48px;
  2794. height: 48px;
  2795. margin-right: 5px;
  2796. }
  2797. .organization.invite #invite-box {
  2798. margin: auto;
  2799. margin-top: 50px;
  2800. width: 500px !important;
  2801. }
  2802. .organization.invite #invite-box #search-user-box input {
  2803. margin-left: 0;
  2804. width: 300px;
  2805. }
  2806. .organization.invite #invite-box .ui.button {
  2807. margin-left: 5px;
  2808. margin-top: -3px;
  2809. }
  2810. .organization.members .list .item {
  2811. margin-left: 0;
  2812. margin-right: 0;
  2813. border-bottom: 1px solid #eee;
  2814. }
  2815. .organization.members .list .item .ui.avatar {
  2816. width: 48px;
  2817. height: 48px;
  2818. }
  2819. .organization.members .list .item .meta {
  2820. line-height: 24px;
  2821. }
  2822. .organization.teams .detail .item {
  2823. padding: 10px 15px;
  2824. }
  2825. .organization.teams .detail .item:not(:last-child) {
  2826. border-bottom: 1px solid #eee;
  2827. }
  2828. .organization.teams .repositories .item,
  2829. .organization.teams .members .item {
  2830. padding: 10px 20px;
  2831. line-height: 32px;
  2832. }
  2833. .organization.teams .repositories .item:not(:last-child),
  2834. .organization.teams .members .item:not(:last-child) {
  2835. border-bottom: 1px solid #DDD;
  2836. }
  2837. .organization.teams .repositories .item .button,
  2838. .organization.teams .members .item .button {
  2839. padding: 9px 10px;
  2840. }
  2841. .organization.teams #add-repo-form input,
  2842. .organization.teams #add-member-form input {
  2843. margin-left: 0;
  2844. }
  2845. .organization.teams #add-repo-form .ui.button,
  2846. .organization.teams #add-member-form .ui.button {
  2847. margin-left: 5px;
  2848. margin-top: -3px;
  2849. }
  2850. .user {
  2851. padding-top: 15px;
  2852. padding-bottom: 80px;
  2853. }
  2854. .user.settings .list .item.ui.grid {
  2855. margin-top: 15px;
  2856. }
  2857. .user.settings .email.list .item:not(:first-child) {
  2858. border-top: 1px solid #eaeaea;
  2859. height: 50px;
  2860. }
  2861. .user.settings .email.list .item:not(:first-child) .button {
  2862. margin-top: -10px;
  2863. }
  2864. .user.profile .ui.card .username {
  2865. display: block;
  2866. }
  2867. .user.profile .ui.card .extra.content {
  2868. padding: 0;
  2869. }
  2870. .user.profile .ui.card .extra.content ul {
  2871. margin: 0;
  2872. padding: 0;
  2873. }
  2874. .user.profile .ui.card .extra.content ul li {
  2875. padding: 10px;
  2876. list-style: none;
  2877. }
  2878. .user.profile .ui.card .extra.content ul li:not(:last-child) {
  2879. border-bottom: 1px solid #eaeaea;
  2880. }
  2881. .user.profile .ui.repository.list {
  2882. margin-top: 25px;
  2883. }
  2884. .dashboard {
  2885. padding-top: 15px;
  2886. padding-bottom: 80px;
  2887. }
  2888. .dashboard.feeds .context.user.menu,
  2889. .dashboard.issues .context.user.menu {
  2890. z-index: 101;
  2891. min-width: 200px;
  2892. }
  2893. .dashboard.feeds .context.user.menu .ui.header,
  2894. .dashboard.issues .context.user.menu .ui.header {
  2895. font-size: 1rem;
  2896. text-transform: none;
  2897. }
  2898. .dashboard.feeds .filter.menu .item,
  2899. .dashboard.issues .filter.menu .item {
  2900. text-align: left;
  2901. }
  2902. .dashboard.feeds .filter.menu .item .text,
  2903. .dashboard.issues .filter.menu .item .text {
  2904. height: 16px;
  2905. vertical-align: middle;
  2906. }
  2907. .dashboard.feeds .filter.menu .item .text.truncate,
  2908. .dashboard.issues .filter.menu .item .text.truncate {
  2909. width: 85%;
  2910. }
  2911. .dashboard.feeds .filter.menu .item .floating.label,
  2912. .dashboard.issues .filter.menu .item .floating.label {
  2913. top: 7px;
  2914. left: 90%;
  2915. width: 15%;
  2916. }
  2917. .dashboard.feeds .filter.menu .jump.item,
  2918. .dashboard.issues .filter.menu .jump.item {
  2919. margin: 1px;
  2920. padding-right: 0;
  2921. }
  2922. .dashboard.feeds .filter.menu .menu,
  2923. .dashboard.issues .filter.menu .menu {
  2924. max-height: 300px;
  2925. overflow-x: auto;
  2926. right: 0!important;
  2927. left: auto!important;
  2928. }
  2929. .dashboard.feeds .ui.right .head.menu,
  2930. .dashboard.issues .ui.right .head.menu {
  2931. margin-top: -5px;
  2932. }
  2933. .dashboard.feeds .ui.right .head.menu .item.active,
  2934. .dashboard.issues .ui.right .head.menu .item.active {
  2935. color: #d9453d;
  2936. }
  2937. .dashboard.feeds .head.menu .octicon,
  2938. .dashboard.issues .head.menu .octicon {
  2939. margin-right: 5px;
  2940. }
  2941. .feeds .news .ui.avatar {
  2942. margin-top: 13px;
  2943. }
  2944. .feeds .news p {
  2945. line-height: 1em;
  2946. }
  2947. .feeds .news .time-since {
  2948. font-size: 13px;
  2949. }
  2950. .feeds .news .issue.title {
  2951. line-height: 1.1em;
  2952. width: 80%;
  2953. }
  2954. .feeds .news .push.news .content ul {
  2955. font-size: 13px;
  2956. list-style: none;
  2957. padding-left: 10px;
  2958. }
  2959. .feeds .news .push.news .content ul img {
  2960. margin-bottom: -2px;
  2961. }
  2962. .feeds .news .push.news .content ul .text.truncate {
  2963. width: 80%;
  2964. margin-bottom: -5px;
  2965. }
  2966. .feeds .list .header {
  2967. padding-top: 10px;
  2968. padding-bottom: 5px;
  2969. }
  2970. .feeds .list ul {
  2971. list-style: none;
  2972. margin: 0;
  2973. padding-left: 0;
  2974. }
  2975. .feeds .list ul li:not(:last-child) {
  2976. border-bottom: 1px solid #EAEAEA;
  2977. }
  2978. .feeds .list ul li.private {
  2979. background-color: #fcf8e9;
  2980. }
  2981. .feeds .list ul li a {
  2982. padding: 6px 1.2em;
  2983. display: block;
  2984. }
  2985. .feeds .list ul li a .octicon {
  2986. margin-right: 6px;
  2987. color: #888;
  2988. }
  2989. .admin {
  2990. padding-top: 15px;
  2991. padding-bottom: 80px;
  2992. }
  2993. .admin .table.segment {
  2994. padding: 0;
  2995. font-size: 13px;
  2996. }
  2997. .admin .table.segment th {
  2998. padding-top: 5px;
  2999. padding-bottom: 5px;
  3000. }
  3001. .admin .table.segment th:first-of-type,
  3002. .admin .table.segment td:first-of-type {
  3003. padding-left: 15px !important;
  3004. }
  3005. .admin .ui.header,
  3006. .admin .ui.segment {
  3007. box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
  3008. }
  3009. .admin.user .email {
  3010. max-width: 200px;
  3011. }
  3012. .admin dl.admin-dl-horizontal {
  3013. padding: 20px;
  3014. margin: 0;
  3015. }
  3016. .admin dl.admin-dl-horizontal dd {
  3017. margin-left: 240px;
  3018. }
  3019. .admin dl.admin-dl-horizontal dt {
  3020. font-weight: bolder;
  3021. float: left;
  3022. width: 250px;
  3023. clear: left;
  3024. overflow: hidden;
  3025. text-overflow: ellipsis;
  3026. white-space: nowrap;
  3027. }
  3028. .explore {
  3029. padding-top: 15px;
  3030. padding-bottom: 80px;
  3031. }
  3032. .ui.repository.list .item {
  3033. padding-bottom: 25px;
  3034. }
  3035. .ui.repository.list .item:not(:first-child) {
  3036. border-top: 1px solid #eee;
  3037. padding-top: 25px;
  3038. }
  3039. .ui.repository.list .item .ui.header {
  3040. font-size: 1.5rem;
  3041. padding-bottom: 10px;
  3042. }
  3043. .ui.repository.list .item .ui.header .metas {
  3044. color: #888;
  3045. font-size: 13px;
  3046. font-weight: normal;
  3047. }
  3048. .ui.repository.list .item .ui.header .metas span:not(:last-child) {
  3049. margin-right: 5px;
  3050. }
  3051. .ui.repository.list .item .time {
  3052. font-size: 12px;
  3053. color: #808080;
  3054. }