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 67KB

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