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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934
  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 #file-content .header .icon {
  1276. font-size: 1em;
  1277. margin-top: -2px;
  1278. }
  1279. .repository.file.list #file-content .header .file-actions {
  1280. padding-left: 20px;
  1281. }
  1282. .repository.file.list #file-content .header .file-actions .btn-octicon {
  1283. display: inline-block;
  1284. padding: 5px;
  1285. margin-left: 5px;
  1286. line-height: 1;
  1287. color: #767676;
  1288. vertical-align: middle;
  1289. background: transparent;
  1290. border: 0;
  1291. outline: none;
  1292. }
  1293. .repository.file.list #file-content .header .file-actions .btn-octicon:hover {
  1294. color: #4078c0;
  1295. }
  1296. .repository.file.list #file-content .header .file-actions .btn-octicon-danger:hover {
  1297. color: #bd2c00;
  1298. }
  1299. .repository.file.list #file-content .header .file-actions .btn-octicon.disabled {
  1300. color: #bbb;
  1301. cursor: default;
  1302. }
  1303. .repository.file.list #file-content .header .file-actions #delete-file-form {
  1304. display: inline-block;
  1305. }
  1306. .repository.file.list #file-content .view-raw {
  1307. padding: 5px;
  1308. }
  1309. .repository.file.list #file-content .view-raw * {
  1310. max-width: 100%;
  1311. }
  1312. .repository.file.list #file-content .view-raw img {
  1313. padding: 5px 5px 0 5px;
  1314. }
  1315. .repository.file.list #file-content .code-view * {
  1316. font-size: 12px;
  1317. font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  1318. line-height: 20px;
  1319. }
  1320. .repository.file.list #file-content .code-view table {
  1321. width: 100%;
  1322. }
  1323. .repository.file.list #file-content .code-view .lines-num {
  1324. vertical-align: top;
  1325. text-align: right;
  1326. color: #999;
  1327. background: #f5f5f5;
  1328. width: 1%;
  1329. }
  1330. .repository.file.list #file-content .code-view .lines-num span {
  1331. line-height: 20px;
  1332. padding: 0 10px;
  1333. cursor: pointer;
  1334. display: block;
  1335. }
  1336. .repository.file.list #file-content .code-view .lines-num,
  1337. .repository.file.list #file-content .code-view .lines-code {
  1338. padding: 0;
  1339. }
  1340. .repository.file.list #file-content .code-view .lines-num pre,
  1341. .repository.file.list #file-content .code-view .lines-code pre,
  1342. .repository.file.list #file-content .code-view .lines-num ol,
  1343. .repository.file.list #file-content .code-view .lines-code ol,
  1344. .repository.file.list #file-content .code-view .lines-num .hljs,
  1345. .repository.file.list #file-content .code-view .lines-code .hljs {
  1346. background-color: white;
  1347. margin: 0;
  1348. padding: 0 !important;
  1349. }
  1350. .repository.file.list #file-content .code-view .lines-num pre li,
  1351. .repository.file.list #file-content .code-view .lines-code pre li,
  1352. .repository.file.list #file-content .code-view .lines-num ol li,
  1353. .repository.file.list #file-content .code-view .lines-code ol li,
  1354. .repository.file.list #file-content .code-view .lines-num .hljs li,
  1355. .repository.file.list #file-content .code-view .lines-code .hljs li {
  1356. display: inline-block;
  1357. width: 100%;
  1358. }
  1359. .repository.file.list #file-content .code-view .lines-num pre li.active,
  1360. .repository.file.list #file-content .code-view .lines-code pre li.active,
  1361. .repository.file.list #file-content .code-view .lines-num ol li.active,
  1362. .repository.file.list #file-content .code-view .lines-code ol li.active,
  1363. .repository.file.list #file-content .code-view .lines-num .hljs li.active,
  1364. .repository.file.list #file-content .code-view .lines-code .hljs li.active {
  1365. background: #ffffdd;
  1366. }
  1367. .repository.file.list #file-content .code-view .lines-num pre li:before,
  1368. .repository.file.list #file-content .code-view .lines-code pre li:before,
  1369. .repository.file.list #file-content .code-view .lines-num ol li:before,
  1370. .repository.file.list #file-content .code-view .lines-code ol li:before,
  1371. .repository.file.list #file-content .code-view .lines-num .hljs li:before,
  1372. .repository.file.list #file-content .code-view .lines-code .hljs li:before {
  1373. content: ' ';
  1374. }
  1375. .repository.file.list .sidebar {
  1376. padding-left: 0;
  1377. }
  1378. .repository.file.list .sidebar .octicon {
  1379. width: 16px;
  1380. }
  1381. .repository.file.editor .treepath {
  1382. width: 100%;
  1383. }
  1384. .repository.file.editor .treepath input {
  1385. vertical-align: middle;
  1386. box-shadow: rgba(0, 0, 0, 0.0745098) 0px 1px 2px inset;
  1387. width: inherit;
  1388. padding: 7px 8px;
  1389. margin-right: 5px;
  1390. }
  1391. .repository.file.editor .tabular.menu .octicon {
  1392. margin-right: 5px;
  1393. }
  1394. .repository.file.editor .commit-form-wrapper {
  1395. padding-left: 64px;
  1396. }
  1397. .repository.file.editor .commit-form-wrapper .commit-avatar {
  1398. float: left;
  1399. margin-left: -64px;
  1400. width: 3em;
  1401. height: auto;
  1402. }
  1403. .repository.file.editor .commit-form-wrapper .commit-form {
  1404. position: relative;
  1405. padding: 15px;
  1406. margin-bottom: 10px;
  1407. border: 1px solid #ddd;
  1408. border-radius: 3px;
  1409. }
  1410. .repository.file.editor .commit-form-wrapper .commit-form:before,
  1411. .repository.file.editor .commit-form-wrapper .commit-form:after {
  1412. right: 100%;
  1413. top: 20px;
  1414. border: solid transparent;
  1415. content: " ";
  1416. height: 0;
  1417. width: 0;
  1418. position: absolute;
  1419. pointer-events: none;
  1420. }
  1421. .repository.file.editor .commit-form-wrapper .commit-form:before {
  1422. border-right-color: #D4D4D5;
  1423. border-width: 9px;
  1424. margin-top: -9px;
  1425. }
  1426. .repository.file.editor .commit-form-wrapper .commit-form:after {
  1427. border-right-color: #f7f7f7;
  1428. border-width: 8px;
  1429. margin-top: -8px;
  1430. }
  1431. .repository.file.editor .commit-form-wrapper .commit-form:after {
  1432. border-right-color: #fff;
  1433. }
  1434. .repository.file.editor .commit-form-wrapper .commit-form .quick-pull-choice .branch-name {
  1435. display: inline-block;
  1436. padding: 3px 6px;
  1437. font: 12px Consolas, "Liberation Mono", Menlo, Courier, monospace;
  1438. color: rgba(0, 0, 0, 0.65);
  1439. background-color: rgba(209, 227, 237, 0.45);
  1440. border-radius: 3px;
  1441. }
  1442. .repository.file.editor .commit-form-wrapper .commit-form .quick-pull-choice .new-branch-name-input {
  1443. position: relative;
  1444. margin-left: 25px;
  1445. }
  1446. .repository.file.editor .commit-form-wrapper .commit-form .quick-pull-choice .new-branch-name-input input {
  1447. width: 240px !important;
  1448. padding-left: 26px !important;
  1449. }
  1450. .repository.file.editor .commit-form-wrapper .commit-form .quick-pull-choice .octicon-git-branch {
  1451. position: absolute;
  1452. top: 9px;
  1453. left: 10px;
  1454. color: #b0c4ce;
  1455. }
  1456. .repository.options #interval {
  1457. width: 100px!important;
  1458. min-width: 100px;
  1459. }
  1460. .repository.options .danger .item {
  1461. padding: 20px 15px;
  1462. }
  1463. .repository.options .danger .ui.divider {
  1464. margin: 0;
  1465. }
  1466. .repository.new.issue .comment.form .comment .avatar {
  1467. width: 3em;
  1468. }
  1469. .repository.new.issue .comment.form .content {
  1470. margin-left: 4em;
  1471. }
  1472. .repository.new.issue .comment.form .content:before,
  1473. .repository.new.issue .comment.form .content:after {
  1474. right: 100%;
  1475. top: 20px;
  1476. border: solid transparent;
  1477. content: " ";
  1478. height: 0;
  1479. width: 0;
  1480. position: absolute;
  1481. pointer-events: none;
  1482. }
  1483. .repository.new.issue .comment.form .content:before {
  1484. border-right-color: #D4D4D5;
  1485. border-width: 9px;
  1486. margin-top: -9px;
  1487. }
  1488. .repository.new.issue .comment.form .content:after {
  1489. border-right-color: #f7f7f7;
  1490. border-width: 8px;
  1491. margin-top: -8px;
  1492. }
  1493. .repository.new.issue .comment.form .content:after {
  1494. border-right-color: #fff;
  1495. }
  1496. .repository.new.issue .comment.form .content .markdown {
  1497. font-size: 14px;
  1498. }
  1499. .repository.new.issue .comment.form .metas {
  1500. min-width: 220px;
  1501. }
  1502. .repository.new.issue .comment.form .metas .filter.menu {
  1503. max-height: 300px;
  1504. overflow-x: auto;
  1505. }
  1506. .repository.view.issue .title {
  1507. padding-bottom: 0!important;
  1508. }
  1509. .repository.view.issue .title h1 {
  1510. font-weight: 300;
  1511. font-size: 2.3rem;
  1512. margin-bottom: 5px;
  1513. }
  1514. .repository.view.issue .title h1 .ui.input {
  1515. font-size: 0.5em;
  1516. vertical-align: top;
  1517. width: 50%;
  1518. min-width: 600px;
  1519. }
  1520. .repository.view.issue .title h1 .ui.input input {
  1521. font-size: 1.5em;
  1522. padding: 6px 10px;
  1523. }
  1524. .repository.view.issue .title .index {
  1525. font-weight: 300;
  1526. color: #aaa;
  1527. letter-spacing: -1px;
  1528. }
  1529. .repository.view.issue .title .label {
  1530. margin-right: 10px;
  1531. }
  1532. .repository.view.issue .title .edit-zone {
  1533. margin-top: 10px;
  1534. }
  1535. .repository.view.issue .pull-desc code {
  1536. color: #0166E6;
  1537. }
  1538. .repository.view.issue .pull.tabular.menu {
  1539. margin-bottom: 10px;
  1540. }
  1541. .repository.view.issue .pull.tabular.menu .octicon {
  1542. margin-right: 5px;
  1543. }
  1544. .repository.view.issue .pull.tab.segment {
  1545. border: none;
  1546. padding: 0;
  1547. padding-top: 10px;
  1548. box-shadow: none;
  1549. background-color: inherit;
  1550. }
  1551. .repository.view.issue .pull .merge.box .avatar {
  1552. margin-left: 10px;
  1553. margin-top: 10px;
  1554. }
  1555. .repository.view.issue .comment-list:before {
  1556. display: block;
  1557. content: "";
  1558. position: absolute;
  1559. margin-top: 12px;
  1560. margin-bottom: 14px;
  1561. top: 0;
  1562. bottom: 0;
  1563. left: 96px;
  1564. width: 2px;
  1565. background-color: #f3f3f3;
  1566. z-index: -1;
  1567. }
  1568. .repository.view.issue .comment-list .comment .avatar {
  1569. width: 3em;
  1570. }
  1571. .repository.view.issue .comment-list .comment .tag {
  1572. color: #767676;
  1573. margin-top: 3px;
  1574. padding: 2px 5px;
  1575. font-size: 12px;
  1576. border: 1px solid rgba(0, 0, 0, 0.1);
  1577. border-radius: 3px;
  1578. }
  1579. .repository.view.issue .comment-list .comment .actions .item {
  1580. float: left;
  1581. }
  1582. .repository.view.issue .comment-list .comment .actions .item.tag {
  1583. margin-right: 5px;
  1584. }
  1585. .repository.view.issue .comment-list .comment .actions .item.action {
  1586. margin-top: 6px;
  1587. margin-left: 10px;
  1588. }
  1589. .repository.view.issue .comment-list .comment .content {
  1590. margin-left: 4em;
  1591. }
  1592. .repository.view.issue .comment-list .comment .content .header {
  1593. font-weight: normal;
  1594. padding: auto 15px;
  1595. position: relative;
  1596. color: #767676;
  1597. background-color: #f7f7f7;
  1598. border-bottom: 1px solid #eee;
  1599. border-top-left-radius: 3px;
  1600. border-top-right-radius: 3px;
  1601. }
  1602. .repository.view.issue .comment-list .comment .content .header:before,
  1603. .repository.view.issue .comment-list .comment .content .header:after {
  1604. right: 100%;
  1605. top: 20px;
  1606. border: solid transparent;
  1607. content: " ";
  1608. height: 0;
  1609. width: 0;
  1610. position: absolute;
  1611. pointer-events: none;
  1612. }
  1613. .repository.view.issue .comment-list .comment .content .header:before {
  1614. border-right-color: #D4D4D5;
  1615. border-width: 9px;
  1616. margin-top: -9px;
  1617. }
  1618. .repository.view.issue .comment-list .comment .content .header:after {
  1619. border-right-color: #f7f7f7;
  1620. border-width: 8px;
  1621. margin-top: -8px;
  1622. }
  1623. .repository.view.issue .comment-list .comment .content .header .text {
  1624. max-width: 78%;
  1625. padding-top: 10px;
  1626. padding-bottom: 10px;
  1627. }
  1628. .repository.view.issue .comment-list .comment .content .markdown {
  1629. font-size: 14px;
  1630. }
  1631. .repository.view.issue .comment-list .comment .content .no-content {
  1632. color: #767676;
  1633. font-style: italic;
  1634. }
  1635. .repository.view.issue .comment-list .comment .content > .bottom.segment {
  1636. background: #f3f4f5;
  1637. }
  1638. .repository.view.issue .comment-list .comment .content > .bottom.segment .ui.images::after {
  1639. clear: both;
  1640. content: ' ';
  1641. display: block;
  1642. }
  1643. .repository.view.issue .comment-list .comment .content > .bottom.segment a {
  1644. display: block;
  1645. float: left;
  1646. margin: 5px;
  1647. padding: 5px;
  1648. height: 150px;
  1649. border: solid 1px #eee;
  1650. border-radius: 3px;
  1651. max-width: 150px;
  1652. background-color: #fff;
  1653. }
  1654. .repository.view.issue .comment-list .comment .content > .bottom.segment a:before {
  1655. content: ' ';
  1656. display: inline-block;
  1657. height: 100%;
  1658. vertical-align: middle;
  1659. }
  1660. .repository.view.issue .comment-list .comment .content > .bottom.segment .ui.image {
  1661. max-height: 100%;
  1662. width: auto;
  1663. margin: 0;
  1664. vertical-align: middle;
  1665. }
  1666. .repository.view.issue .comment-list .comment .content > .bottom.segment span.ui.image {
  1667. font-size: 8vw;
  1668. color: #000000;
  1669. }
  1670. .repository.view.issue .comment-list .comment .content > .bottom.segment span.ui.image:hover {
  1671. color: #000000;
  1672. }
  1673. .repository.view.issue .comment-list .comment .ui.form .field:first-child {
  1674. clear: none;
  1675. }
  1676. .repository.view.issue .comment-list .comment .ui.form .tab.segment {
  1677. border: none;
  1678. padding: 0;
  1679. padding-top: 10px;
  1680. }
  1681. .repository.view.issue .comment-list .comment .ui.form textarea {
  1682. height: 200px;
  1683. font-family: "Consolas", monospace;
  1684. }
  1685. .repository.view.issue .comment-list .comment .edit.buttons {
  1686. margin-top: 10px;
  1687. }
  1688. .repository.view.issue .comment-list .event {
  1689. position: relative;
  1690. margin: 15px 0 15px 79px;
  1691. padding-left: 25px;
  1692. }
  1693. .repository.view.issue .comment-list .event .octicon {
  1694. width: 30px;
  1695. float: left;
  1696. text-align: center;
  1697. }
  1698. .repository.view.issue .comment-list .event .octicon.octicon-circle-slash {
  1699. margin-top: 5px;
  1700. margin-left: -34.5px;
  1701. font-size: 20px;
  1702. color: #bd2c00;
  1703. }
  1704. .repository.view.issue .comment-list .event .octicon.octicon-primitive-dot {
  1705. margin-left: -28.5px;
  1706. margin-right: -1px;
  1707. font-size: 30px;
  1708. color: #6cc644;
  1709. }
  1710. .repository.view.issue .comment-list .event .octicon.octicon-bookmark {
  1711. margin-top: 3px;
  1712. margin-left: -31px;
  1713. margin-right: -1px;
  1714. font-size: 25px;
  1715. }
  1716. .repository.view.issue .comment-list .event .detail {
  1717. font-size: 0.9rem;
  1718. margin-top: 5px;
  1719. margin-left: 35px;
  1720. }
  1721. .repository.view.issue .comment-list .event .detail .octicon.octicon-git-commit {
  1722. margin-top: 2px;
  1723. }
  1724. .repository.view.issue .ui.segment.metas {
  1725. margin-top: -3px;
  1726. }
  1727. .repository.view.issue .ui.participants img {
  1728. margin-top: 5px;
  1729. margin-right: 5px;
  1730. }
  1731. .repository .comment.form .ui.comments {
  1732. margin-top: -12px;
  1733. max-width: 100%;
  1734. }
  1735. .repository .comment.form .content .field:first-child {
  1736. clear: none;
  1737. }
  1738. .repository .comment.form .content .form:before,
  1739. .repository .comment.form .content .form:after {
  1740. right: 100%;
  1741. top: 20px;
  1742. border: solid transparent;
  1743. content: " ";
  1744. height: 0;
  1745. width: 0;
  1746. position: absolute;
  1747. pointer-events: none;
  1748. }
  1749. .repository .comment.form .content .form:before {
  1750. border-right-color: #D4D4D5;
  1751. border-width: 9px;
  1752. margin-top: -9px;
  1753. }
  1754. .repository .comment.form .content .form:after {
  1755. border-right-color: #f7f7f7;
  1756. border-width: 8px;
  1757. margin-top: -8px;
  1758. }
  1759. .repository .comment.form .content .form:after {
  1760. border-right-color: #fff;
  1761. }
  1762. .repository .comment.form .content .tab.segment {
  1763. border: none;
  1764. padding: 0;
  1765. padding-top: 10px;
  1766. }
  1767. .repository .comment.form .content textarea {
  1768. height: 200px;
  1769. font-family: "Consolas", monospace;
  1770. }
  1771. .repository .label.list {
  1772. list-style: none;
  1773. padding-top: 15px;
  1774. }
  1775. .repository .label.list .item {
  1776. padding-top: 10px;
  1777. padding-bottom: 10px;
  1778. border-bottom: 1px dashed #AAA;
  1779. }
  1780. .repository .label.list .item a {
  1781. font-size: 15px;
  1782. padding-top: 5px;
  1783. padding-right: 10px;
  1784. color: #666;
  1785. }
  1786. .repository .label.list .item a:hover {
  1787. color: #000;
  1788. }
  1789. .repository .label.list .item a.open-issues {
  1790. margin-right: 30px;
  1791. }
  1792. .repository .label.list .item .ui.label {
  1793. font-size: 1em;
  1794. }
  1795. .repository .milestone.list {
  1796. list-style: none;
  1797. padding-top: 15px;
  1798. }
  1799. .repository .milestone.list > .item {
  1800. padding-top: 10px;
  1801. padding-bottom: 10px;
  1802. border-bottom: 1px dashed #AAA;
  1803. }
  1804. .repository .milestone.list > .item > a {
  1805. padding-top: 5px;
  1806. padding-right: 10px;
  1807. color: #000;
  1808. }
  1809. .repository .milestone.list > .item > a:hover {
  1810. color: #4078c0;
  1811. }
  1812. .repository .milestone.list > .item .ui.progress {
  1813. width: 40%;
  1814. padding: 0;
  1815. border: 0;
  1816. margin: 0;
  1817. }
  1818. .repository .milestone.list > .item .ui.progress .bar {
  1819. height: 20px;
  1820. }
  1821. .repository .milestone.list > .item .meta {
  1822. color: #999;
  1823. padding-top: 5px;
  1824. }
  1825. .repository .milestone.list > .item .meta .issue-stats .octicon {
  1826. padding-left: 5px;
  1827. }
  1828. .repository .milestone.list > .item .meta .overdue {
  1829. color: red;
  1830. }
  1831. .repository .milestone.list > .item .operate {
  1832. margin-top: -15px;
  1833. }
  1834. .repository .milestone.list > .item .operate > a {
  1835. font-size: 15px;
  1836. padding-top: 5px;
  1837. padding-right: 10px;
  1838. color: #666;
  1839. }
  1840. .repository .milestone.list > .item .operate > a:hover {
  1841. color: #000;
  1842. }
  1843. .repository .milestone.list > .item .content {
  1844. padding-top: 10px;
  1845. }
  1846. .repository.new.milestone textarea {
  1847. height: 200px;
  1848. }
  1849. .repository.new.milestone #deadline {
  1850. width: 150px;
  1851. }
  1852. .repository.compare.pull .choose.branch .octicon {
  1853. padding-right: 10px;
  1854. }
  1855. .repository.compare.pull .comment.form .content:before,
  1856. .repository.compare.pull .comment.form .content:after {
  1857. right: 100%;
  1858. top: 20px;
  1859. border: solid transparent;
  1860. content: " ";
  1861. height: 0;
  1862. width: 0;
  1863. position: absolute;
  1864. pointer-events: none;
  1865. }
  1866. .repository.compare.pull .comment.form .content:before {
  1867. border-right-color: #D4D4D5;
  1868. border-width: 9px;
  1869. margin-top: -9px;
  1870. }
  1871. .repository.compare.pull .comment.form .content:after {
  1872. border-right-color: #f7f7f7;
  1873. border-width: 8px;
  1874. margin-top: -8px;
  1875. }
  1876. .repository.compare.pull .comment.form .content:after {
  1877. border-right-color: #fff;
  1878. }
  1879. .repository .filter.dropdown .menu {
  1880. margin-top: 1px!important;
  1881. }
  1882. .repository.commits .header .ui.right .search input {
  1883. font-weight: normal;
  1884. padding: 5px 10px;
  1885. }
  1886. .repository #commits-table thead th:first-of-type {
  1887. padding-left: 15px;
  1888. }
  1889. .repository #commits-table thead .sha {
  1890. font-size: 13px;
  1891. padding: 6px 40px 4px 35px;
  1892. }
  1893. .repository #commits-table.ui.basic.striped.table tbody tr:nth-child(2n) {
  1894. background-color: rgba(0, 0, 0, 0.02) !important;
  1895. }
  1896. .repository .diff-detail-box {
  1897. margin: 15px 0;
  1898. line-height: 30px;
  1899. }
  1900. .repository .diff-detail-box ol {
  1901. clear: both;
  1902. padding-left: 0;
  1903. margin-top: 5px;
  1904. margin-bottom: 28px;
  1905. }
  1906. .repository .diff-detail-box ol li {
  1907. list-style: none;
  1908. padding-bottom: 4px;
  1909. margin-bottom: 4px;
  1910. border-bottom: 1px dashed #DDD;
  1911. padding-left: 6px;
  1912. }
  1913. .repository .diff-detail-box span.status {
  1914. display: inline-block;
  1915. width: 12px;
  1916. height: 12px;
  1917. margin-right: 8px;
  1918. vertical-align: middle;
  1919. }
  1920. .repository .diff-detail-box span.status.modify {
  1921. background-color: #f0db88;
  1922. }
  1923. .repository .diff-detail-box span.status.add {
  1924. background-color: #b4e2b4;
  1925. }
  1926. .repository .diff-detail-box span.status.del {
  1927. background-color: #e9aeae;
  1928. }
  1929. .repository .diff-detail-box span.status.rename {
  1930. background-color: #dad8ff;
  1931. }
  1932. .repository .diff-box .count {
  1933. margin-right: 12px;
  1934. font-size: 13px;
  1935. }
  1936. .repository .diff-box .count .bar {
  1937. background-color: #bd2c00;
  1938. height: 12px;
  1939. width: 40px;
  1940. display: inline-block;
  1941. margin: 2px 4px 0 4px;
  1942. vertical-align: text-top;
  1943. }
  1944. .repository .diff-box .count .bar .add {
  1945. background-color: #55a532;
  1946. height: 12px;
  1947. }
  1948. .repository .diff-box .file {
  1949. color: #888;
  1950. }
  1951. .repository .diff-file-box .header {
  1952. background-color: #f7f7f7;
  1953. }
  1954. .repository .diff-file-box .file-body.file-code .lines-num {
  1955. text-align: right;
  1956. color: #A7A7A7;
  1957. background: #fafafa;
  1958. width: 1%;
  1959. }
  1960. .repository .diff-file-box .file-body.file-code .lines-num span.fold {
  1961. display: block;
  1962. text-align: center;
  1963. }
  1964. .repository .diff-file-box .file-body.file-code .lines-num-old {
  1965. border-right: 1px solid #DDD;
  1966. }
  1967. .repository .diff-file-box .code-diff {
  1968. font-size: 12px;
  1969. }
  1970. .repository .diff-file-box .code-diff td {
  1971. padding: 0;
  1972. padding-left: 10px;
  1973. border-top: none;
  1974. }
  1975. .repository .diff-file-box .code-diff pre {
  1976. margin: 0;
  1977. }
  1978. .repository .diff-file-box .code-diff .lines-num {
  1979. border-right: 1px solid #d4d4d5;
  1980. padding: 0 5px;
  1981. }
  1982. .repository .diff-file-box .code-diff tbody tr.tag-code td,
  1983. .repository .diff-file-box .code-diff tbody tr.tag-code pre {
  1984. background-color: #F0F0F0 !important;
  1985. border-color: #D2CECE!important;
  1986. padding-top: 4px;
  1987. padding-bottom: 4px;
  1988. }
  1989. .repository .diff-file-box .code-diff tbody tr.tag-code td.halfwidth {
  1990. width: 50%;
  1991. }
  1992. .repository .diff-file-box .code-diff tbody tr.del-code td,
  1993. .repository .diff-file-box .code-diff tbody tr.del-code pre {
  1994. background-color: #ffe0e0 !important;
  1995. border-color: #f1c0c0 !important;
  1996. }
  1997. .repository .diff-file-box .code-diff tbody tr.del-code td.halfwidth {
  1998. width: 50%;
  1999. }
  2000. .repository .diff-file-box .code-diff tbody tr.add-code td,
  2001. .repository .diff-file-box .code-diff tbody tr.add-code pre {
  2002. background-color: #d6fcd6 !important;
  2003. border-color: #c1e9c1 !important;
  2004. }
  2005. .repository .diff-file-box .code-diff tbody tr.add-code td.halfwidth {
  2006. width: 50%;
  2007. }
  2008. .repository .diff-file-box .code-diff tbody tr .removed-code {
  2009. background-color: #ff9999;
  2010. }
  2011. .repository .diff-file-box .code-diff tbody tr .added-code {
  2012. background-color: #99ff99;
  2013. }
  2014. .repository .diff-file-box.file-content img {
  2015. max-width: 100%;
  2016. padding: 5px 5px 0 5px;
  2017. }
  2018. .repository .code-view {
  2019. overflow: auto;
  2020. overflow-x: auto;
  2021. overflow-y: hidden;
  2022. }
  2023. .repository.quickstart .guide .item {
  2024. padding: 1em;
  2025. }
  2026. .repository.quickstart .guide .item small {
  2027. font-weight: normal;
  2028. }
  2029. .repository.quickstart .guide .clone.button:first-child {
  2030. border-radius: .28571429rem 0 0 .28571429rem;
  2031. }
  2032. .repository.quickstart .guide .ui.action.small.input {
  2033. width: 100%;
  2034. }
  2035. .repository.quickstart .guide #repo-clone-url {
  2036. border-radius: 0;
  2037. padding: 5px 10px;
  2038. font-size: 1.2em;
  2039. }
  2040. .repository.release #release-list {
  2041. border-top: 1px solid #DDD;
  2042. margin-top: 20px;
  2043. padding-top: 15px;
  2044. }
  2045. .repository.release #release-list > li {
  2046. list-style: none;
  2047. }
  2048. .repository.release #release-list > li .meta,
  2049. .repository.release #release-list > li .detail {
  2050. padding-top: 30px;
  2051. padding-bottom: 40px;
  2052. }
  2053. .repository.release #release-list > li .meta {
  2054. text-align: right;
  2055. position: relative;
  2056. }
  2057. .repository.release #release-list > li .meta .tag:not(.icon) {
  2058. display: block;
  2059. margin-top: 15px;
  2060. }
  2061. .repository.release #release-list > li .meta .commit {
  2062. display: block;
  2063. margin-top: 10px;
  2064. }
  2065. .repository.release #release-list > li .detail {
  2066. border-left: 1px solid #DDD;
  2067. }
  2068. .repository.release #release-list > li .detail .author img {
  2069. margin-bottom: -3px;
  2070. }
  2071. .repository.release #release-list > li .detail .download {
  2072. margin-top: 20px;
  2073. }
  2074. .repository.release #release-list > li .detail .download > a .octicon {
  2075. margin-left: 5px;
  2076. margin-right: 5px;
  2077. }
  2078. .repository.release #release-list > li .detail .download .list {
  2079. padding-left: 0;
  2080. border-top: 1px solid #eee;
  2081. }
  2082. .repository.release #release-list > li .detail .download .list li {
  2083. list-style: none;
  2084. display: block;
  2085. padding-top: 8px;
  2086. padding-bottom: 8px;
  2087. border-bottom: 1px solid #eee;
  2088. }
  2089. .repository.release #release-list > li .detail .dot {
  2090. width: 9px;
  2091. height: 9px;
  2092. background-color: #ccc;
  2093. z-index: 999;
  2094. position: absolute;
  2095. display: block;
  2096. left: -5px;
  2097. top: 40px;
  2098. border-radius: 6px;
  2099. border: 1px solid #FFF;
  2100. }
  2101. .repository.new.release .target {
  2102. min-width: 500px;
  2103. }
  2104. .repository.new.release .target #tag-name {
  2105. margin-top: -4px;
  2106. }
  2107. .repository.new.release .target .at {
  2108. margin-left: -5px;
  2109. margin-right: 5px;
  2110. }
  2111. .repository.new.release .target .dropdown.icon {
  2112. margin: 0;
  2113. padding-top: 3px;
  2114. }
  2115. .repository.new.release .target .selection.dropdown {
  2116. padding-top: 10px;
  2117. padding-bottom: 10px;
  2118. }
  2119. .repository.new.release .prerelease.field {
  2120. margin-bottom: 0;
  2121. }
  2122. .repository.forks .list {
  2123. margin-top: 0;
  2124. }
  2125. .repository.forks .list .item {
  2126. padding-top: 10px;
  2127. padding-bottom: 10px;
  2128. border-bottom: 1px solid #DDD;
  2129. }
  2130. .repository.forks .list .item .ui.avatar {
  2131. float: left;
  2132. margin-right: 5px;
  2133. }
  2134. .repository.forks .list .item .link {
  2135. padding-top: 5px;
  2136. }
  2137. .repository.wiki.start .ui.segment {
  2138. padding-top: 70px;
  2139. padding-bottom: 100px;
  2140. }
  2141. .repository.wiki.start .ui.segment .mega-octicon {
  2142. font-size: 48px;
  2143. }
  2144. .repository.wiki.new .CodeMirror .CodeMirror-code {
  2145. font-family: "Consolas", monospace;
  2146. }
  2147. .repository.wiki.new .CodeMirror .CodeMirror-code .cm-comment {
  2148. background: inherit;
  2149. }
  2150. .repository.wiki.new .editor-preview {
  2151. background-color: white;
  2152. }
  2153. .repository.wiki.view .choose.page {
  2154. margin-top: -5px;
  2155. }
  2156. .repository.wiki.view .ui.sub.header {
  2157. text-transform: none;
  2158. }
  2159. .repository.wiki.view .markdown {
  2160. padding: 15px 30px;
  2161. }
  2162. .repository.wiki.view .markdown h1:first-of-type,
  2163. .repository.wiki.view .markdown h2:first-of-type,
  2164. .repository.wiki.view .markdown h3:first-of-type,
  2165. .repository.wiki.view .markdown h4:first-of-type,
  2166. .repository.wiki.view .markdown h5:first-of-type,
  2167. .repository.wiki.view .markdown h6:first-of-type {
  2168. margin-top: 0;
  2169. }
  2170. .repository.settings.collaboration .collaborator.list {
  2171. padding: 0;
  2172. }
  2173. .repository.settings.collaboration .collaborator.list > .item {
  2174. margin: 0;
  2175. line-height: 2em;
  2176. }
  2177. .repository.settings.collaboration .collaborator.list > .item:not(:last-child) {
  2178. border-bottom: 1px solid #DDD;
  2179. }
  2180. .repository.settings.collaboration #repo-collab-form #search-user-box .results {
  2181. left: 7px;
  2182. }
  2183. .repository.settings.collaboration #repo-collab-form .ui.button {
  2184. margin-left: 5px;
  2185. margin-top: -3px;
  2186. }
  2187. .repository.settings.webhook .events .column {
  2188. padding-bottom: 0;
  2189. }
  2190. .repository.settings.webhook .events .help {
  2191. font-size: 13px;
  2192. margin-left: 26px;
  2193. padding-top: 0;
  2194. }
  2195. .user-cards .list {
  2196. padding: 0;
  2197. }
  2198. .user-cards .list .item {
  2199. list-style: none;
  2200. width: 32%;
  2201. margin: 10px 10px 10px 0;
  2202. padding-bottom: 14px;
  2203. float: left;
  2204. }
  2205. .user-cards .list .item .avatar {
  2206. width: 48px;
  2207. height: 48px;
  2208. float: left;
  2209. display: block;
  2210. margin-right: 10px;
  2211. }
  2212. .user-cards .list .item .name {
  2213. margin-top: 0;
  2214. margin-bottom: 0;
  2215. font-weight: normal;
  2216. }
  2217. .user-cards .list .item .meta {
  2218. margin-top: 5px;
  2219. }
  2220. #search-repo-box .results,
  2221. #search-user-box .results {
  2222. padding: 0;
  2223. position: absolute;
  2224. }
  2225. #search-repo-box .results .item,
  2226. #search-user-box .results .item {
  2227. padding: 10px 15px;
  2228. border-bottom: 1px solid #DDD;
  2229. cursor: pointer;
  2230. }
  2231. #search-repo-box .results .item:hover,
  2232. #search-user-box .results .item:hover {
  2233. background: rgba(0, 0, 0, 0.05) !important;
  2234. color: rgba(0, 0, 0, 0.95) !important;
  2235. }
  2236. #search-repo-box .results .item img,
  2237. #search-user-box .results .item img {
  2238. margin-right: 8px;
  2239. }
  2240. .issue.list {
  2241. list-style: none;
  2242. padding-top: 15px;
  2243. }
  2244. .issue.list > .item {
  2245. padding-top: 15px;
  2246. padding-bottom: 10px;
  2247. border-bottom: 1px dashed #AAA;
  2248. }
  2249. .issue.list > .item .title {
  2250. color: #444;
  2251. font-size: 15px;
  2252. font-weight: bold;
  2253. margin: 0 6px;
  2254. }
  2255. .issue.list > .item .title:hover {
  2256. color: #000;
  2257. }
  2258. .issue.list > .item .comment {
  2259. padding-right: 10px;
  2260. color: #666;
  2261. }
  2262. .issue.list > .item .desc {
  2263. padding-top: 5px;
  2264. color: #999;
  2265. }
  2266. .issue.list > .item .desc a.milestone {
  2267. padding-left: 5px;
  2268. color: #999!important;
  2269. }
  2270. .issue.list > .item .desc a.milestone:hover {
  2271. color: #000!important;
  2272. }
  2273. .issue.list > .item .desc .assignee {
  2274. margin-top: -5px;
  2275. margin-right: 5px;
  2276. }
  2277. .page.buttons {
  2278. padding-top: 15px;
  2279. }
  2280. .ui.form .dropzone {
  2281. width: 100%;
  2282. margin-bottom: 10px;
  2283. border: 2px dashed #0087F7;
  2284. box-shadow: none!important;
  2285. }
  2286. .ui.form .dropzone .dz-error-message {
  2287. top: 140px;
  2288. }
  2289. .settings .content {
  2290. margin-top: 2px;
  2291. }
  2292. .settings .content > .header,
  2293. .settings .content .segment {
  2294. box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
  2295. }
  2296. .settings .key.list .item:not(:first-child) {
  2297. border-top: 1px solid #eaeaea;
  2298. }
  2299. .settings .key.list .ssh-key-state-indicator {
  2300. float: left;
  2301. color: gray;
  2302. padding-left: 10px;
  2303. padding-top: 10px;
  2304. }
  2305. .settings .key.list .ssh-key-state-indicator.active {
  2306. color: #6cc644;
  2307. }
  2308. .settings .key.list .meta {
  2309. padding-top: 5px;
  2310. }
  2311. .settings .key.list .print {
  2312. color: #767676;
  2313. }
  2314. .settings .key.list .activity {
  2315. color: #666;
  2316. }
  2317. .settings .hook.list > .item:not(:first-child) {
  2318. border-top: 1px solid #eaeaea;
  2319. }
  2320. .settings .hook.list .item {
  2321. padding: 10px 20px;
  2322. }
  2323. .settings .hook.list .item .octicon,
  2324. .settings .hook.list .item .fa {
  2325. width: 20px;
  2326. text-align: center;
  2327. }
  2328. .settings .hook.list .item a {
  2329. /* These are technically the same, but use both */
  2330. overflow-wrap: break-word;
  2331. word-wrap: break-word;
  2332. -ms-word-break: break-all;
  2333. /* This is the dangerous one in WebKit, as it breaks things wherever */
  2334. word-break: break-all;
  2335. /* Instead use this non-standard one: */
  2336. word-break: break-word;
  2337. /* Adds a hyphen where the word breaks, if supported (No Blink) */
  2338. -ms-hyphens: auto;
  2339. -moz-hyphens: auto;
  2340. -webkit-hyphens: auto;
  2341. hyphens: auto;
  2342. }
  2343. .settings .hook.history.list .item {
  2344. padding-left: 13px;
  2345. }
  2346. .settings .hook.history.list .item .meta .ui.right {
  2347. margin-top: 5px;
  2348. }
  2349. .settings .hook.history.list .item .meta .ui.right .time {
  2350. font-size: 12px;
  2351. }
  2352. .settings .hook.history.list .item .info {
  2353. margin-top: 10px;
  2354. }
  2355. .settings .hook.history.list .item .info .tabular.menu .item {
  2356. font-weight: 500;
  2357. }
  2358. .settings .hook.history.list .item .info .tab.segment {
  2359. border: none;
  2360. padding: 0;
  2361. padding-top: 10px;
  2362. box-shadow: none;
  2363. }
  2364. .settings .hook.history.list .item .info .tab.segment > * {
  2365. color: #666;
  2366. }
  2367. .settings .hook.history.list .item .info .tab.segment pre {
  2368. word-wrap: break-word;
  2369. }
  2370. .settings .hook.history.list .item .info .tab.segment pre .hljs {
  2371. padding: 0;
  2372. background-color: inherit;
  2373. }
  2374. .ui.vertical.menu .header.item {
  2375. font-size: 1.1em;
  2376. background: #f0f0f0;
  2377. }
  2378. .edit-label.modal .form .column,
  2379. .new-label.segment .form .column {
  2380. padding-right: 0;
  2381. }
  2382. .edit-label.modal .form .buttons,
  2383. .new-label.segment .form .buttons {
  2384. margin-left: auto;
  2385. padding-top: 15px;
  2386. }
  2387. .edit-label.modal .form .color.picker.column,
  2388. .new-label.segment .form .color.picker.column {
  2389. width: auto;
  2390. }
  2391. .edit-label.modal .form .color.picker.column .color-picker,
  2392. .new-label.segment .form .color.picker.column .color-picker {
  2393. height: 35px;
  2394. width: auto;
  2395. padding-left: 30px;
  2396. }
  2397. .edit-label.modal .form .minicolors-swatch.minicolors-sprite,
  2398. .new-label.segment .form .minicolors-swatch.minicolors-sprite {
  2399. top: 10px;
  2400. left: 10px;
  2401. width: 15px;
  2402. height: 15px;
  2403. }
  2404. .edit-label.modal .form .precolors,
  2405. .new-label.segment .form .precolors {
  2406. padding-left: 0;
  2407. padding-right: 0;
  2408. margin: 3px 10px auto 10px;
  2409. width: 120px;
  2410. }
  2411. .edit-label.modal .form .precolors .color,
  2412. .new-label.segment .form .precolors .color {
  2413. float: left;
  2414. width: 15px;
  2415. height: 15px;
  2416. }
  2417. #avatar-arrow:before,
  2418. #avatar-arrow:after {
  2419. right: 100%;
  2420. top: 20px;
  2421. border: solid transparent;
  2422. content: " ";
  2423. height: 0;
  2424. width: 0;
  2425. position: absolute;
  2426. pointer-events: none;
  2427. }
  2428. #avatar-arrow:before {
  2429. border-right-color: #D4D4D5;
  2430. border-width: 9px;
  2431. margin-top: -9px;
  2432. }
  2433. #avatar-arrow:after {
  2434. border-right-color: #f7f7f7;
  2435. border-width: 8px;
  2436. margin-top: -8px;
  2437. }
  2438. #transfer-repo-modal .ui.message,
  2439. #delete-repo-modal .ui.message {
  2440. width: 100%!important;
  2441. }
  2442. .tab-size-1 {
  2443. tab-size: 1 !important;
  2444. -moz-tab-size: 1 !important;
  2445. }
  2446. .tab-size-2 {
  2447. tab-size: 2 !important;
  2448. -moz-tab-size: 2 !important;
  2449. }
  2450. .tab-size-3 {
  2451. tab-size: 3 !important;
  2452. -moz-tab-size: 3 !important;
  2453. }
  2454. .tab-size-4 {
  2455. tab-size: 4 !important;
  2456. -moz-tab-size: 4 !important;
  2457. }
  2458. .tab-size-5 {
  2459. tab-size: 5 !important;
  2460. -moz-tab-size: 5 !important;
  2461. }
  2462. .tab-size-6 {
  2463. tab-size: 6 !important;
  2464. -moz-tab-size: 6 !important;
  2465. }
  2466. .tab-size-7 {
  2467. tab-size: 7 !important;
  2468. -moz-tab-size: 7 !important;
  2469. }
  2470. .tab-size-8 {
  2471. tab-size: 8 !important;
  2472. -moz-tab-size: 8 !important;
  2473. }
  2474. .tab-size-9 {
  2475. tab-size: 9 !important;
  2476. -moz-tab-size: 9 !important;
  2477. }
  2478. .tab-size-10 {
  2479. tab-size: 10 !important;
  2480. -moz-tab-size: 10 !important;
  2481. }
  2482. .tab-size-11 {
  2483. tab-size: 11 !important;
  2484. -moz-tab-size: 11 !important;
  2485. }
  2486. .tab-size-12 {
  2487. tab-size: 12 !important;
  2488. -moz-tab-size: 12 !important;
  2489. }
  2490. .tab-size-13 {
  2491. tab-size: 13 !important;
  2492. -moz-tab-size: 13 !important;
  2493. }
  2494. .tab-size-14 {
  2495. tab-size: 14 !important;
  2496. -moz-tab-size: 14 !important;
  2497. }
  2498. .tab-size-15 {
  2499. tab-size: 15 !important;
  2500. -moz-tab-size: 15 !important;
  2501. }
  2502. .tab-size-16 {
  2503. tab-size: 16 !important;
  2504. -moz-tab-size: 16 !important;
  2505. }
  2506. .CodeMirror {
  2507. font: 14px Consolas, "Liberation Mono", Menlo, Courier, monospace;
  2508. }
  2509. .CodeMirror.cm-s-default {
  2510. border-radius: 3px;
  2511. padding: 0 !important;
  2512. }
  2513. .CodeMirror .cm-comment {
  2514. background: inherit !important;
  2515. }
  2516. .organization {
  2517. padding-top: 15px;
  2518. padding-bottom: 80px;
  2519. }
  2520. .organization .head .ui.header .text {
  2521. vertical-align: middle;
  2522. font-size: 1.6rem;
  2523. margin-left: 15px;
  2524. }
  2525. .organization .head .ui.header .ui.right {
  2526. margin-top: 5px;
  2527. }
  2528. .organization.new.org form {
  2529. margin: auto;
  2530. width: 800px!important;
  2531. }
  2532. .organization.new.org form .ui.message {
  2533. text-align: center;
  2534. }
  2535. .organization.new.org form .header {
  2536. padding-left: 280px !important;
  2537. }
  2538. .organization.new.org form .inline.field > label {
  2539. text-align: right;
  2540. width: 250px !important;
  2541. word-wrap: break-word;
  2542. }
  2543. .organization.new.org form .help {
  2544. margin-left: 265px !important;
  2545. }
  2546. .organization.new.org form .optional .title {
  2547. margin-left: 250px !important;
  2548. }
  2549. .organization.new.org form input,
  2550. .organization.new.org form textarea {
  2551. width: 50%!important;
  2552. }
  2553. .organization.new.org form .header {
  2554. padding-left: 0 !important;
  2555. text-align: center;
  2556. }
  2557. .organization.options input {
  2558. min-width: 300px;
  2559. }
  2560. .organization.profile #org-avatar {
  2561. width: 100px;
  2562. height: 100px;
  2563. margin-right: 15px;
  2564. }
  2565. .organization.profile #org-info .ui.header {
  2566. font-size: 36px;
  2567. margin-bottom: 0;
  2568. }
  2569. .organization.profile #org-info .desc {
  2570. font-size: 16px;
  2571. margin-bottom: 10px;
  2572. }
  2573. .organization.profile #org-info .meta .item {
  2574. display: inline-block;
  2575. margin-right: 10px;
  2576. }
  2577. .organization.profile #org-info .meta .item .icon {
  2578. margin-right: 5px;
  2579. }
  2580. .organization.profile .ui.top.header .ui.right {
  2581. margin-top: 0;
  2582. }
  2583. .organization.profile .teams .item {
  2584. padding: 10px 15px;
  2585. }
  2586. .organization.teams .members .ui.avatar,
  2587. .organization.profile .members .ui.avatar {
  2588. width: 48px;
  2589. height: 48px;
  2590. margin-right: 5px;
  2591. }
  2592. .organization.invite #invite-box {
  2593. margin: auto;
  2594. margin-top: 50px;
  2595. width: 500px !important;
  2596. }
  2597. .organization.invite #invite-box #search-user-box input {
  2598. margin-left: 0;
  2599. width: 300px;
  2600. }
  2601. .organization.invite #invite-box .ui.button {
  2602. margin-left: 5px;
  2603. margin-top: -3px;
  2604. }
  2605. .organization.members .list .item {
  2606. margin-left: 0;
  2607. margin-right: 0;
  2608. border-bottom: 1px solid #eee;
  2609. }
  2610. .organization.members .list .item .ui.avatar {
  2611. width: 48px;
  2612. height: 48px;
  2613. }
  2614. .organization.members .list .item .meta {
  2615. line-height: 24px;
  2616. }
  2617. .organization.teams .detail .item {
  2618. padding: 10px 15px;
  2619. }
  2620. .organization.teams .detail .item:not(:last-child) {
  2621. border-bottom: 1px solid #eee;
  2622. }
  2623. .organization.teams .repositories .item,
  2624. .organization.teams .members .item {
  2625. padding: 10px 20px;
  2626. line-height: 32px;
  2627. }
  2628. .organization.teams .repositories .item:not(:last-child),
  2629. .organization.teams .members .item:not(:last-child) {
  2630. border-bottom: 1px solid #DDD;
  2631. }
  2632. .organization.teams .repositories .item .button,
  2633. .organization.teams .members .item .button {
  2634. padding: 9px 10px;
  2635. }
  2636. .organization.teams #add-repo-form input,
  2637. .organization.teams #add-member-form input {
  2638. margin-left: 0;
  2639. }
  2640. .organization.teams #add-repo-form .ui.button,
  2641. .organization.teams #add-member-form .ui.button {
  2642. margin-left: 5px;
  2643. margin-top: -3px;
  2644. }
  2645. .user:not(.icon) {
  2646. padding-top: 15px;
  2647. padding-bottom: 80px;
  2648. }
  2649. .user.settings .list .item.ui.grid {
  2650. margin-top: 15px;
  2651. }
  2652. .user.settings .email.list .item:not(:first-child) {
  2653. border-top: 1px solid #eaeaea;
  2654. height: 50px;
  2655. }
  2656. .user.settings .email.list .item:not(:first-child) .button {
  2657. margin-top: -10px;
  2658. }
  2659. .user.profile .ui.card .username {
  2660. display: block;
  2661. }
  2662. .user.profile .ui.card .extra.content {
  2663. padding: 0;
  2664. }
  2665. .user.profile .ui.card .extra.content ul {
  2666. margin: 0;
  2667. padding: 0;
  2668. }
  2669. .user.profile .ui.card .extra.content ul li {
  2670. padding: 10px;
  2671. list-style: none;
  2672. }
  2673. .user.profile .ui.card .extra.content ul li:not(:last-child) {
  2674. border-bottom: 1px solid #eaeaea;
  2675. }
  2676. .user.profile .ui.card .extra.content ul li .octicon {
  2677. margin-left: 1px;
  2678. margin-right: 5px;
  2679. }
  2680. .user.profile .ui.card .extra.content ul li.follow .ui.button {
  2681. width: 100%;
  2682. }
  2683. .user.profile .ui.repository.list {
  2684. margin-top: 25px;
  2685. }
  2686. .user.followers .header.name {
  2687. font-size: 20px;
  2688. line-height: 24px;
  2689. vertical-align: middle;
  2690. }
  2691. .user.followers .follow .ui.button {
  2692. padding: 8px 15px;
  2693. }
  2694. .dashboard {
  2695. padding-top: 15px;
  2696. padding-bottom: 80px;
  2697. }
  2698. .dashboard.feeds .context.user.menu,
  2699. .dashboard.issues .context.user.menu {
  2700. z-index: 101;
  2701. min-width: 200px;
  2702. }
  2703. .dashboard.feeds .context.user.menu .ui.header,
  2704. .dashboard.issues .context.user.menu .ui.header {
  2705. font-size: 1rem;
  2706. text-transform: none;
  2707. }
  2708. .dashboard.feeds .filter.menu .item,
  2709. .dashboard.issues .filter.menu .item {
  2710. text-align: left;
  2711. }
  2712. .dashboard.feeds .filter.menu .item .text,
  2713. .dashboard.issues .filter.menu .item .text {
  2714. height: 16px;
  2715. vertical-align: middle;
  2716. }
  2717. .dashboard.feeds .filter.menu .item .text.truncate,
  2718. .dashboard.issues .filter.menu .item .text.truncate {
  2719. width: 85%;
  2720. }
  2721. .dashboard.feeds .filter.menu .item .floating.label,
  2722. .dashboard.issues .filter.menu .item .floating.label {
  2723. top: 7px;
  2724. left: 90%;
  2725. width: 15%;
  2726. }
  2727. .dashboard.feeds .filter.menu .jump.item,
  2728. .dashboard.issues .filter.menu .jump.item {
  2729. margin: 1px;
  2730. padding-right: 0;
  2731. }
  2732. .dashboard.feeds .filter.menu .menu,
  2733. .dashboard.issues .filter.menu .menu {
  2734. max-height: 300px;
  2735. overflow-x: auto;
  2736. right: 0!important;
  2737. left: auto!important;
  2738. }
  2739. .dashboard.feeds .ui.right .head.menu,
  2740. .dashboard.issues .ui.right .head.menu {
  2741. margin-top: -5px;
  2742. }
  2743. .dashboard.feeds .ui.right .head.menu .item.active,
  2744. .dashboard.issues .ui.right .head.menu .item.active {
  2745. color: #d9453d;
  2746. }
  2747. .feeds .news > .ui.grid {
  2748. margin-left: auto;
  2749. margin-right: auto;
  2750. }
  2751. .feeds .news .ui.avatar {
  2752. margin-top: 13px;
  2753. }
  2754. .feeds .news p {
  2755. line-height: 1em;
  2756. }
  2757. .feeds .news .time-since {
  2758. font-size: 13px;
  2759. }
  2760. .feeds .news .issue.title {
  2761. line-height: 1.1em;
  2762. width: 80%;
  2763. }
  2764. .feeds .news .push.news .content ul {
  2765. font-size: 13px;
  2766. list-style: none;
  2767. padding-left: 10px;
  2768. }
  2769. .feeds .news .push.news .content ul img {
  2770. margin-bottom: -2px;
  2771. }
  2772. .feeds .news .push.news .content ul .text.truncate {
  2773. width: 80%;
  2774. margin-bottom: -5px;
  2775. }
  2776. .feeds .news .commit-id {
  2777. font-family: Consolas, monospace;
  2778. }
  2779. .feeds .news code {
  2780. padding: 1px;
  2781. font-size: 85%;
  2782. background-color: rgba(0, 0, 0, 0.04);
  2783. border-radius: 3px;
  2784. word-break: break-all;
  2785. }
  2786. .feeds .list .header .ui.label {
  2787. margin-top: -4px;
  2788. padding: 4px 5px;
  2789. font-weight: normal;
  2790. }
  2791. .feeds .list .header .plus.icon {
  2792. margin-top: 5px;
  2793. }
  2794. .feeds .list ul {
  2795. list-style: none;
  2796. margin: 0;
  2797. padding-left: 0;
  2798. }
  2799. .feeds .list ul li:not(:last-child) {
  2800. border-bottom: 1px solid #EAEAEA;
  2801. }
  2802. .feeds .list ul li.private {
  2803. background-color: #fcf8e9;
  2804. }
  2805. .feeds .list ul li a {
  2806. padding: 6px 1.2em;
  2807. display: block;
  2808. }
  2809. .feeds .list ul li a .octicon {
  2810. color: #888;
  2811. }
  2812. .feeds .list ul li a .octicon.rear {
  2813. font-size: 15px;
  2814. }
  2815. .feeds .list ul li a .star-num {
  2816. font-size: 12px;
  2817. }
  2818. .feeds .list .repo-owner-name-list .item-name {
  2819. max-width: 70%;
  2820. margin-bottom: -4px;
  2821. }
  2822. .feeds .list #collaborative-repo-list .owner-and-repo {
  2823. max-width: 80%;
  2824. margin-bottom: -5px;
  2825. }
  2826. .feeds .list #collaborative-repo-list .owner-name {
  2827. max-width: 120px;
  2828. margin-bottom: -5px;
  2829. }
  2830. .admin {
  2831. padding-top: 15px;
  2832. padding-bottom: 80px;
  2833. }
  2834. .admin .table.segment {
  2835. padding: 0;
  2836. font-size: 13px;
  2837. }
  2838. .admin .table.segment:not(.striped) {
  2839. padding-top: 5px;
  2840. }
  2841. .admin .table.segment:not(.striped) thead th:last-child {
  2842. padding-right: 5px !important;
  2843. }
  2844. .admin .table.segment th {
  2845. padding-top: 5px;
  2846. padding-bottom: 5px;
  2847. }
  2848. .admin .table.segment:not(.select) th:first-of-type,
  2849. .admin .table.segment:not(.select) td:first-of-type {
  2850. padding-left: 15px !important;
  2851. }
  2852. .admin .ui.header,
  2853. .admin .ui.segment {
  2854. box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
  2855. }
  2856. .admin.user .email {
  2857. max-width: 200px;
  2858. }
  2859. .admin dl.admin-dl-horizontal {
  2860. padding: 20px;
  2861. margin: 0;
  2862. }
  2863. .admin dl.admin-dl-horizontal dd {
  2864. margin-left: 240px;
  2865. }
  2866. .admin dl.admin-dl-horizontal dt {
  2867. font-weight: bolder;
  2868. float: left;
  2869. width: 250px;
  2870. clear: left;
  2871. overflow: hidden;
  2872. text-overflow: ellipsis;
  2873. white-space: nowrap;
  2874. }
  2875. .admin.config #test-mail-btn {
  2876. margin-left: 5px;
  2877. }
  2878. .explore {
  2879. padding-top: 15px;
  2880. padding-bottom: 80px;
  2881. }
  2882. .explore .navbar .octicon {
  2883. width: 16px;
  2884. text-align: center;
  2885. }
  2886. .ui.repository.list .item {
  2887. padding-bottom: 25px;
  2888. }
  2889. .ui.repository.list .item:not(:first-child) {
  2890. border-top: 1px solid #eee;
  2891. padding-top: 25px;
  2892. }
  2893. .ui.repository.list .item .ui.header {
  2894. font-size: 1.5rem;
  2895. padding-bottom: 10px;
  2896. }
  2897. .ui.repository.list .item .ui.header .name {
  2898. word-break: break-all;
  2899. }
  2900. .ui.repository.list .item .ui.header .metas {
  2901. color: #888;
  2902. font-size: 14px;
  2903. font-weight: normal;
  2904. }
  2905. .ui.repository.list .item .ui.header .metas span:not(:last-child) {
  2906. margin-right: 5px;
  2907. }
  2908. .ui.repository.list .item .time {
  2909. font-size: 12px;
  2910. color: #808080;
  2911. }
  2912. .ui.user.list .item {
  2913. padding-bottom: 25px;
  2914. }
  2915. .ui.user.list .item:not(:first-child) {
  2916. border-top: 1px solid #eee;
  2917. padding-top: 25px;
  2918. }
  2919. .ui.user.list .item .ui.avatar.image {
  2920. width: 40px;
  2921. height: 40px;
  2922. }
  2923. .ui.user.list .item .description {
  2924. margin-top: 5px;
  2925. }
  2926. .ui.user.list .item .description .octicon:not(:first-child) {
  2927. margin-left: 5px;
  2928. }
  2929. .ui.user.list .item .description a {
  2930. color: #333;
  2931. }
  2932. .ui.user.list .item .description a:hover {
  2933. text-decoration: underline;
  2934. }