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