gogs.css 55 KB

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