gogs.css 72 KB

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