You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.css 70 kB

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