gogs.css 60 KB

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