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