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

index.css 65KB

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