gogs.css 71 KB

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