gogs.css 73 KB

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