gogs.css 73 KB

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