gogs.css 72 KB

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