gogs.css 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237
  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: 0.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: 0.6em;
  948. padding-bottom: 0.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: auto;
  1250. }
  1251. .repository #clone-panel input {
  1252. border-radius: 0;
  1253. padding: 5px 10px;
  1254. max-width: 190px;
  1255. width: 190px;
  1256. }
  1257. .repository #clone-panel .clone.button {
  1258. font-size: 13px;
  1259. padding: 0 5px;
  1260. }
  1261. .repository #clone-panel .clone.button:first-child {
  1262. border-radius: 0.28571429rem 0 0 0.28571429rem;
  1263. }
  1264. .repository #clone-panel .icon.button {
  1265. padding: 0 10px;
  1266. }
  1267. .repository #clone-panel .dropdown .menu {
  1268. right: 0!important;
  1269. left: auto!important;
  1270. }
  1271. .repository.branches:not(.settings) .ui.list {
  1272. padding: 0;
  1273. }
  1274. .repository.branches:not(.settings) .ui.list > .item {
  1275. margin: 0;
  1276. line-height: 31px;
  1277. }
  1278. .repository.branches:not(.settings) .ui.list > .item:not(:last-child) {
  1279. border-bottom: 1px solid #DDD;
  1280. }
  1281. .repository.branches:not(.settings) .ui.list > .item .column {
  1282. padding: 5px 15px;
  1283. }
  1284. .repository.branches:not(.settings) .ui.list > .item .column .octicon {
  1285. vertical-align: text-bottom;
  1286. }
  1287. .repository.branches:not(.settings) .ui.list > .item .column code {
  1288. padding: 4px 0;
  1289. font-size: 12px;
  1290. }
  1291. .repository.branches:not(.settings) .ui.list > .item .column .ui.text:not(i) {
  1292. font-size: 12px;
  1293. }
  1294. .repository.branches:not(.settings) .ui.list > .item .column .ui.button {
  1295. font-size: 12px;
  1296. padding: 8px 10px;
  1297. }
  1298. .repository.file.list #repo-desc {
  1299. font-size: 1.2em;
  1300. }
  1301. .repository.file.list .choose.reference .header .icon {
  1302. font-size: 1.4em;
  1303. }
  1304. .repository.file.list #file-buttons {
  1305. font-weight: normal;
  1306. }
  1307. .repository.file.list #file-buttons .ui.button {
  1308. padding: 8px 10px;
  1309. font-weight: normal;
  1310. }
  1311. .repository.file.list #git-stats {
  1312. padding: 10px;
  1313. line-height: 0;
  1314. }
  1315. .repository.file.list #git-stats .list {
  1316. width: 100%;
  1317. }
  1318. .repository.file.list #git-stats .list .item {
  1319. margin-left: 0;
  1320. width: 33.33%;
  1321. }
  1322. .repository.file.list #git-stats .list .item .text b {
  1323. font-size: 15px;
  1324. }
  1325. .repository.file.list #repo-files-table thead th {
  1326. padding-top: 8px;
  1327. padding-bottom: 5px;
  1328. font-weight: normal;
  1329. }
  1330. .repository.file.list #repo-files-table thead th:first-child {
  1331. display: block;
  1332. position: relative;
  1333. width: 325%;
  1334. }
  1335. .repository.file.list #repo-files-table thead .ui.avatar {
  1336. margin-bottom: 5px;
  1337. }
  1338. .repository.file.list #repo-files-table tbody .octicon {
  1339. margin-left: 3px;
  1340. margin-right: 5px;
  1341. color: #777;
  1342. }
  1343. .repository.file.list #repo-files-table tbody .octicon.octicon-mail-reply {
  1344. margin-right: 10px;
  1345. }
  1346. .repository.file.list #repo-files-table tbody .octicon.octicon-file-directory,
  1347. .repository.file.list #repo-files-table tbody .octicon.octicon-file-submodule {
  1348. color: #1e70bf;
  1349. }
  1350. .repository.file.list #repo-files-table td {
  1351. padding-top: 8px;
  1352. padding-bottom: 8px;
  1353. }
  1354. .repository.file.list #repo-files-table tr:hover {
  1355. background-color: #ffffEE;
  1356. }
  1357. .repository.file.list #file-content .header .octicon {
  1358. padding-right: 5px;
  1359. }
  1360. .repository.file.list #file-content .header .icon {
  1361. font-size: 1em;
  1362. margin-top: -2px;
  1363. }
  1364. .repository.file.list #file-content .header .file-actions {
  1365. padding-left: 20px;
  1366. }
  1367. .repository.file.list #file-content .header .file-actions .btn-octicon {
  1368. display: inline-block;
  1369. padding: 5px;
  1370. margin-left: 5px;
  1371. line-height: 1;
  1372. color: #767676;
  1373. vertical-align: middle;
  1374. background: transparent;
  1375. border: 0;
  1376. outline: none;
  1377. }
  1378. .repository.file.list #file-content .header .file-actions .btn-octicon:hover {
  1379. color: #4078c0;
  1380. }
  1381. .repository.file.list #file-content .header .file-actions .btn-octicon-danger:hover {
  1382. color: #bd2c00;
  1383. }
  1384. .repository.file.list #file-content .header .file-actions .btn-octicon.disabled {
  1385. color: #bbb;
  1386. cursor: default;
  1387. }
  1388. .repository.file.list #file-content .header .file-actions #delete-file-form {
  1389. display: inline-block;
  1390. }
  1391. .repository.file.list #file-content .view-raw {
  1392. padding: 5px;
  1393. }
  1394. .repository.file.list #file-content .view-raw * {
  1395. max-width: 100%;
  1396. }
  1397. .repository.file.list #file-content .view-raw img {
  1398. margin-bottom: -5px;
  1399. }
  1400. .repository.file.list #file-content #ipython-notebook {
  1401. margin-left: 95px;
  1402. padding-top: 1px;
  1403. }
  1404. .repository.file.list #file-content #ipython-notebook .nb-notebook {
  1405. line-height: 1.5;
  1406. }
  1407. .repository.file.list #file-content #ipython-notebook .nb-stdout,
  1408. .repository.file.list #file-content #ipython-notebook .nb-stderr {
  1409. white-space: pre-wrap;
  1410. margin: 1em 0;
  1411. padding: 0.1em 0.5em;
  1412. }
  1413. .repository.file.list #file-content #ipython-notebook .nb-stderr {
  1414. background-color: #FAA;
  1415. }
  1416. .repository.file.list #file-content #ipython-notebook .nb-cell + .nb-cell {
  1417. margin-top: 0.5em;
  1418. }
  1419. .repository.file.list #file-content #ipython-notebook .nb-cell {
  1420. position: relative;
  1421. }
  1422. .repository.file.list #file-content #ipython-notebook .nb-cell.nb-heading-cell {
  1423. margin-top: 0.5em;
  1424. }
  1425. .repository.file.list #file-content #ipython-notebook .nb-cell img {
  1426. max-width: 100%;
  1427. }
  1428. .repository.file.list #file-content #ipython-notebook .nb-raw-cell {
  1429. white-space: pre-wrap;
  1430. background-color: #f5f2f0;
  1431. font-family: Consolas, Monaco, 'Andale Mono', monospace;
  1432. padding: 1em;
  1433. margin: 0.5em 0;
  1434. }
  1435. .repository.file.list #file-content #ipython-notebook .nb-input:before,
  1436. .repository.file.list #file-content #ipython-notebook .nb-output:before {
  1437. position: absolute;
  1438. font-family: monospace;
  1439. color: #999;
  1440. left: -7.5em;
  1441. width: 7em;
  1442. text-align: right;
  1443. }
  1444. .repository.file.list #file-content #ipython-notebook .nb-input:before {
  1445. content: "In [" attr(data-prompt-number) "]:";
  1446. }
  1447. .repository.file.list #file-content #ipython-notebook .nb-input pre {
  1448. background-color: #f7f7f7;
  1449. margin-right: 10px;
  1450. padding: 5px 10px;
  1451. }
  1452. .repository.file.list #file-content #ipython-notebook .nb-input pre code {
  1453. min-height: 18px;
  1454. line-height: 18px;
  1455. font-size: 14px;
  1456. }
  1457. .repository.file.list #file-content #ipython-notebook .nb-output:before {
  1458. content: "Out [" attr(data-prompt-number) "]:";
  1459. }
  1460. .repository.file.list #file-content #ipython-notebook .nb-output pre {
  1461. padding: 5px 10px;
  1462. font-size: 14px;
  1463. }
  1464. .repository.file.list #file-content #ipython-notebook .nb-output img {
  1465. max-width: 100%;
  1466. }
  1467. .repository.file.list #file-content #ipython-notebook .nb-output table {
  1468. border: 1px solid #000;
  1469. border-collapse: collapse;
  1470. }
  1471. .repository.file.list #file-content #ipython-notebook .nb-output th {
  1472. font-weight: bold;
  1473. }
  1474. .repository.file.list #file-content #ipython-notebook .nb-output th,
  1475. .repository.file.list #file-content #ipython-notebook .nb-output td {
  1476. border: 1px solid #000;
  1477. padding: 0.25em;
  1478. text-align: left;
  1479. vertical-align: middle;
  1480. border-collapse: collapse;
  1481. }
  1482. .repository.file.list #file-content #ipython-notebook .nb-markdown-cell {
  1483. margin-top: 10px;
  1484. margin-right: 10px;
  1485. padding: 10px;
  1486. }
  1487. .repository.file.list #file-content #ipython-notebook div[style="max-height:1000px;max-width:1500px;overflow:auto;"] {
  1488. max-height: none !important;
  1489. }
  1490. .repository.file.list #file-content .plain-text {
  1491. font-size: 14px;
  1492. padding: 15px 15px 10px 15px;
  1493. font-family: Consolas;
  1494. }
  1495. .repository.file.list #file-content .code-view * {
  1496. font-size: 12px;
  1497. font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  1498. line-height: 20px;
  1499. }
  1500. .repository.file.list #file-content .code-view table {
  1501. width: 100%;
  1502. }
  1503. .repository.file.list #file-content .code-view table tbody tr {
  1504. padding: 0 !important;
  1505. }
  1506. .repository.file.list #file-content .code-view .lines-num {
  1507. vertical-align: top;
  1508. text-align: right;
  1509. color: #999;
  1510. background: #f5f5f5;
  1511. width: 42px;
  1512. }
  1513. .repository.file.list #file-content .code-view .lines-num span {
  1514. line-height: 20px;
  1515. padding: 0 10px;
  1516. cursor: pointer;
  1517. display: block;
  1518. }
  1519. .repository.file.list #file-content .code-view .lines-num,
  1520. .repository.file.list #file-content .code-view .lines-code {
  1521. display: table-cell !important;
  1522. padding: 0 !important;
  1523. }
  1524. .repository.file.list #file-content .code-view .lines-num pre,
  1525. .repository.file.list #file-content .code-view .lines-code pre,
  1526. .repository.file.list #file-content .code-view .lines-num ol,
  1527. .repository.file.list #file-content .code-view .lines-code ol,
  1528. .repository.file.list #file-content .code-view .lines-num .hljs,
  1529. .repository.file.list #file-content .code-view .lines-code .hljs {
  1530. background-color: white;
  1531. margin: 0;
  1532. padding: 0 !important;
  1533. }
  1534. .repository.file.list #file-content .code-view .lines-num pre li,
  1535. .repository.file.list #file-content .code-view .lines-code pre li,
  1536. .repository.file.list #file-content .code-view .lines-num ol li,
  1537. .repository.file.list #file-content .code-view .lines-code ol li,
  1538. .repository.file.list #file-content .code-view .lines-num .hljs li,
  1539. .repository.file.list #file-content .code-view .lines-code .hljs li {
  1540. display: inline-block;
  1541. width: 100%;
  1542. }
  1543. .repository.file.list #file-content .code-view .lines-num pre li.active,
  1544. .repository.file.list #file-content .code-view .lines-code pre li.active,
  1545. .repository.file.list #file-content .code-view .lines-num ol li.active,
  1546. .repository.file.list #file-content .code-view .lines-code ol li.active,
  1547. .repository.file.list #file-content .code-view .lines-num .hljs li.active,
  1548. .repository.file.list #file-content .code-view .lines-code .hljs li.active {
  1549. background: #ffffdd;
  1550. }
  1551. .repository.file.list #file-content .code-view .lines-num pre li:before,
  1552. .repository.file.list #file-content .code-view .lines-code pre li:before,
  1553. .repository.file.list #file-content .code-view .lines-num ol li:before,
  1554. .repository.file.list #file-content .code-view .lines-code ol li:before,
  1555. .repository.file.list #file-content .code-view .lines-num .hljs li:before,
  1556. .repository.file.list #file-content .code-view .lines-code .hljs li:before {
  1557. content: ' ';
  1558. }
  1559. .repository.file.list .sidebar {
  1560. padding-left: 0;
  1561. }
  1562. .repository.file.list .sidebar .octicon {
  1563. width: 16px;
  1564. }
  1565. .repository.file.editor .treepath {
  1566. width: 100%;
  1567. }
  1568. .repository.file.editor .treepath input {
  1569. vertical-align: middle;
  1570. box-shadow: rgba(0, 0, 0, 0.0745098) 0px 1px 2px inset;
  1571. width: inherit;
  1572. padding: 7px 8px;
  1573. margin-right: 5px;
  1574. }
  1575. .repository.file.editor .tabular.menu .octicon {
  1576. margin-right: 5px;
  1577. }
  1578. .repository.file.editor .commit-form-wrapper {
  1579. padding-left: 64px;
  1580. }
  1581. .repository.file.editor .commit-form-wrapper .commit-avatar {
  1582. float: left;
  1583. margin-left: -64px;
  1584. width: 3em;
  1585. height: auto;
  1586. }
  1587. .repository.file.editor .commit-form-wrapper .commit-form {
  1588. position: relative;
  1589. padding: 15px;
  1590. margin-bottom: 10px;
  1591. border: 1px solid #ddd;
  1592. border-radius: 3px;
  1593. }
  1594. .repository.file.editor .commit-form-wrapper .commit-form:before,
  1595. .repository.file.editor .commit-form-wrapper .commit-form:after {
  1596. right: 100%;
  1597. top: 20px;
  1598. border: solid transparent;
  1599. content: " ";
  1600. height: 0;
  1601. width: 0;
  1602. position: absolute;
  1603. pointer-events: none;
  1604. }
  1605. .repository.file.editor .commit-form-wrapper .commit-form:before {
  1606. border-right-color: #D4D4D5;
  1607. border-width: 9px;
  1608. margin-top: -9px;
  1609. }
  1610. .repository.file.editor .commit-form-wrapper .commit-form:after {
  1611. border-right-color: #f7f7f7;
  1612. border-width: 8px;
  1613. margin-top: -8px;
  1614. }
  1615. .repository.file.editor .commit-form-wrapper .commit-form:after {
  1616. border-right-color: #fff;
  1617. }
  1618. .repository.file.editor .commit-form-wrapper .commit-form .quick-pull-choice .branch-name {
  1619. display: inline-block;
  1620. padding: 3px 6px;
  1621. font: 12px Consolas, "Liberation Mono", Menlo, Courier, monospace;
  1622. color: rgba(0, 0, 0, 0.65);
  1623. background-color: rgba(209, 227, 237, 0.45);
  1624. border-radius: 3px;
  1625. }
  1626. .repository.file.editor .commit-form-wrapper .commit-form .quick-pull-choice .new-branch-name-input {
  1627. position: relative;
  1628. margin-left: 25px;
  1629. }
  1630. .repository.file.editor .commit-form-wrapper .commit-form .quick-pull-choice .new-branch-name-input input {
  1631. width: 240px !important;
  1632. padding-left: 26px !important;
  1633. }
  1634. .repository.file.editor .commit-form-wrapper .commit-form .quick-pull-choice .octicon-git-branch {
  1635. position: absolute;
  1636. top: 9px;
  1637. left: 10px;
  1638. color: #b0c4ce;
  1639. }
  1640. .repository.options #interval {
  1641. width: 100px!important;
  1642. min-width: 100px;
  1643. }
  1644. .repository.options .danger .item {
  1645. padding: 20px 15px;
  1646. }
  1647. .repository.options .danger .ui.divider {
  1648. margin: 0;
  1649. }
  1650. .repository.new.issue .comment.form .comment .avatar {
  1651. width: 3em;
  1652. }
  1653. .repository.new.issue .comment.form .content {
  1654. margin-left: 4em;
  1655. }
  1656. .repository.new.issue .comment.form .content:before,
  1657. .repository.new.issue .comment.form .content:after {
  1658. right: 100%;
  1659. top: 20px;
  1660. border: solid transparent;
  1661. content: " ";
  1662. height: 0;
  1663. width: 0;
  1664. position: absolute;
  1665. pointer-events: none;
  1666. }
  1667. .repository.new.issue .comment.form .content:before {
  1668. border-right-color: #D4D4D5;
  1669. border-width: 9px;
  1670. margin-top: -9px;
  1671. }
  1672. .repository.new.issue .comment.form .content:after {
  1673. border-right-color: #f7f7f7;
  1674. border-width: 8px;
  1675. margin-top: -8px;
  1676. }
  1677. .repository.new.issue .comment.form .content:after {
  1678. border-right-color: #fff;
  1679. }
  1680. .repository.new.issue .comment.form .content .markdown {
  1681. font-size: 14px;
  1682. }
  1683. .repository.new.issue .comment.form .metas {
  1684. min-width: 220px;
  1685. }
  1686. .repository.new.issue .comment.form .metas .filter.menu {
  1687. max-height: 300px;
  1688. overflow-x: auto;
  1689. }
  1690. .repository.view.issue .title {
  1691. padding-bottom: 0!important;
  1692. }
  1693. .repository.view.issue .title h1 {
  1694. font-weight: 300;
  1695. font-size: 2.3rem;
  1696. margin-bottom: 5px;
  1697. }
  1698. .repository.view.issue .title h1 .ui.input {
  1699. font-size: 0.5em;
  1700. vertical-align: top;
  1701. width: 50%;
  1702. min-width: 600px;
  1703. }
  1704. .repository.view.issue .title h1 .ui.input input {
  1705. font-size: 1.5em;
  1706. padding: 6px 10px;
  1707. }
  1708. .repository.view.issue .title .index {
  1709. font-weight: 300;
  1710. color: #aaa;
  1711. letter-spacing: -1px;
  1712. }
  1713. .repository.view.issue .title .label {
  1714. margin-right: 10px;
  1715. }
  1716. .repository.view.issue .title .edit-zone {
  1717. margin-top: 10px;
  1718. }
  1719. .repository.view.issue .pull-desc code {
  1720. color: #0166E6;
  1721. }
  1722. .repository.view.issue .pull.tabular.menu {
  1723. margin-bottom: 10px;
  1724. }
  1725. .repository.view.issue .pull.tabular.menu .octicon {
  1726. margin-right: 5px;
  1727. }
  1728. .repository.view.issue .pull.tab.segment {
  1729. border: none;
  1730. padding: 0;
  1731. padding-top: 10px;
  1732. box-shadow: none;
  1733. background-color: inherit;
  1734. }
  1735. .repository.view.issue .pull .merge.box .avatar {
  1736. margin-left: 10px;
  1737. margin-top: 10px;
  1738. }
  1739. .repository.view.issue .pull .merge.box #commit_description {
  1740. height: auto;
  1741. }
  1742. .repository.view.issue .comment-list:before {
  1743. display: block;
  1744. content: "";
  1745. position: absolute;
  1746. margin-top: 12px;
  1747. margin-bottom: 14px;
  1748. top: 0;
  1749. bottom: 0;
  1750. left: 96px;
  1751. width: 2px;
  1752. background-color: #f3f3f3;
  1753. z-index: -1;
  1754. }
  1755. .repository.view.issue .comment-list .comment .avatar {
  1756. width: 3em;
  1757. }
  1758. .repository.view.issue .comment-list .comment .tag {
  1759. color: #767676;
  1760. margin-top: 3px;
  1761. padding: 2px 5px;
  1762. font-size: 12px;
  1763. border: 1px solid rgba(0, 0, 0, 0.1);
  1764. border-radius: 3px;
  1765. }
  1766. .repository.view.issue .comment-list .comment .actions .item {
  1767. float: left;
  1768. }
  1769. .repository.view.issue .comment-list .comment .actions .item.tag {
  1770. margin-right: 5px;
  1771. }
  1772. .repository.view.issue .comment-list .comment .actions .item.action {
  1773. margin-top: 6px;
  1774. margin-left: 10px;
  1775. }
  1776. .repository.view.issue .comment-list .comment .content {
  1777. margin-left: 4em;
  1778. }
  1779. .repository.view.issue .comment-list .comment .content .header {
  1780. font-weight: normal;
  1781. padding: auto 15px;
  1782. position: relative;
  1783. color: #767676;
  1784. background-color: #f7f7f7;
  1785. border-bottom: 1px solid #eee;
  1786. border-top-left-radius: 3px;
  1787. border-top-right-radius: 3px;
  1788. }
  1789. .repository.view.issue .comment-list .comment .content .header:before,
  1790. .repository.view.issue .comment-list .comment .content .header:after {
  1791. right: 100%;
  1792. top: 20px;
  1793. border: solid transparent;
  1794. content: " ";
  1795. height: 0;
  1796. width: 0;
  1797. position: absolute;
  1798. pointer-events: none;
  1799. }
  1800. .repository.view.issue .comment-list .comment .content .header:before {
  1801. border-right-color: #D4D4D5;
  1802. border-width: 9px;
  1803. margin-top: -9px;
  1804. }
  1805. .repository.view.issue .comment-list .comment .content .header:after {
  1806. border-right-color: #f7f7f7;
  1807. border-width: 8px;
  1808. margin-top: -8px;
  1809. }
  1810. .repository.view.issue .comment-list .comment .content .header .text {
  1811. max-width: 78%;
  1812. padding-top: 10px;
  1813. padding-bottom: 10px;
  1814. }
  1815. .repository.view.issue .comment-list .comment .content .markdown {
  1816. font-size: 14px;
  1817. }
  1818. .repository.view.issue .comment-list .comment .content .no-content {
  1819. color: #767676;
  1820. font-style: italic;
  1821. }
  1822. .repository.view.issue .comment-list .comment .content > .bottom.segment {
  1823. background: #f3f4f5;
  1824. }
  1825. .repository.view.issue .comment-list .comment .content > .bottom.segment .ui.images::after {
  1826. clear: both;
  1827. content: ' ';
  1828. display: block;
  1829. }
  1830. .repository.view.issue .comment-list .comment .content > .bottom.segment a {
  1831. display: block;
  1832. float: left;
  1833. margin: 5px;
  1834. padding: 5px;
  1835. height: 150px;
  1836. border: solid 1px #eee;
  1837. border-radius: 3px;
  1838. max-width: 150px;
  1839. background-color: #fff;
  1840. }
  1841. .repository.view.issue .comment-list .comment .content > .bottom.segment a:before {
  1842. content: ' ';
  1843. display: inline-block;
  1844. height: 100%;
  1845. vertical-align: middle;
  1846. }
  1847. .repository.view.issue .comment-list .comment .content > .bottom.segment .ui.image {
  1848. max-height: 100%;
  1849. width: auto;
  1850. margin: 0;
  1851. vertical-align: middle;
  1852. }
  1853. .repository.view.issue .comment-list .comment .content > .bottom.segment span.ui.image {
  1854. font-size: 8vw;
  1855. color: #000000;
  1856. }
  1857. .repository.view.issue .comment-list .comment .content > .bottom.segment span.ui.image:hover {
  1858. color: #000000;
  1859. }
  1860. .repository.view.issue .comment-list .comment .ui.form .field:first-child {
  1861. clear: none;
  1862. }
  1863. .repository.view.issue .comment-list .comment .ui.form .tab.segment {
  1864. border: none;
  1865. padding: 0;
  1866. padding-top: 10px;
  1867. }
  1868. .repository.view.issue .comment-list .comment .ui.form textarea {
  1869. height: 200px;
  1870. font-family: "Consolas", monospace;
  1871. }
  1872. .repository.view.issue .comment-list .comment .edit.buttons {
  1873. margin-top: 10px;
  1874. }
  1875. .repository.view.issue .comment-list .event {
  1876. position: relative;
  1877. margin: 15px 0 15px 79px;
  1878. padding-left: 25px;
  1879. }
  1880. .repository.view.issue .comment-list .event .octicon {
  1881. width: 30px;
  1882. float: left;
  1883. text-align: center;
  1884. }
  1885. .repository.view.issue .comment-list .event .octicon.octicon-circle-slash {
  1886. margin-top: 5px;
  1887. margin-left: -34.5px;
  1888. font-size: 20px;
  1889. color: #bd2c00;
  1890. }
  1891. .repository.view.issue .comment-list .event .octicon.octicon-primitive-dot {
  1892. margin-left: -28.5px;
  1893. margin-right: -1px;
  1894. font-size: 30px;
  1895. color: #6cc644;
  1896. }
  1897. .repository.view.issue .comment-list .event .octicon.octicon-bookmark {
  1898. margin-top: 3px;
  1899. margin-left: -31px;
  1900. margin-right: -1px;
  1901. font-size: 25px;
  1902. }
  1903. .repository.view.issue .comment-list .event .detail {
  1904. font-size: 0.9rem;
  1905. margin-top: 5px;
  1906. margin-left: 35px;
  1907. }
  1908. .repository.view.issue .comment-list .event .detail .octicon.octicon-git-commit {
  1909. margin-top: 2px;
  1910. }
  1911. .repository.view.issue .ui.segment.metas {
  1912. margin-top: -3px;
  1913. }
  1914. .repository.view.issue .ui.participants img {
  1915. margin-top: 5px;
  1916. margin-right: 5px;
  1917. }
  1918. .repository .comment.form .ui.comments {
  1919. margin-top: -12px;
  1920. max-width: 100%;
  1921. }
  1922. .repository .comment.form .content .field:first-child {
  1923. clear: none;
  1924. }
  1925. .repository .comment.form .content .form:before,
  1926. .repository .comment.form .content .form:after {
  1927. right: 100%;
  1928. top: 20px;
  1929. border: solid transparent;
  1930. content: " ";
  1931. height: 0;
  1932. width: 0;
  1933. position: absolute;
  1934. pointer-events: none;
  1935. }
  1936. .repository .comment.form .content .form:before {
  1937. border-right-color: #D4D4D5;
  1938. border-width: 9px;
  1939. margin-top: -9px;
  1940. }
  1941. .repository .comment.form .content .form:after {
  1942. border-right-color: #f7f7f7;
  1943. border-width: 8px;
  1944. margin-top: -8px;
  1945. }
  1946. .repository .comment.form .content .form:after {
  1947. border-right-color: #fff;
  1948. }
  1949. .repository .comment.form .content .tab.segment {
  1950. border: none;
  1951. padding: 0;
  1952. padding-top: 10px;
  1953. }
  1954. .repository .comment.form .content textarea {
  1955. height: 200px;
  1956. font-family: "Consolas", monospace;
  1957. }
  1958. .repository .label.list {
  1959. list-style: none;
  1960. padding-top: 15px;
  1961. }
  1962. .repository .label.list > .item {
  1963. padding-top: 10px;
  1964. padding-bottom: 10px;
  1965. border-bottom: 1px dashed #AAA;
  1966. }
  1967. .repository .label.list > .item a {
  1968. font-size: 15px;
  1969. padding-top: 5px;
  1970. padding-right: 10px;
  1971. color: #666;
  1972. }
  1973. .repository .label.list > .item a:hover {
  1974. color: #000;
  1975. }
  1976. .repository .label.list > .item a.open-issues {
  1977. margin-right: 30px;
  1978. }
  1979. .repository .label.list > .item .ui.label {
  1980. font-size: 1em;
  1981. }
  1982. .repository .milestone.list {
  1983. list-style: none;
  1984. padding-top: 15px;
  1985. }
  1986. .repository .milestone.list > .item {
  1987. padding-top: 10px;
  1988. padding-bottom: 10px;
  1989. border-bottom: 1px dashed #AAA;
  1990. }
  1991. .repository .milestone.list > .item > a {
  1992. padding-top: 5px;
  1993. padding-right: 10px;
  1994. color: #000;
  1995. }
  1996. .repository .milestone.list > .item > a:hover {
  1997. color: #4078c0;
  1998. }
  1999. .repository .milestone.list > .item .ui.progress {
  2000. width: 40%;
  2001. padding: 0;
  2002. border: 0;
  2003. margin: 0;
  2004. }
  2005. .repository .milestone.list > .item .ui.progress .bar {
  2006. height: 20px;
  2007. }
  2008. .repository .milestone.list > .item .meta {
  2009. color: #999;
  2010. padding-top: 5px;
  2011. }
  2012. .repository .milestone.list > .item .meta .issue-stats .octicon {
  2013. padding-left: 5px;
  2014. }
  2015. .repository .milestone.list > .item .meta .overdue {
  2016. color: red;
  2017. }
  2018. .repository .milestone.list > .item .operate {
  2019. margin-top: -15px;
  2020. }
  2021. .repository .milestone.list > .item .operate > a {
  2022. font-size: 15px;
  2023. padding-top: 5px;
  2024. padding-right: 10px;
  2025. color: #666;
  2026. }
  2027. .repository .milestone.list > .item .operate > a:hover {
  2028. color: #000;
  2029. }
  2030. .repository .milestone.list > .item .content {
  2031. padding-top: 10px;
  2032. }
  2033. .repository.new.milestone textarea {
  2034. height: 200px;
  2035. }
  2036. .repository.new.milestone #deadline {
  2037. width: 150px;
  2038. }
  2039. .repository.compare.pull .choose.branch .octicon {
  2040. padding-right: 10px;
  2041. }
  2042. .repository.compare.pull .comment.form .content:before,
  2043. .repository.compare.pull .comment.form .content:after {
  2044. right: 100%;
  2045. top: 20px;
  2046. border: solid transparent;
  2047. content: " ";
  2048. height: 0;
  2049. width: 0;
  2050. position: absolute;
  2051. pointer-events: none;
  2052. }
  2053. .repository.compare.pull .comment.form .content:before {
  2054. border-right-color: #D4D4D5;
  2055. border-width: 9px;
  2056. margin-top: -9px;
  2057. }
  2058. .repository.compare.pull .comment.form .content:after {
  2059. border-right-color: #f7f7f7;
  2060. border-width: 8px;
  2061. margin-top: -8px;
  2062. }
  2063. .repository.compare.pull .comment.form .content:after {
  2064. border-right-color: #fff;
  2065. }
  2066. .repository .filter.dropdown .menu {
  2067. margin-top: 1px!important;
  2068. }
  2069. .repository.diff .commit-message pre {
  2070. white-space: pre-wrap;
  2071. }
  2072. .repository.commits .header .ui.right .search input {
  2073. font-weight: normal;
  2074. padding: 5px 10px;
  2075. }
  2076. .repository #commits-table thead th:first-of-type {
  2077. padding-left: 15px;
  2078. }
  2079. .repository #commits-table thead .sha {
  2080. font-size: 13px;
  2081. padding: 6px 40px 4px 35px;
  2082. }
  2083. .repository #commits-table.ui.basic.striped.table tbody tr:nth-child(2n) {
  2084. background-color: rgba(0, 0, 0, 0.02) !important;
  2085. }
  2086. .repository .diff-detail-box {
  2087. margin: 15px 0;
  2088. line-height: 30px;
  2089. }
  2090. .repository .diff-detail-box ol {
  2091. clear: both;
  2092. padding-left: 0;
  2093. margin-top: 5px;
  2094. margin-bottom: 28px;
  2095. }
  2096. .repository .diff-detail-box ol li {
  2097. list-style: none;
  2098. padding-bottom: 4px;
  2099. margin-bottom: 4px;
  2100. border-bottom: 1px dashed #DDD;
  2101. padding-left: 6px;
  2102. }
  2103. .repository .diff-detail-box span.status {
  2104. display: inline-block;
  2105. width: 12px;
  2106. height: 12px;
  2107. margin-right: 8px;
  2108. vertical-align: middle;
  2109. }
  2110. .repository .diff-detail-box span.status.modify {
  2111. background-color: #f0db88;
  2112. }
  2113. .repository .diff-detail-box span.status.add {
  2114. background-color: #b4e2b4;
  2115. }
  2116. .repository .diff-detail-box span.status.del {
  2117. background-color: #e9aeae;
  2118. }
  2119. .repository .diff-detail-box span.status.rename {
  2120. background-color: #dad8ff;
  2121. }
  2122. .repository .diff-box .count {
  2123. margin-right: 12px;
  2124. font-size: 13px;
  2125. }
  2126. .repository .diff-box .count .bar {
  2127. background-color: #bd2c00;
  2128. height: 12px;
  2129. width: 40px;
  2130. display: inline-block;
  2131. margin: 2px 4px 0 4px;
  2132. vertical-align: text-top;
  2133. }
  2134. .repository .diff-box .count .bar .add {
  2135. background-color: #55a532;
  2136. height: 12px;
  2137. }
  2138. .repository .diff-box .file {
  2139. color: #888;
  2140. }
  2141. .repository .diff-file-box .header {
  2142. background-color: #f7f7f7;
  2143. }
  2144. .repository .diff-file-box .file-body.file-code .lines-num {
  2145. text-align: right;
  2146. color: #A7A7A7;
  2147. background: #fafafa;
  2148. width: 1%;
  2149. }
  2150. .repository .diff-file-box .file-body.file-code .lines-num span.fold {
  2151. display: block;
  2152. text-align: center;
  2153. }
  2154. .repository .diff-file-box .file-body.file-code .lines-num-old {
  2155. border-right: 1px solid #DDD;
  2156. }
  2157. .repository .diff-file-box .code-diff {
  2158. font-size: 12px;
  2159. }
  2160. .repository .diff-file-box .code-diff td {
  2161. padding: 0;
  2162. padding-left: 10px;
  2163. border-top: none;
  2164. }
  2165. .repository .diff-file-box .code-diff pre {
  2166. margin: 0;
  2167. }
  2168. .repository .diff-file-box .code-diff .lines-num {
  2169. border-right: 1px solid #d4d4d5;
  2170. padding: 0 5px;
  2171. user-select: none;
  2172. }
  2173. .repository .diff-file-box .code-diff .lines-num::before {
  2174. content: attr(data-line-number);
  2175. }
  2176. .repository .diff-file-box .code-diff .lines-num.lines-num-old,
  2177. .repository .diff-file-box .code-diff .lines-num.lines-num-new {
  2178. cursor: pointer;
  2179. }
  2180. .repository .diff-file-box .code-diff .lines-num.lines-num-old:hover,
  2181. .repository .diff-file-box .code-diff .lines-num.lines-num-new:hover {
  2182. color: #383636;
  2183. }
  2184. .repository .diff-file-box .code-diff tbody tr.tag-code td {
  2185. background-color: #F0F0F0 !important;
  2186. border-color: #D2CECE !important;
  2187. padding-top: 4px;
  2188. padding-bottom: 4px;
  2189. }
  2190. .repository .diff-file-box .code-diff tbody tr.tag-code td.halfwidth {
  2191. width: 50%;
  2192. }
  2193. .repository .diff-file-box .code-diff tbody tr.same-code td.active {
  2194. background-color: #ffffdd !important;
  2195. }
  2196. .repository .diff-file-box .code-diff tbody tr.del-code td.add-code {
  2197. background-color: #eaffea !important;
  2198. border-color: #c1e9c1 !important;
  2199. }
  2200. .repository .diff-file-box .code-diff tbody tr.del-code td.add-code pre {
  2201. background-color: #eaffea !important;
  2202. border-color: #c1e9c1 !important;
  2203. }
  2204. .repository .diff-file-box .code-diff tbody tr.del-code td {
  2205. background-color: #ffecec !important;
  2206. border-color: #f1c0c0 !important;
  2207. }
  2208. .repository .diff-file-box .code-diff tbody tr.del-code td.active {
  2209. background-color: #ffffdd !important;
  2210. }
  2211. .repository .diff-file-box .code-diff tbody tr.del-code td.halfwidth {
  2212. width: 50%;
  2213. }
  2214. .repository .diff-file-box .code-diff tbody tr.add-code td {
  2215. background-color: #eaffea !important;
  2216. border-color: #c1e9c1 !important;
  2217. }
  2218. .repository .diff-file-box .code-diff tbody tr.add-code td.halfwidth {
  2219. width: 50%;
  2220. }
  2221. .repository .diff-file-box .code-diff tbody tr.add-code td.active {
  2222. background-color: #ffffdd !important;
  2223. }
  2224. .repository .diff-file-box .code-diff tbody tr .removed-code {
  2225. background-color: #ff9999;
  2226. }
  2227. .repository .diff-file-box .code-diff tbody tr .added-code {
  2228. background-color: #99ff99;
  2229. }
  2230. .repository .diff-file-box.file-content img {
  2231. max-width: 100%;
  2232. padding: 5px 5px 0 5px;
  2233. }
  2234. .repository .code-view {
  2235. overflow: auto;
  2236. overflow-x: auto;
  2237. overflow-y: hidden;
  2238. }
  2239. .repository .code-view table {
  2240. width: 100%;
  2241. border-spacing: 0;
  2242. }
  2243. .repository.quickstart .guide .item {
  2244. padding: 1em;
  2245. }
  2246. .repository.quickstart .guide .item small {
  2247. font-weight: normal;
  2248. }
  2249. .repository.quickstart .guide .clone.button:first-child {
  2250. border-radius: 0.28571429rem 0 0 0.28571429rem;
  2251. }
  2252. .repository.quickstart .guide .ui.action.small.input {
  2253. width: 100%;
  2254. }
  2255. .repository.quickstart .guide #repo-clone-url {
  2256. border-radius: 0;
  2257. padding: 5px 10px;
  2258. font-size: 1.2em;
  2259. }
  2260. .repository.release #release-list {
  2261. border-top: 1px solid #DDD;
  2262. margin-top: 20px;
  2263. padding-top: 15px;
  2264. }
  2265. .repository.release #release-list > li {
  2266. list-style: none;
  2267. }
  2268. .repository.release #release-list > li .meta,
  2269. .repository.release #release-list > li .detail {
  2270. padding-top: 30px;
  2271. padding-bottom: 40px;
  2272. }
  2273. .repository.release #release-list > li .meta {
  2274. text-align: right;
  2275. position: relative;
  2276. }
  2277. .repository.release #release-list > li .meta .tag:not(.icon) {
  2278. display: block;
  2279. margin-top: 6px;
  2280. }
  2281. .repository.release #release-list > li .meta .commit {
  2282. display: block;
  2283. margin-top: 6px;
  2284. }
  2285. .repository.release #release-list > li .detail {
  2286. border-left: 1px solid #DDD;
  2287. }
  2288. .repository.release #release-list > li .detail .author img {
  2289. margin-bottom: -3px;
  2290. }
  2291. .repository.release #release-list > li .detail .download {
  2292. margin-top: 20px;
  2293. }
  2294. .repository.release #release-list > li .detail .download > a .octicon {
  2295. margin-left: 5px;
  2296. margin-right: 5px;
  2297. }
  2298. .repository.release #release-list > li .detail .download .list {
  2299. padding-left: 0;
  2300. border-top: 1px solid #eee;
  2301. }
  2302. .repository.release #release-list > li .detail .download .list li {
  2303. list-style: none;
  2304. display: block;
  2305. padding-top: 8px;
  2306. padding-bottom: 8px;
  2307. border-bottom: 1px solid #eee;
  2308. }
  2309. .repository.release #release-list > li .detail .dot {
  2310. width: 9px;
  2311. height: 9px;
  2312. background-color: #ccc;
  2313. z-index: 999;
  2314. position: absolute;
  2315. display: block;
  2316. left: -5px;
  2317. top: 40px;
  2318. border-radius: 6px;
  2319. border: 1px solid #FFF;
  2320. }
  2321. .repository.new.release .target {
  2322. min-width: 500px;
  2323. }
  2324. .repository.new.release .target #tag-name {
  2325. margin-top: -4px;
  2326. }
  2327. .repository.new.release .target .at {
  2328. margin-left: -5px;
  2329. margin-right: 5px;
  2330. }
  2331. .repository.new.release .target .dropdown.icon {
  2332. margin: 0;
  2333. padding-top: 3px;
  2334. }
  2335. .repository.new.release .target .selection.dropdown {
  2336. padding-top: 10px;
  2337. padding-bottom: 10px;
  2338. }
  2339. .repository.new.release .prerelease.field {
  2340. margin-bottom: 0;
  2341. }
  2342. .repository.forks .list {
  2343. margin-top: 0;
  2344. }
  2345. .repository.forks .list .item {
  2346. padding-top: 10px;
  2347. padding-bottom: 10px;
  2348. border-bottom: 1px solid #DDD;
  2349. }
  2350. .repository.forks .list .item .ui.avatar {
  2351. float: left;
  2352. margin-right: 5px;
  2353. }
  2354. .repository.forks .list .item .link {
  2355. padding-top: 5px;
  2356. }
  2357. .repository.wiki.start .ui.segment {
  2358. padding-top: 70px;
  2359. padding-bottom: 100px;
  2360. }
  2361. .repository.wiki.start .ui.segment .mega-octicon {
  2362. font-size: 48px;
  2363. }
  2364. .repository.wiki.new .CodeMirror .CodeMirror-code {
  2365. font-family: "Consolas", monospace;
  2366. }
  2367. .repository.wiki.new .CodeMirror .CodeMirror-code .cm-comment {
  2368. background: inherit;
  2369. }
  2370. .repository.wiki.new .editor-preview {
  2371. background-color: white;
  2372. }
  2373. .repository.wiki.view .choose.page {
  2374. margin-top: -5px;
  2375. }
  2376. .repository.wiki.view .ui.sub.header {
  2377. text-transform: none;
  2378. }
  2379. .repository.wiki.view .markdown {
  2380. padding-left: 25px;
  2381. margin-left: -25px;
  2382. }
  2383. .repository.wiki.view .markdown h1:first-of-type,
  2384. .repository.wiki.view .markdown h2:first-of-type,
  2385. .repository.wiki.view .markdown h3:first-of-type,
  2386. .repository.wiki.view .markdown h4:first-of-type,
  2387. .repository.wiki.view .markdown h5:first-of-type,
  2388. .repository.wiki.view .markdown h6:first-of-type {
  2389. margin-top: 0;
  2390. }
  2391. .repository.settings.collaboration .collaborator.list {
  2392. padding: 0;
  2393. }
  2394. .repository.settings.collaboration .collaborator.list > .item {
  2395. margin: 0;
  2396. line-height: 2em;
  2397. }
  2398. .repository.settings.collaboration .collaborator.list > .item:not(:last-child) {
  2399. border-bottom: 1px solid #DDD;
  2400. }
  2401. .repository.settings.collaboration #repo-collab-form #search-user-box .results {
  2402. left: 7px;
  2403. }
  2404. .repository.settings.collaboration #repo-collab-form .ui.button {
  2405. margin-left: 5px;
  2406. margin-top: -3px;
  2407. }
  2408. .repository.settings.settings.branches .protected-branches .selection.dropdown {
  2409. width: 300px;
  2410. }
  2411. .repository.settings.settings.branches .protected-branches .item {
  2412. border: 1px solid #eaeaea;
  2413. padding: 10px 15px;
  2414. }
  2415. .repository.settings.settings.branches .protected-branches .item:not(:last-child) {
  2416. border-bottom: 0;
  2417. }
  2418. .repository.settings.settings.branches .branch-protection .help {
  2419. margin-left: 26px;
  2420. padding-top: 0;
  2421. }
  2422. .repository.settings.settings.branches .branch-protection .fields {
  2423. margin-left: 20px;
  2424. display: block;
  2425. }
  2426. .repository.settings.settings.branches .branch-protection .whitelist {
  2427. margin-left: 26px;
  2428. }
  2429. .repository.settings.settings.branches .branch-protection .whitelist .dropdown img {
  2430. display: inline-block;
  2431. }
  2432. .repository.settings.webhooks .types .menu .item {
  2433. padding: 10px !important;
  2434. }
  2435. .repository.settings.webhooks .logo.item img {
  2436. margin-top: -4px;
  2437. }
  2438. .repository.settings.webhook .text.desc {
  2439. margin-top: 5px;
  2440. }
  2441. .repository.settings.webhook .events .column {
  2442. padding-bottom: 0;
  2443. }
  2444. .repository.settings.webhook .events .help {
  2445. font-size: 13px;
  2446. margin-left: 26px;
  2447. padding-top: 0;
  2448. }
  2449. .webhook .hook.history.list .right.menu .redelivery.button {
  2450. font-size: 12px;
  2451. margin-top: 6px;
  2452. height: 30px;
  2453. }
  2454. .webhook .hook.history.list .right.menu .redelivery.button .octicon {
  2455. font: normal normal normal 13px/1 Octicons;
  2456. width: 12px;
  2457. }
  2458. .user-cards .list {
  2459. padding: 0;
  2460. }
  2461. .user-cards .list .item {
  2462. list-style: none;
  2463. width: 32%;
  2464. margin: 10px 10px 10px 0;
  2465. padding-bottom: 14px;
  2466. float: left;
  2467. }
  2468. .user-cards .list .item .avatar {
  2469. width: 48px;
  2470. height: 48px;
  2471. float: left;
  2472. display: block;
  2473. margin-right: 10px;
  2474. }
  2475. .user-cards .list .item .name {
  2476. margin-top: 0;
  2477. margin-bottom: 0;
  2478. font-weight: normal;
  2479. }
  2480. .user-cards .list .item .meta {
  2481. margin-top: 5px;
  2482. }
  2483. #search-repo-box .results,
  2484. #search-user-box .results {
  2485. padding: 0;
  2486. position: absolute;
  2487. }
  2488. #search-repo-box .results .item,
  2489. #search-user-box .results .item {
  2490. padding: 10px 15px;
  2491. border-bottom: 1px solid #DDD;
  2492. cursor: pointer;
  2493. }
  2494. #search-repo-box .results .item:hover,
  2495. #search-user-box .results .item:hover {
  2496. background: rgba(0, 0, 0, 0.05) !important;
  2497. color: rgba(0, 0, 0, 0.95) !important;
  2498. }
  2499. #search-repo-box .results .item img,
  2500. #search-user-box .results .item img {
  2501. margin-right: 8px;
  2502. }
  2503. .issue.list {
  2504. list-style: none;
  2505. padding-top: 15px;
  2506. }
  2507. .issue.list > .item {
  2508. padding-top: 15px;
  2509. padding-bottom: 10px;
  2510. border-bottom: 1px dashed #AAA;
  2511. }
  2512. .issue.list > .item .title {
  2513. color: #444;
  2514. font-size: 15px;
  2515. font-weight: bold;
  2516. margin: 0 6px;
  2517. }
  2518. .issue.list > .item .title:hover {
  2519. color: #000;
  2520. }
  2521. .issue.list > .item .comment {
  2522. padding-right: 10px;
  2523. color: #666;
  2524. }
  2525. .issue.list > .item .desc {
  2526. padding-top: 5px;
  2527. color: #999;
  2528. }
  2529. .issue.list > .item .desc a.milestone {
  2530. padding-left: 5px;
  2531. color: #999 !important;
  2532. }
  2533. .issue.list > .item .desc a.milestone:hover {
  2534. color: #000 !important;
  2535. }
  2536. .issue.list > .item .desc .assignee {
  2537. margin-top: -5px;
  2538. margin-right: 5px;
  2539. }
  2540. .page.buttons {
  2541. padding-top: 15px;
  2542. }
  2543. .ui.form .dropzone {
  2544. width: 100%;
  2545. margin-bottom: 10px;
  2546. border: 2px dashed #0087F7;
  2547. box-shadow: none!important;
  2548. }
  2549. .ui.form .dropzone .dz-error-message {
  2550. top: 140px;
  2551. }
  2552. .settings .content {
  2553. margin-top: 2px;
  2554. }
  2555. .settings .key.list .item:not(:first-child) {
  2556. border-top: 1px solid #eaeaea;
  2557. }
  2558. .settings .key.list .ssh-key-state-indicator {
  2559. float: left;
  2560. color: gray;
  2561. padding-left: 10px;
  2562. padding-top: 10px;
  2563. }
  2564. .settings .key.list .ssh-key-state-indicator.active {
  2565. color: #6cc644;
  2566. }
  2567. .settings .key.list .meta {
  2568. padding-top: 5px;
  2569. }
  2570. .settings .key.list .print {
  2571. color: #767676;
  2572. }
  2573. .settings .key.list .activity {
  2574. color: #666;
  2575. }
  2576. .settings .hook.list > .item:not(:first-child) {
  2577. border-top: 1px solid #eaeaea;
  2578. }
  2579. .settings .hook.list .item {
  2580. padding: 10px 20px;
  2581. }
  2582. .settings .hook.list .item .octicon,
  2583. .settings .hook.list .item .fa {
  2584. width: 20px;
  2585. text-align: center;
  2586. }
  2587. .settings .hook.list .item a {
  2588. /* These are technically the same, but use both */
  2589. overflow-wrap: break-word;
  2590. word-wrap: break-word;
  2591. -ms-word-break: break-all;
  2592. /* This is the dangerous one in WebKit, as it breaks things wherever */
  2593. word-break: break-all;
  2594. /* Instead use this non-standard one: */
  2595. word-break: break-word;
  2596. /* Adds a hyphen where the word breaks, if supported (No Blink) */
  2597. -ms-hyphens: auto;
  2598. -moz-hyphens: auto;
  2599. -webkit-hyphens: auto;
  2600. hyphens: auto;
  2601. }
  2602. .settings .hook.history.list .item {
  2603. padding-left: 13px;
  2604. }
  2605. .settings .hook.history.list .item .meta .ui.right {
  2606. margin-top: 5px;
  2607. }
  2608. .settings .hook.history.list .item .meta .ui.right .time {
  2609. font-size: 12px;
  2610. }
  2611. .settings .hook.history.list .item .info {
  2612. margin-top: 10px;
  2613. }
  2614. .settings .hook.history.list .item .info .tabular.menu .item {
  2615. font-weight: 500;
  2616. }
  2617. .settings .hook.history.list .item .info .tab.segment {
  2618. border: none;
  2619. padding: 0;
  2620. padding-top: 10px;
  2621. box-shadow: none;
  2622. }
  2623. .settings .hook.history.list .item .info .tab.segment > * {
  2624. color: #666;
  2625. }
  2626. .settings .hook.history.list .item .info .tab.segment pre {
  2627. word-wrap: break-word;
  2628. }
  2629. .settings .hook.history.list .item .info .tab.segment pre .hljs {
  2630. padding: 0;
  2631. background-color: inherit;
  2632. }
  2633. .ui.vertical.menu .header.item {
  2634. font-size: 1.1em;
  2635. background: #f0f0f0;
  2636. }
  2637. .edit-label.modal .form .column,
  2638. .new-label.segment .form .column {
  2639. padding-right: 0;
  2640. }
  2641. .edit-label.modal .form .buttons,
  2642. .new-label.segment .form .buttons {
  2643. margin-left: auto;
  2644. padding-top: 15px;
  2645. }
  2646. .edit-label.modal .form .color.picker.column,
  2647. .new-label.segment .form .color.picker.column {
  2648. width: auto;
  2649. }
  2650. .edit-label.modal .form .color.picker.column .color-picker,
  2651. .new-label.segment .form .color.picker.column .color-picker {
  2652. height: 35px;
  2653. width: auto;
  2654. padding-left: 30px;
  2655. }
  2656. .edit-label.modal .form .minicolors-swatch.minicolors-sprite,
  2657. .new-label.segment .form .minicolors-swatch.minicolors-sprite {
  2658. top: 10px;
  2659. left: 10px;
  2660. width: 15px;
  2661. height: 15px;
  2662. }
  2663. .edit-label.modal .form .precolors,
  2664. .new-label.segment .form .precolors {
  2665. padding-left: 0;
  2666. padding-right: 0;
  2667. margin: 3px 10px auto 10px;
  2668. width: 120px;
  2669. }
  2670. .edit-label.modal .form .precolors .color,
  2671. .new-label.segment .form .precolors .color {
  2672. float: left;
  2673. width: 15px;
  2674. height: 15px;
  2675. }
  2676. #avatar-arrow:before,
  2677. #avatar-arrow:after {
  2678. right: 100%;
  2679. top: 20px;
  2680. border: solid transparent;
  2681. content: " ";
  2682. height: 0;
  2683. width: 0;
  2684. position: absolute;
  2685. pointer-events: none;
  2686. }
  2687. #avatar-arrow:before {
  2688. border-right-color: #D4D4D5;
  2689. border-width: 9px;
  2690. margin-top: -9px;
  2691. }
  2692. #avatar-arrow:after {
  2693. border-right-color: #f7f7f7;
  2694. border-width: 8px;
  2695. margin-top: -8px;
  2696. }
  2697. #transfer-repo-modal .ui.message,
  2698. #delete-repo-modal .ui.message {
  2699. width: 100%!important;
  2700. }
  2701. .tab-size-1 {
  2702. tab-size: 1 !important;
  2703. -moz-tab-size: 1 !important;
  2704. }
  2705. .tab-size-2 {
  2706. tab-size: 2 !important;
  2707. -moz-tab-size: 2 !important;
  2708. }
  2709. .tab-size-3 {
  2710. tab-size: 3 !important;
  2711. -moz-tab-size: 3 !important;
  2712. }
  2713. .tab-size-4 {
  2714. tab-size: 4 !important;
  2715. -moz-tab-size: 4 !important;
  2716. }
  2717. .tab-size-5 {
  2718. tab-size: 5 !important;
  2719. -moz-tab-size: 5 !important;
  2720. }
  2721. .tab-size-6 {
  2722. tab-size: 6 !important;
  2723. -moz-tab-size: 6 !important;
  2724. }
  2725. .tab-size-7 {
  2726. tab-size: 7 !important;
  2727. -moz-tab-size: 7 !important;
  2728. }
  2729. .tab-size-8 {
  2730. tab-size: 8 !important;
  2731. -moz-tab-size: 8 !important;
  2732. }
  2733. .tab-size-9 {
  2734. tab-size: 9 !important;
  2735. -moz-tab-size: 9 !important;
  2736. }
  2737. .tab-size-10 {
  2738. tab-size: 10 !important;
  2739. -moz-tab-size: 10 !important;
  2740. }
  2741. .tab-size-11 {
  2742. tab-size: 11 !important;
  2743. -moz-tab-size: 11 !important;
  2744. }
  2745. .tab-size-12 {
  2746. tab-size: 12 !important;
  2747. -moz-tab-size: 12 !important;
  2748. }
  2749. .tab-size-13 {
  2750. tab-size: 13 !important;
  2751. -moz-tab-size: 13 !important;
  2752. }
  2753. .tab-size-14 {
  2754. tab-size: 14 !important;
  2755. -moz-tab-size: 14 !important;
  2756. }
  2757. .tab-size-15 {
  2758. tab-size: 15 !important;
  2759. -moz-tab-size: 15 !important;
  2760. }
  2761. .tab-size-16 {
  2762. tab-size: 16 !important;
  2763. -moz-tab-size: 16 !important;
  2764. }
  2765. .CodeMirror {
  2766. font: 14px Consolas, "Liberation Mono", Menlo, Courier, monospace;
  2767. }
  2768. .CodeMirror.cm-s-default {
  2769. border-radius: 3px;
  2770. padding: 0 !important;
  2771. }
  2772. .CodeMirror .cm-comment {
  2773. background: inherit !important;
  2774. }
  2775. .organization {
  2776. padding-top: 15px;
  2777. padding-bottom: 80px;
  2778. }
  2779. .organization .head .ui.header .text {
  2780. vertical-align: middle;
  2781. font-size: 1.6rem;
  2782. margin-left: 15px;
  2783. }
  2784. .organization .head .ui.header .ui.right {
  2785. margin-top: 5px;
  2786. }
  2787. .organization.new.org form {
  2788. margin: auto;
  2789. width: 800px!important;
  2790. }
  2791. .organization.new.org form .ui.message {
  2792. text-align: center;
  2793. }
  2794. .organization.new.org form .header {
  2795. padding-left: 280px !important;
  2796. }
  2797. .organization.new.org form .inline.field > label {
  2798. text-align: right;
  2799. width: 250px !important;
  2800. word-wrap: break-word;
  2801. }
  2802. .organization.new.org form .help {
  2803. margin-left: 265px !important;
  2804. }
  2805. .organization.new.org form .optional .title {
  2806. margin-left: 250px !important;
  2807. }
  2808. .organization.new.org form input,
  2809. .organization.new.org form textarea {
  2810. width: 50% !important;
  2811. }
  2812. .organization.options input {
  2813. min-width: 300px;
  2814. }
  2815. .organization.profile #org-avatar {
  2816. width: 100px;
  2817. height: 100px;
  2818. margin-right: 15px;
  2819. }
  2820. .organization.profile #org-info .ui.header {
  2821. font-size: 36px;
  2822. margin-bottom: 0;
  2823. }
  2824. .organization.profile #org-info .desc {
  2825. font-size: 16px;
  2826. margin-bottom: 10px;
  2827. }
  2828. .organization.profile #org-info .meta .item {
  2829. display: inline-block;
  2830. margin-right: 10px;
  2831. }
  2832. .organization.profile #org-info .meta .item .icon {
  2833. margin-right: 5px;
  2834. }
  2835. .organization.profile .ui.top.header .ui.right {
  2836. margin-top: 0;
  2837. }
  2838. .organization.profile .teams .item {
  2839. padding: 10px 15px;
  2840. }
  2841. .organization.teams .members .ui.avatar,
  2842. .organization.profile .members .ui.avatar {
  2843. width: 48px;
  2844. height: 48px;
  2845. margin-right: 5px;
  2846. }
  2847. .organization.invite #invite-box {
  2848. margin: auto;
  2849. margin-top: 50px;
  2850. width: 500px !important;
  2851. }
  2852. .organization.invite #invite-box #search-user-box input {
  2853. margin-left: 0;
  2854. width: 300px;
  2855. }
  2856. .organization.invite #invite-box .ui.button {
  2857. margin-left: 5px;
  2858. margin-top: -3px;
  2859. }
  2860. .organization.members .list .item {
  2861. margin-left: 0;
  2862. margin-right: 0;
  2863. border-bottom: 1px solid #eee;
  2864. }
  2865. .organization.members .list .item .ui.avatar {
  2866. width: 48px;
  2867. height: 48px;
  2868. }
  2869. .organization.members .list .item .meta {
  2870. line-height: 24px;
  2871. }
  2872. .organization.teams .detail .item {
  2873. padding: 10px 15px;
  2874. }
  2875. .organization.teams .detail .item:not(:last-child) {
  2876. border-bottom: 1px solid #eee;
  2877. }
  2878. .organization.teams .repositories .item,
  2879. .organization.teams .members .item {
  2880. padding: 10px 20px;
  2881. line-height: 32px;
  2882. }
  2883. .organization.teams .repositories .item:not(:last-child),
  2884. .organization.teams .members .item:not(:last-child) {
  2885. border-bottom: 1px solid #DDD;
  2886. }
  2887. .organization.teams .repositories .item .button,
  2888. .organization.teams .members .item .button {
  2889. padding: 9px 10px;
  2890. }
  2891. .organization.teams #add-repo-form input,
  2892. .organization.teams #add-member-form input {
  2893. margin-left: 0;
  2894. }
  2895. .organization.teams #add-repo-form .ui.button,
  2896. .organization.teams #add-member-form .ui.button {
  2897. margin-left: 5px;
  2898. margin-top: -3px;
  2899. }
  2900. .user:not(.icon) {
  2901. padding-top: 15px;
  2902. padding-bottom: 80px;
  2903. }
  2904. .user.settings .list .item.ui.grid {
  2905. margin-top: 15px;
  2906. }
  2907. .user.settings .email.list .item:not(:first-child) {
  2908. border-top: 1px solid #eaeaea;
  2909. height: 50px;
  2910. }
  2911. .user.settings .email.list .item:not(:first-child) .button {
  2912. margin-top: -10px;
  2913. }
  2914. .user.settings .email.list .item .ui.primary.label {
  2915. margin-top: -5px;
  2916. }
  2917. .user.settings.sshkeys .right.floated.button,
  2918. .user.settings.applications .right.floated.button {
  2919. padding-top: 1rem;
  2920. padding-bottom: 1rem;
  2921. }
  2922. .user.settings.security .two-factor .toggle.button {
  2923. margin-top: -5px;
  2924. }
  2925. .user.settings.repositories .repos {
  2926. padding: 0;
  2927. }
  2928. .user.settings.repositories .repos .item {
  2929. padding: 15px;
  2930. height: 46px;
  2931. }
  2932. .user.settings.repositories .repos .item .button {
  2933. margin-top: -5px;
  2934. }
  2935. .user.settings.organizations .orgs.non-empty {
  2936. padding: 0;
  2937. }
  2938. .user.settings.organizations .orgs .item {
  2939. padding: 10px;
  2940. }
  2941. .user.settings.organizations .orgs .item .button {
  2942. margin-top: 5px;
  2943. margin-right: 8px;
  2944. }
  2945. .user.profile .ui.card .profile-avatar {
  2946. height: 287px;
  2947. }
  2948. .user.profile .ui.card .header {
  2949. word-break: break-all;
  2950. }
  2951. .user.profile .ui.card .username {
  2952. display: block;
  2953. }
  2954. .user.profile .ui.card .extra.content {
  2955. padding: 0;
  2956. }
  2957. .user.profile .ui.card .extra.content ul {
  2958. margin: 0;
  2959. padding: 0;
  2960. }
  2961. .user.profile .ui.card .extra.content ul li {
  2962. padding: 10px;
  2963. list-style: none;
  2964. }
  2965. .user.profile .ui.card .extra.content ul li:not(:last-child) {
  2966. border-bottom: 1px solid #eaeaea;
  2967. }
  2968. .user.profile .ui.card .extra.content ul li .octicon {
  2969. margin-left: 1px;
  2970. margin-right: 5px;
  2971. }
  2972. .user.profile .ui.card .extra.content ul li.follow .ui.button {
  2973. width: 100%;
  2974. }
  2975. .user.profile .ui.repository.list {
  2976. margin-top: 25px;
  2977. }
  2978. .user.followers .header.name {
  2979. font-size: 20px;
  2980. line-height: 24px;
  2981. vertical-align: middle;
  2982. }
  2983. .user.followers .follow .ui.button {
  2984. padding: 8px 15px;
  2985. }
  2986. .dashboard {
  2987. padding-top: 15px;
  2988. padding-bottom: 80px;
  2989. }
  2990. .dashboard.feeds .context.user.menu,
  2991. .dashboard.issues .context.user.menu {
  2992. z-index: 101;
  2993. min-width: 200px;
  2994. }
  2995. .dashboard.feeds .context.user.menu .ui.header,
  2996. .dashboard.issues .context.user.menu .ui.header {
  2997. font-size: 1rem;
  2998. text-transform: none;
  2999. }
  3000. .dashboard.feeds .filter.menu .item,
  3001. .dashboard.issues .filter.menu .item {
  3002. text-align: left;
  3003. }
  3004. .dashboard.feeds .filter.menu .item .text,
  3005. .dashboard.issues .filter.menu .item .text {
  3006. height: 16px;
  3007. vertical-align: middle;
  3008. }
  3009. .dashboard.feeds .filter.menu .item .text.truncate,
  3010. .dashboard.issues .filter.menu .item .text.truncate {
  3011. width: 85%;
  3012. }
  3013. .dashboard.feeds .filter.menu .item .floating.label,
  3014. .dashboard.issues .filter.menu .item .floating.label {
  3015. top: 7px;
  3016. left: 90%;
  3017. width: 15%;
  3018. }
  3019. .dashboard.feeds .filter.menu .jump.item,
  3020. .dashboard.issues .filter.menu .jump.item {
  3021. margin: 1px;
  3022. padding-right: 0;
  3023. }
  3024. .dashboard.feeds .filter.menu .menu,
  3025. .dashboard.issues .filter.menu .menu {
  3026. max-height: 300px;
  3027. overflow-x: auto;
  3028. right: 0!important;
  3029. left: auto!important;
  3030. }
  3031. .dashboard.feeds .ui.right .head.menu,
  3032. .dashboard.issues .ui.right .head.menu {
  3033. margin-top: -5px;
  3034. }
  3035. .dashboard.feeds .ui.right .head.menu .item.active,
  3036. .dashboard.issues .ui.right .head.menu .item.active {
  3037. color: #d9453d;
  3038. }
  3039. .feeds .news > .ui.grid {
  3040. margin-left: auto;
  3041. margin-right: auto;
  3042. }
  3043. .feeds .news .ui.avatar {
  3044. margin-top: 13px;
  3045. }
  3046. .feeds .news p {
  3047. line-height: 1em;
  3048. overflow-wrap: break-word;
  3049. }
  3050. .feeds .news .time-since {
  3051. font-size: 13px;
  3052. }
  3053. .feeds .news .issue.title {
  3054. line-height: 1.1em;
  3055. width: 80%;
  3056. }
  3057. .feeds .news .push.news .content ul {
  3058. font-size: 13px;
  3059. list-style: none;
  3060. padding-left: 0;
  3061. }
  3062. .feeds .news .push.news .content ul img {
  3063. margin-bottom: -2px;
  3064. }
  3065. .feeds .news .push.news .content ul .text.truncate {
  3066. width: 60%;
  3067. margin-bottom: -5px;
  3068. }
  3069. .feeds .news .commit-id {
  3070. font-family: Consolas, monospace;
  3071. }
  3072. .feeds .news code {
  3073. padding: 3px;
  3074. font-size: 85%;
  3075. background-color: rgba(0, 0, 0, 0.04);
  3076. border-radius: 3px;
  3077. word-break: break-all;
  3078. }
  3079. .feeds .list .header .ui.label {
  3080. margin-top: -4px;
  3081. padding: 4px 5px;
  3082. font-weight: normal;
  3083. }
  3084. .feeds .list .header .plus.icon {
  3085. margin-top: 5px;
  3086. }
  3087. .feeds .list ul {
  3088. list-style: none;
  3089. margin: 0;
  3090. padding-left: 0;
  3091. }
  3092. .feeds .list ul li:not(:last-child) {
  3093. border-bottom: 1px solid #EAEAEA;
  3094. }
  3095. .feeds .list ul li.private {
  3096. background-color: #fcf8e9;
  3097. }
  3098. .feeds .list ul li a {
  3099. padding: 6px 1.2em;
  3100. display: block;
  3101. }
  3102. .feeds .list ul li a .octicon {
  3103. color: #888;
  3104. }
  3105. .feeds .list ul li a .octicon.rear {
  3106. font-size: 15px;
  3107. }
  3108. .feeds .list ul li a .star-num {
  3109. font-size: 12px;
  3110. }
  3111. .feeds .list .repo-owner-name-list .item-name {
  3112. max-width: 70%;
  3113. margin-bottom: -4px;
  3114. }
  3115. .feeds .list #collaborative-repo-list .owner-and-repo {
  3116. max-width: 80%;
  3117. margin-bottom: -5px;
  3118. }
  3119. .feeds .list #collaborative-repo-list .owner-name {
  3120. max-width: 120px;
  3121. margin-bottom: -5px;
  3122. }
  3123. .admin {
  3124. padding-top: 15px;
  3125. padding-bottom: 80px;
  3126. }
  3127. .admin .table.segment {
  3128. padding: 0;
  3129. font-size: 13px;
  3130. }
  3131. .admin .table.segment:not(.striped) {
  3132. padding-top: 5px;
  3133. }
  3134. .admin .table.segment:not(.striped) thead th:last-child {
  3135. padding-right: 5px !important;
  3136. }
  3137. .admin .table.segment th {
  3138. padding-top: 5px;
  3139. padding-bottom: 5px;
  3140. }
  3141. .admin .table.segment:not(.select) th:first-of-type,
  3142. .admin .table.segment:not(.select) td:first-of-type {
  3143. padding-left: 15px !important;
  3144. }
  3145. .admin code {
  3146. color: #db2828;
  3147. }
  3148. .admin.user .email {
  3149. max-width: 200px;
  3150. }
  3151. .admin dl.admin-dl-horizontal {
  3152. padding: 10px 15px;
  3153. margin: 0;
  3154. }
  3155. .admin dl.admin-dl-horizontal dd {
  3156. margin-left: 240px;
  3157. }
  3158. .admin dl.admin-dl-horizontal dt {
  3159. font-weight: bolder;
  3160. float: left;
  3161. width: 250px;
  3162. clear: left;
  3163. overflow: hidden;
  3164. text-overflow: ellipsis;
  3165. white-space: nowrap;
  3166. }
  3167. .admin.config #test-mail-btn {
  3168. margin-left: 5px;
  3169. }
  3170. .admin.config table tbody tr td:first-child {
  3171. font-weight: bold;
  3172. }
  3173. .admin.config pre {
  3174. background-color: #f7f7f7;
  3175. padding: 5px;
  3176. }
  3177. .admin.config .log-config table tbody tr td:first-child {
  3178. width: 100px;
  3179. }
  3180. .explore {
  3181. padding-top: 15px;
  3182. padding-bottom: 80px;
  3183. }
  3184. .explore .navbar .octicon {
  3185. width: 16px;
  3186. text-align: center;
  3187. }
  3188. .ui.repository.list .item {
  3189. padding-bottom: 25px;
  3190. }
  3191. .ui.repository.list .item:not(:first-child) {
  3192. border-top: 1px solid #eee;
  3193. padding-top: 25px;
  3194. }
  3195. .ui.repository.list .item .ui.header {
  3196. font-size: 1.5rem;
  3197. padding-bottom: 10px;
  3198. }
  3199. .ui.repository.list .item .ui.header .name {
  3200. word-break: break-all;
  3201. }
  3202. .ui.repository.list .item .ui.header .metas {
  3203. color: #888;
  3204. font-size: 14px;
  3205. font-weight: normal;
  3206. }
  3207. .ui.repository.list .item .ui.header .metas span:not(:last-child) {
  3208. margin-right: 5px;
  3209. }
  3210. .ui.repository.list .item .time {
  3211. font-size: 12px;
  3212. color: #808080;
  3213. }
  3214. .ui.user.list .item {
  3215. padding-bottom: 25px;
  3216. }
  3217. .ui.user.list .item:not(:first-child) {
  3218. border-top: 1px solid #eee;
  3219. padding-top: 25px;
  3220. }
  3221. .ui.user.list .item .ui.avatar.image {
  3222. width: 40px;
  3223. height: 40px;
  3224. }
  3225. .ui.user.list .item .description {
  3226. margin-top: 5px;
  3227. }
  3228. .ui.user.list .item .description .octicon:not(:first-child) {
  3229. margin-left: 5px;
  3230. }
  3231. .ui.user.list .item .description a {
  3232. color: #333;
  3233. }
  3234. .ui.user.list .item .description a:hover {
  3235. text-decoration: underline;
  3236. }
  3237. /*# sourceMappingURL=gogs.css.map */