gogs.css 70 KB

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