gogs.css 72 KB

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