gogs.css 68 KB

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