gogs.css 72 KB

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