gogs.css 72 KB

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