gogs.css 72 KB

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