gogs.css 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460
  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: #FAFAFA;
  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 .filter.menu .label.color {
  1128. margin-left: 15px;
  1129. padding: 0 8px;
  1130. }
  1131. .repository .filter.menu .octicon {
  1132. float: left;
  1133. margin-left: -5px;
  1134. margin-right: -7px;
  1135. }
  1136. .repository .filter.menu .menu {
  1137. max-height: 300px;
  1138. overflow-x: auto;
  1139. right: 0!important;
  1140. left: auto!important;
  1141. }
  1142. .repository .filter.menu .dropdown.item {
  1143. margin: 1px;
  1144. padding-right: 0;
  1145. }
  1146. .repository .ui.tabs.container {
  1147. margin-top: 14px;
  1148. margin-bottom: 0px;
  1149. }
  1150. .repository .ui.tabs.container .ui.menu {
  1151. border-bottom: none;
  1152. }
  1153. .repository .ui.tabs.divider {
  1154. margin-top: 0;
  1155. margin-bottom: 20px;
  1156. }
  1157. .repository #clone-panel {
  1158. margin-top: -8px;
  1159. width: 100%;
  1160. }
  1161. .repository #clone-panel input {
  1162. border-radius: 0;
  1163. padding: 5px 10px;
  1164. }
  1165. .repository #clone-panel .clone.button {
  1166. font-size: 13px;
  1167. padding: 0 5px;
  1168. }
  1169. .repository #clone-panel .clone.button:first-child {
  1170. border-radius: .28571429rem 0 0 .28571429rem;
  1171. }
  1172. .repository #clone-panel .icon.button {
  1173. padding: 0 10px;
  1174. }
  1175. .repository #clone-panel .dropdown .menu {
  1176. right: 0!important;
  1177. left: auto!important;
  1178. }
  1179. .repository.file.list #repo-desc {
  1180. font-size: 1.2em;
  1181. }
  1182. .repository.file.list .choose.reference .header .icon {
  1183. font-size: 1.4em;
  1184. }
  1185. .repository.file.list #repo-files-table thead th {
  1186. padding-top: 8px;
  1187. padding-bottom: 5px;
  1188. font-weight: normal;
  1189. }
  1190. .repository.file.list #repo-files-table thead th:first-child {
  1191. display: block;
  1192. position: relative;
  1193. width: 325%;
  1194. }
  1195. .repository.file.list #repo-files-table thead .ui.avatar {
  1196. margin-bottom: 5px;
  1197. }
  1198. .repository.file.list #repo-files-table tbody .icon {
  1199. margin-left: 3px;
  1200. margin-right: 5px;
  1201. }
  1202. .repository.file.list #repo-files-table td {
  1203. padding-top: 8px;
  1204. padding-bottom: 8px;
  1205. }
  1206. .repository.file.list #repo-files-table tr:hover {
  1207. background-color: #ffffEE;
  1208. }
  1209. .repository.file.list #file-content .header .icon {
  1210. font-size: 1em;
  1211. margin-top: -2px;
  1212. }
  1213. .repository.file.list #file-content .view-raw * {
  1214. max-width: 100%;
  1215. }
  1216. .repository.file.list #file-content .view-raw img {
  1217. padding: 5px 5px 0 5px;
  1218. }
  1219. .repository.file.list #file-content .code-view * {
  1220. font-size: 12px;
  1221. font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  1222. line-height: 20px;
  1223. }
  1224. .repository.file.list #file-content .code-view table {
  1225. width: 100%;
  1226. }
  1227. .repository.file.list #file-content .code-view .lines-num {
  1228. vertical-align: top;
  1229. text-align: right;
  1230. color: #999;
  1231. background: #f5f5f5;
  1232. width: 1%;
  1233. }
  1234. .repository.file.list #file-content .code-view .lines-num span {
  1235. line-height: 20px;
  1236. padding: 0 10px;
  1237. cursor: pointer;
  1238. display: block;
  1239. }
  1240. .repository.file.list #file-content .code-view .lines-num,
  1241. .repository.file.list #file-content .code-view .lines-code {
  1242. padding: 0;
  1243. }
  1244. .repository.file.list #file-content .code-view .lines-num pre,
  1245. .repository.file.list #file-content .code-view .lines-code pre,
  1246. .repository.file.list #file-content .code-view .lines-num ol,
  1247. .repository.file.list #file-content .code-view .lines-code ol,
  1248. .repository.file.list #file-content .code-view .lines-num .hljs,
  1249. .repository.file.list #file-content .code-view .lines-code .hljs {
  1250. background-color: white;
  1251. margin: 0;
  1252. padding: 0 !important;
  1253. }
  1254. .repository.file.list #file-content .code-view .lines-num pre li,
  1255. .repository.file.list #file-content .code-view .lines-code pre li,
  1256. .repository.file.list #file-content .code-view .lines-num ol li,
  1257. .repository.file.list #file-content .code-view .lines-code ol li,
  1258. .repository.file.list #file-content .code-view .lines-num .hljs li,
  1259. .repository.file.list #file-content .code-view .lines-code .hljs li {
  1260. padding-left: 5px;
  1261. }
  1262. .repository.file.list #file-content .code-view .lines-num pre li.active,
  1263. .repository.file.list #file-content .code-view .lines-code pre li.active,
  1264. .repository.file.list #file-content .code-view .lines-num ol li.active,
  1265. .repository.file.list #file-content .code-view .lines-code ol li.active,
  1266. .repository.file.list #file-content .code-view .lines-num .hljs li.active,
  1267. .repository.file.list #file-content .code-view .lines-code .hljs li.active {
  1268. background: #ffffdd;
  1269. }
  1270. .repository.file.list .sidebar {
  1271. padding-left: 0;
  1272. }
  1273. .repository.file.list .sidebar .octicon {
  1274. width: 16px;
  1275. }
  1276. .repository.options #interval {
  1277. width: 100px!important;
  1278. min-width: 100px;
  1279. }
  1280. .repository.options .danger .item {
  1281. padding: 20px 15px;
  1282. }
  1283. .repository.options .danger .ui.divider {
  1284. margin: 0;
  1285. }
  1286. .repository.new.issue .comment.form .comment .avatar {
  1287. width: 3em;
  1288. }
  1289. .repository.new.issue .comment.form .content {
  1290. margin-left: 4em;
  1291. }
  1292. .repository.new.issue .comment.form .content .markdown {
  1293. font-size: 14px;
  1294. }
  1295. .repository.new.issue .comment.form .metas {
  1296. min-width: 220px;
  1297. }
  1298. .repository.new.issue .comment.form .metas .filter.menu {
  1299. max-height: 300px;
  1300. overflow-x: auto;
  1301. }
  1302. .repository.view.issue .title {
  1303. padding-bottom: 0!important;
  1304. }
  1305. .repository.view.issue .title h1 {
  1306. font-weight: 300;
  1307. font-size: 3rem;
  1308. margin-bottom: 5px;
  1309. }
  1310. .repository.view.issue .title h1 .ui.input {
  1311. font-size: 0.5em;
  1312. vertical-align: top;
  1313. width: 50%;
  1314. min-width: 600px;
  1315. }
  1316. .repository.view.issue .title h1 .ui.input input {
  1317. font-size: 1.5em;
  1318. padding: 6px 10px;
  1319. }
  1320. .repository.view.issue .title .index {
  1321. font-weight: 300;
  1322. color: #aaa;
  1323. letter-spacing: -1px;
  1324. }
  1325. .repository.view.issue .title .label {
  1326. margin-right: 10px;
  1327. }
  1328. .repository.view.issue .title .edit-zone {
  1329. margin-top: 10px;
  1330. }
  1331. .repository.view.issue .pull-desc code {
  1332. color: #0166E6;
  1333. }
  1334. .repository.view.issue .pull.tabular.menu {
  1335. margin-bottom: 10px;
  1336. }
  1337. .repository.view.issue .pull.tabular.menu .octicon {
  1338. margin-right: 5px;
  1339. }
  1340. .repository.view.issue .pull.tab.segment {
  1341. border: none;
  1342. padding: 0;
  1343. padding-top: 10px;
  1344. box-shadow: none;
  1345. background-color: inherit;
  1346. }
  1347. .repository.view.issue .pull .merge.box .avatar {
  1348. margin-left: 10px;
  1349. margin-top: 10px;
  1350. }
  1351. .repository.view.issue .comment-list:before {
  1352. display: block;
  1353. content: "";
  1354. position: absolute;
  1355. margin-top: 12px;
  1356. margin-bottom: 14px;
  1357. top: 0;
  1358. bottom: 0;
  1359. left: 96px;
  1360. width: 2px;
  1361. background-color: #f3f3f3;
  1362. z-index: -1;
  1363. }
  1364. .repository.view.issue .comment-list .comment .avatar {
  1365. width: 3em;
  1366. }
  1367. .repository.view.issue .comment-list .comment .tag {
  1368. color: #767676;
  1369. margin-top: 3px;
  1370. padding: 2px 5px;
  1371. font-size: 12px;
  1372. border: 1px solid rgba(0, 0, 0, 0.1);
  1373. border-radius: 3px;
  1374. }
  1375. .repository.view.issue .comment-list .comment .actions .item {
  1376. float: left;
  1377. }
  1378. .repository.view.issue .comment-list .comment .actions a.item {
  1379. margin-top: 6px;
  1380. margin-left: 10px;
  1381. }
  1382. .repository.view.issue .comment-list .comment .content {
  1383. margin-left: 4em;
  1384. }
  1385. .repository.view.issue .comment-list .comment .content .header {
  1386. font-weight: normal;
  1387. padding: auto 15px;
  1388. color: #767676;
  1389. background-color: #f7f7f7;
  1390. border-bottom: 1px solid #eee;
  1391. border-top-left-radius: 3px;
  1392. border-top-right-radius: 3px;
  1393. }
  1394. .repository.view.issue .comment-list .comment .content .header .text {
  1395. max-width: 78%;
  1396. padding-top: 10px;
  1397. padding-bottom: 10px;
  1398. }
  1399. .repository.view.issue .comment-list .comment .content .markdown {
  1400. font-size: 14px;
  1401. }
  1402. .repository.view.issue .comment-list .comment .content .no-content {
  1403. color: #767676;
  1404. font-style: italic;
  1405. }
  1406. .repository.view.issue .comment-list .comment .content > .bottom.segment {
  1407. background: #f3f4f5;
  1408. }
  1409. .repository.view.issue .comment-list .comment .content > .bottom.segment .ui.image {
  1410. max-height: 150px;
  1411. }
  1412. .repository.view.issue .comment-list .comment .ui.form .field:first-child {
  1413. clear: none;
  1414. }
  1415. .repository.view.issue .comment-list .comment .ui.form .tab.segment {
  1416. border: none;
  1417. padding: 0;
  1418. padding-top: 10px;
  1419. }
  1420. .repository.view.issue .comment-list .comment .ui.form textarea {
  1421. height: 200px;
  1422. }
  1423. .repository.view.issue .comment-list .comment .edit.buttons {
  1424. margin-top: 10px;
  1425. }
  1426. .repository.view.issue .comment-list .event {
  1427. position: relative;
  1428. margin: 15px 0 15px 79px;
  1429. padding-left: 25px;
  1430. }
  1431. .repository.view.issue .comment-list .event .octicon {
  1432. width: 30px;
  1433. float: left;
  1434. margin-left: -36px;
  1435. text-align: center;
  1436. }
  1437. .repository.view.issue .comment-list .event .octicon.octicon-circle-slash {
  1438. margin-top: 5px;
  1439. font-size: 20px;
  1440. color: #bd2c00;
  1441. }
  1442. .repository.view.issue .comment-list .event .octicon.octicon-primitive-dot {
  1443. font-size: 30px;
  1444. color: #6cc644;
  1445. }
  1446. .repository.view.issue .comment-list .event .octicon.octicon-bookmark {
  1447. margin-top: 3px;
  1448. font-size: 25px;
  1449. }
  1450. .repository.view.issue .comment-list .event .detail {
  1451. font-size: 0.9rem;
  1452. margin-top: 5px;
  1453. margin-left: 35px;
  1454. }
  1455. .repository.view.issue .comment-list .event .detail .octicon.octicon-git-commit {
  1456. margin-top: 2px;
  1457. }
  1458. .repository.view.issue .ui.segment.metas {
  1459. margin-top: -3px;
  1460. }
  1461. .repository.view.issue .ui.participants img {
  1462. margin-top: 5px;
  1463. margin-right: 5px;
  1464. }
  1465. .repository .comment.form .ui.comments {
  1466. margin-top: -12px;
  1467. max-width: 100%;
  1468. }
  1469. .repository .comment.form .content .field:first-child {
  1470. clear: none;
  1471. }
  1472. .repository .comment.form .content .tab.segment {
  1473. border: none;
  1474. padding: 0;
  1475. padding-top: 10px;
  1476. }
  1477. .repository .comment.form .content textarea {
  1478. height: 200px;
  1479. }
  1480. .repository .label.list {
  1481. list-style: none;
  1482. padding-top: 15px;
  1483. }
  1484. .repository .label.list .item {
  1485. padding-top: 10px;
  1486. padding-bottom: 10px;
  1487. border-bottom: 1px dashed #AAA;
  1488. }
  1489. .repository .label.list .item a {
  1490. font-size: 15px;
  1491. padding-top: 5px;
  1492. padding-right: 10px;
  1493. color: #666;
  1494. }
  1495. .repository .label.list .item a:hover {
  1496. color: #000;
  1497. }
  1498. .repository .label.list .item a.open-issues {
  1499. margin-right: 30px;
  1500. }
  1501. .repository .milestone.list {
  1502. list-style: none;
  1503. padding-top: 15px;
  1504. }
  1505. .repository .milestone.list > .item {
  1506. padding-top: 10px;
  1507. padding-bottom: 10px;
  1508. border-bottom: 1px dashed #AAA;
  1509. }
  1510. .repository .milestone.list > .item > a {
  1511. padding-top: 5px;
  1512. padding-right: 10px;
  1513. color: #000;
  1514. }
  1515. .repository .milestone.list > .item > a:hover {
  1516. color: #4078c0;
  1517. }
  1518. .repository .milestone.list > .item .ui.progress {
  1519. width: 40%;
  1520. padding: 0;
  1521. border: 0;
  1522. margin: 0;
  1523. }
  1524. .repository .milestone.list > .item .ui.progress .bar {
  1525. height: 20px;
  1526. }
  1527. .repository .milestone.list > .item .meta {
  1528. color: #999;
  1529. padding-top: 5px;
  1530. }
  1531. .repository .milestone.list > .item .meta .issue-stats .octicon {
  1532. padding-left: 5px;
  1533. }
  1534. .repository .milestone.list > .item .meta .overdue {
  1535. color: red;
  1536. }
  1537. .repository .milestone.list > .item .operate {
  1538. margin-top: -15px;
  1539. }
  1540. .repository .milestone.list > .item .operate > a {
  1541. font-size: 15px;
  1542. padding-top: 5px;
  1543. padding-right: 10px;
  1544. color: #666;
  1545. }
  1546. .repository .milestone.list > .item .operate > a:hover {
  1547. color: #000;
  1548. }
  1549. .repository .milestone.list > .item .content {
  1550. padding-top: 10px;
  1551. }
  1552. .repository.new.milestone textarea {
  1553. height: 200px;
  1554. }
  1555. .repository.new.milestone #deadline {
  1556. width: 150px;
  1557. }
  1558. .repository.compare.pull .choose.branch .octicon {
  1559. padding-right: 10px;
  1560. }
  1561. .repository .filter.dropdown .menu {
  1562. margin-top: 1px!important;
  1563. }
  1564. .repository.commits .header .ui.right .search input {
  1565. font-weight: normal;
  1566. padding: 5px 10px;
  1567. }
  1568. .repository #commits-table thead th:first-of-type {
  1569. padding-left: 15px;
  1570. }
  1571. .repository #commits-table thead .sha {
  1572. font-size: 13px;
  1573. padding: 6px 40px 4px 35px;
  1574. }
  1575. .repository #commits-table.ui.basic.striped.table tbody tr:nth-child(2n) {
  1576. background-color: rgba(0, 0, 0, 0.02) !important;
  1577. }
  1578. .repository .diff-detail-box {
  1579. margin: 15px 0;
  1580. line-height: 30px;
  1581. }
  1582. .repository .diff-detail-box ol {
  1583. clear: both;
  1584. padding-left: 0;
  1585. margin-top: 5px;
  1586. margin-bottom: 28px;
  1587. }
  1588. .repository .diff-detail-box ol li {
  1589. list-style: none;
  1590. padding-bottom: 4px;
  1591. margin-bottom: 4px;
  1592. border-bottom: 1px dashed #DDD;
  1593. padding-left: 6px;
  1594. }
  1595. .repository .diff-detail-box span.status {
  1596. display: inline-block;
  1597. width: 12px;
  1598. height: 12px;
  1599. margin-right: 8px;
  1600. vertical-align: middle;
  1601. }
  1602. .repository .diff-detail-box span.status.modify {
  1603. background-color: #f0db88;
  1604. }
  1605. .repository .diff-detail-box span.status.add {
  1606. background-color: #b4e2b4;
  1607. }
  1608. .repository .diff-detail-box span.status.del {
  1609. background-color: #e9aeae;
  1610. }
  1611. .repository .diff-detail-box span.status.rename {
  1612. background-color: #dad8ff;
  1613. }
  1614. .repository .diff-box .count {
  1615. margin-right: 12px;
  1616. font-size: 13px;
  1617. }
  1618. .repository .diff-box .count .bar {
  1619. background-color: #bd2c00;
  1620. height: 12px;
  1621. width: 40px;
  1622. display: inline-block;
  1623. margin: 2px 4px 0 4px;
  1624. vertical-align: text-top;
  1625. }
  1626. .repository .diff-box .count .bar .add {
  1627. background-color: #55a532;
  1628. height: 12px;
  1629. }
  1630. .repository .diff-box .file {
  1631. color: #888;
  1632. }
  1633. .repository .diff-file-box .header {
  1634. background-color: #f7f7f7;
  1635. }
  1636. .repository .diff-file-box .file-body.file-code .lines-num {
  1637. text-align: right;
  1638. color: #A7A7A7;
  1639. background: #fafafa;
  1640. width: 1%;
  1641. }
  1642. .repository .diff-file-box .file-body.file-code .lines-num span.fold {
  1643. display: block;
  1644. text-align: center;
  1645. }
  1646. .repository .diff-file-box .file-body.file-code .lines-num-old {
  1647. border-right: 1px solid #DDD;
  1648. }
  1649. .repository .diff-file-box .code-diff {
  1650. font-size: 12px;
  1651. }
  1652. .repository .diff-file-box .code-diff td {
  1653. padding: 0;
  1654. padding-left: 10px;
  1655. border-top: none;
  1656. }
  1657. .repository .diff-file-box .code-diff pre {
  1658. margin: 0;
  1659. }
  1660. .repository .diff-file-box .code-diff .lines-num {
  1661. border-right: 1px solid #d4d4d5;
  1662. padding: 0 5px;
  1663. }
  1664. .repository .diff-file-box .code-diff tbody tr.tag-code td,
  1665. .repository .diff-file-box .code-diff tbody tr.tag-code pre {
  1666. background-color: #F0F0F0 !important;
  1667. border-color: #D2CECE!important;
  1668. padding-top: 4px;
  1669. padding-bottom: 4px;
  1670. }
  1671. .repository .diff-file-box .code-diff tbody tr.tag-code td.halfwidth {
  1672. width: 50%;
  1673. }
  1674. .repository .diff-file-box .code-diff tbody tr.del-code td.add-code {
  1675. background-color: #eaffea !important;
  1676. border-color: #c1e9c1 !important;
  1677. }
  1678. .repository .diff-file-box .code-diff tbody tr.del-code td.add-code pre {
  1679. background-color: #eaffea !important;
  1680. border-color: #c1e9c1 !important;
  1681. }
  1682. .repository .diff-file-box .code-diff tbody tr.del-code td,
  1683. .repository .diff-file-box .code-diff tbody tr.del-code pre {
  1684. background-color: #ffecec !important;
  1685. border-color: #f1c0c0 !important;
  1686. }
  1687. .repository .diff-file-box .code-diff tbody tr.del-code td.halfwidth {
  1688. width: 50%;
  1689. }
  1690. .repository .diff-file-box .code-diff tbody tr.add-code td,
  1691. .repository .diff-file-box .code-diff tbody tr.add-code pre {
  1692. background-color: #eaffea !important;
  1693. border-color: #c1e9c1 !important;
  1694. }
  1695. .repository .diff-file-box .code-diff tbody tr.add-code td.halfwidth {
  1696. width: 50%;
  1697. }
  1698. .repository .diff-file-box .code-diff tbody tr .removed-code {
  1699. background-color: #ff9999;
  1700. }
  1701. .repository .diff-file-box .code-diff tbody tr .added-code {
  1702. background-color: #99ff99;
  1703. }
  1704. .repository .diff-file-box.file-content img {
  1705. max-width: 100%;
  1706. padding: 5px 5px 0 5px;
  1707. }
  1708. .repository .code-view {
  1709. overflow: auto;
  1710. overflow-x: auto;
  1711. overflow-y: hidden;
  1712. }
  1713. .repository.quickstart .guide .item {
  1714. padding: 1em;
  1715. }
  1716. .repository.quickstart .guide .item small {
  1717. font-weight: normal;
  1718. }
  1719. .repository.quickstart .guide .clone.button:first-child {
  1720. border-radius: .28571429rem 0 0 .28571429rem;
  1721. }
  1722. .repository.quickstart .guide .ui.action.small.input {
  1723. width: 100%;
  1724. }
  1725. .repository.quickstart .guide #repo-clone-url {
  1726. border-radius: 0;
  1727. padding: 5px 10px;
  1728. font-size: 1.2em;
  1729. }
  1730. .repository.release #release-list {
  1731. border-top: 1px solid #DDD;
  1732. margin-top: 20px;
  1733. padding-top: 15px;
  1734. }
  1735. .repository.release #release-list > li {
  1736. list-style: none;
  1737. }
  1738. .repository.release #release-list > li .meta,
  1739. .repository.release #release-list > li .detail {
  1740. padding-top: 30px;
  1741. padding-bottom: 40px;
  1742. }
  1743. .repository.release #release-list > li .meta {
  1744. text-align: right;
  1745. position: relative;
  1746. }
  1747. .repository.release #release-list > li .meta .tag:not(.icon) {
  1748. display: block;
  1749. margin-top: 15px;
  1750. }
  1751. .repository.release #release-list > li .meta .commit {
  1752. display: block;
  1753. margin-top: 10px;
  1754. }
  1755. .repository.release #release-list > li .detail {
  1756. border-left: 1px solid #DDD;
  1757. }
  1758. .repository.release #release-list > li .detail .author img {
  1759. margin-bottom: -3px;
  1760. }
  1761. .repository.release #release-list > li .detail .download {
  1762. margin-top: 20px;
  1763. }
  1764. .repository.release #release-list > li .detail .download > a .octicon {
  1765. margin-left: 5px;
  1766. margin-right: 5px;
  1767. }
  1768. .repository.release #release-list > li .detail .download .list {
  1769. padding-left: 0;
  1770. border-top: 1px solid #eee;
  1771. }
  1772. .repository.release #release-list > li .detail .download .list li {
  1773. list-style: none;
  1774. display: block;
  1775. padding-top: 8px;
  1776. padding-bottom: 8px;
  1777. border-bottom: 1px solid #eee;
  1778. }
  1779. .repository.release #release-list > li .detail .dot {
  1780. width: 9px;
  1781. height: 9px;
  1782. background-color: #ccc;
  1783. z-index: 999;
  1784. position: absolute;
  1785. display: block;
  1786. left: -5px;
  1787. top: 40px;
  1788. border-radius: 6px;
  1789. border: 1px solid #FFF;
  1790. }
  1791. .repository.new.release .target {
  1792. min-width: 500px;
  1793. }
  1794. .repository.new.release .target .at {
  1795. margin-left: -5px;
  1796. margin-right: 5px;
  1797. }
  1798. .repository.new.release .target .dropdown.icon {
  1799. margin: 0;
  1800. padding-top: 3px;
  1801. }
  1802. .repository.new.release .target .selection.dropdown {
  1803. padding-top: 10px;
  1804. padding-bottom: 10px;
  1805. }
  1806. .repository.new.release .prerelease.field {
  1807. margin-bottom: 0;
  1808. }
  1809. .repository.forks .list {
  1810. margin-top: 0;
  1811. }
  1812. .repository.forks .list .item {
  1813. padding-top: 10px;
  1814. padding-bottom: 10px;
  1815. border-bottom: 1px solid #DDD;
  1816. }
  1817. .repository.forks .list .item .ui.avatar {
  1818. float: left;
  1819. margin-right: 5px;
  1820. }
  1821. .repository.forks .list .item .link {
  1822. padding-top: 5px;
  1823. }
  1824. .repository.wiki.start .ui.segment {
  1825. padding-top: 70px;
  1826. padding-bottom: 100px;
  1827. }
  1828. .repository.wiki.start .ui.segment .mega-octicon {
  1829. font-size: 48px;
  1830. }
  1831. .repository.wiki.new .CodeMirror .CodeMirror-code .cm-comment {
  1832. background: inherit;
  1833. }
  1834. .repository.wiki.new .editor-preview {
  1835. background-color: white;
  1836. }
  1837. .repository.wiki.view .choose.page {
  1838. margin-top: -5px;
  1839. }
  1840. .repository.wiki.view .ui.sub.header {
  1841. text-transform: none;
  1842. }
  1843. .repository.wiki.view .markdown {
  1844. padding: 15px 30px;
  1845. }
  1846. .repository.wiki.view .markdown h1:first-of-type,
  1847. .repository.wiki.view .markdown h2:first-of-type,
  1848. .repository.wiki.view .markdown h3:first-of-type,
  1849. .repository.wiki.view .markdown h4:first-of-type,
  1850. .repository.wiki.view .markdown h5:first-of-type,
  1851. .repository.wiki.view .markdown h6:first-of-type {
  1852. margin-top: 0;
  1853. }
  1854. .repository.settings.collaboration .collaborator.list {
  1855. padding: 0;
  1856. }
  1857. .repository.settings.collaboration .collaborator.list .item {
  1858. padding: 10px 20px;
  1859. }
  1860. .repository.settings.collaboration .collaborator.list .item:not(:last-child) {
  1861. border-bottom: 1px solid #DDD;
  1862. }
  1863. .repository.settings.collaboration #repo-collab-form #search-user-box .results {
  1864. left: 7px;
  1865. }
  1866. .repository.settings.collaboration #repo-collab-form .ui.button {
  1867. margin-left: 5px;
  1868. margin-top: -3px;
  1869. }
  1870. .user-cards .list {
  1871. padding: 0;
  1872. }
  1873. .user-cards .list .item {
  1874. list-style: none;
  1875. width: 32%;
  1876. margin: 10px 10px 10px 0;
  1877. padding-bottom: 14px;
  1878. float: left;
  1879. }
  1880. .user-cards .list .item .avatar {
  1881. width: 48px;
  1882. height: 48px;
  1883. float: left;
  1884. display: block;
  1885. margin-right: 10px;
  1886. }
  1887. .user-cards .list .item .name {
  1888. margin-top: 0;
  1889. margin-bottom: 0;
  1890. font-weight: normal;
  1891. }
  1892. .user-cards .list .item .meta {
  1893. margin-top: 5px;
  1894. }
  1895. #search-repo-box .results,
  1896. #search-user-box .results {
  1897. padding: 0;
  1898. position: absolute;
  1899. }
  1900. #search-repo-box .results .item,
  1901. #search-user-box .results .item {
  1902. padding: 10px 15px;
  1903. border-bottom: 1px solid #DDD;
  1904. cursor: pointer;
  1905. }
  1906. #search-repo-box .results .item:hover,
  1907. #search-user-box .results .item:hover {
  1908. background: rgba(0, 0, 0, 0.05) !important;
  1909. color: rgba(0, 0, 0, 0.95) !important;
  1910. }
  1911. #search-repo-box .results .item img,
  1912. #search-user-box .results .item img {
  1913. margin-right: 8px;
  1914. }
  1915. .issue.list {
  1916. list-style: none;
  1917. padding-top: 15px;
  1918. }
  1919. .issue.list > .item {
  1920. padding-top: 15px;
  1921. padding-bottom: 10px;
  1922. border-bottom: 1px dashed #AAA;
  1923. }
  1924. .issue.list > .item .title {
  1925. color: #444;
  1926. font-size: 15px;
  1927. font-weight: bold;
  1928. margin: 0 6px;
  1929. }
  1930. .issue.list > .item .title:hover {
  1931. color: #000;
  1932. }
  1933. .issue.list > .item .comment {
  1934. padding-right: 10px;
  1935. color: #666;
  1936. }
  1937. .issue.list > .item .desc {
  1938. padding-top: 5px;
  1939. color: #999;
  1940. }
  1941. .issue.list > .item .desc a.milestone {
  1942. padding-left: 5px;
  1943. color: #999!important;
  1944. }
  1945. .issue.list > .item .desc a.milestone:hover {
  1946. color: #000!important;
  1947. }
  1948. .issue.list > .item .desc .assignee {
  1949. margin-top: -5px;
  1950. margin-right: 5px;
  1951. }
  1952. .page.buttons {
  1953. padding-top: 15px;
  1954. }
  1955. .ui.comments .dropzone {
  1956. width: 100%;
  1957. margin-bottom: 10px;
  1958. border: 2px dashed #0087F7;
  1959. box-shadow: none!important;
  1960. }
  1961. .ui.comments .dropzone .dz-error-message {
  1962. top: 140px;
  1963. }
  1964. .settings .content {
  1965. margin-top: 2px;
  1966. }
  1967. .settings .content > .header,
  1968. .settings .content .segment {
  1969. box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
  1970. }
  1971. .settings .key.list .item:not(:first-child) {
  1972. border-top: 1px solid #eaeaea;
  1973. }
  1974. .settings .key.list .ssh-key-state-indicator {
  1975. float: left;
  1976. color: gray;
  1977. padding-left: 10px;
  1978. padding-top: 10px;
  1979. }
  1980. .settings .key.list .ssh-key-state-indicator.active {
  1981. color: #6cc644;
  1982. }
  1983. .settings .key.list .meta {
  1984. padding-top: 5px;
  1985. }
  1986. .settings .key.list .print {
  1987. color: #767676;
  1988. }
  1989. .settings .key.list .activity {
  1990. color: #666;
  1991. }
  1992. .settings .hook.list > .item:not(:first-child) {
  1993. border-top: 1px solid #eaeaea;
  1994. }
  1995. .settings .hook.list .item {
  1996. padding: 10px 20px;
  1997. }
  1998. .settings .hook.list .item .octicon,
  1999. .settings .hook.list .item .fa {
  2000. width: 20px;
  2001. text-align: center;
  2002. }
  2003. .settings .hook.history.list .item {
  2004. padding-left: 13px;
  2005. }
  2006. .settings .hook.history.list .item .meta .ui.right {
  2007. margin-top: 5px;
  2008. }
  2009. .settings .hook.history.list .item .meta .ui.right .time {
  2010. font-size: 12px;
  2011. }
  2012. .settings .hook.history.list .item .info {
  2013. margin-top: 10px;
  2014. }
  2015. .settings .hook.history.list .item .info .tabular.menu .item {
  2016. font-weight: 500;
  2017. }
  2018. .settings .hook.history.list .item .info .tab.segment {
  2019. border: none;
  2020. padding: 0;
  2021. padding-top: 10px;
  2022. box-shadow: none;
  2023. }
  2024. .settings .hook.history.list .item .info .tab.segment > * {
  2025. color: #666;
  2026. }
  2027. .settings .hook.history.list .item .info .tab.segment pre {
  2028. word-wrap: break-word;
  2029. }
  2030. .settings .hook.history.list .item .info .tab.segment pre .hljs {
  2031. padding: 0;
  2032. background-color: inherit;
  2033. }
  2034. .ui.vertical.menu .header.item {
  2035. font-size: 1.1em;
  2036. background: #f0f0f0;
  2037. }
  2038. .edit-label.modal .form .column,
  2039. .new-label.segment .form .column {
  2040. padding-right: 0;
  2041. }
  2042. .edit-label.modal .form .buttons,
  2043. .new-label.segment .form .buttons {
  2044. margin-left: auto;
  2045. padding-top: 15px;
  2046. }
  2047. .edit-label.modal .form .color.picker.column,
  2048. .new-label.segment .form .color.picker.column {
  2049. width: auto;
  2050. }
  2051. .edit-label.modal .form .color.picker.column .color-picker,
  2052. .new-label.segment .form .color.picker.column .color-picker {
  2053. height: 35px;
  2054. width: auto;
  2055. padding-left: 30px;
  2056. }
  2057. .edit-label.modal .form .minicolors-swatch.minicolors-sprite,
  2058. .new-label.segment .form .minicolors-swatch.minicolors-sprite {
  2059. top: 10px;
  2060. left: 10px;
  2061. width: 15px;
  2062. height: 15px;
  2063. }
  2064. .edit-label.modal .form .precolors,
  2065. .new-label.segment .form .precolors {
  2066. padding-left: 0;
  2067. padding-right: 0;
  2068. margin: 3px 10px auto 10px;
  2069. width: 120px;
  2070. }
  2071. .edit-label.modal .form .precolors .color,
  2072. .new-label.segment .form .precolors .color {
  2073. float: left;
  2074. width: 15px;
  2075. height: 15px;
  2076. }
  2077. #transfer-repo-modal .ui.message,
  2078. #delete-repo-modal .ui.message {
  2079. width: 100%!important;
  2080. }
  2081. .organization {
  2082. padding-top: 15px;
  2083. padding-bottom: 80px;
  2084. }
  2085. .organization .head .ui.header .text {
  2086. vertical-align: middle;
  2087. font-size: 1.6rem;
  2088. margin-left: 15px;
  2089. }
  2090. .organization .head .ui.header .ui.right {
  2091. margin-top: 5px;
  2092. }
  2093. .organization.new.org form {
  2094. margin: auto;
  2095. width: 800px!important;
  2096. }
  2097. .organization.new.org form .ui.message {
  2098. text-align: center;
  2099. }
  2100. .organization.new.org form .header {
  2101. padding-left: 280px !important;
  2102. }
  2103. .organization.new.org form .inline.field > label {
  2104. text-align: right;
  2105. width: 250px !important;
  2106. word-wrap: break-word;
  2107. }
  2108. .organization.new.org form .help {
  2109. margin-left: 265px !important;
  2110. }
  2111. .organization.new.org form .optional .title {
  2112. margin-left: 250px !important;
  2113. }
  2114. .organization.new.org form input,
  2115. .organization.new.org form textarea {
  2116. width: 50%!important;
  2117. }
  2118. .organization.options input {
  2119. min-width: 300px;
  2120. }
  2121. .organization.profile #org-avatar {
  2122. width: 100px;
  2123. height: 100px;
  2124. margin-right: 15px;
  2125. }
  2126. .organization.profile #org-info .ui.header {
  2127. font-size: 36px;
  2128. margin-bottom: 0;
  2129. }
  2130. .organization.profile #org-info .desc {
  2131. font-size: 16px;
  2132. margin-bottom: 10px;
  2133. }
  2134. .organization.profile #org-info .meta .item {
  2135. display: inline-block;
  2136. margin-right: 10px;
  2137. }
  2138. .organization.profile #org-info .meta .item .icon {
  2139. margin-right: 5px;
  2140. }
  2141. .organization.profile .ui.top.header .ui.right {
  2142. margin-top: 0;
  2143. }
  2144. .organization.profile .teams .item {
  2145. padding: 10px 15px;
  2146. }
  2147. .organization.teams .members .ui.avatar,
  2148. .organization.profile .members .ui.avatar {
  2149. width: 48px;
  2150. height: 48px;
  2151. margin-right: 5px;
  2152. }
  2153. .organization.invite #invite-box {
  2154. margin: auto;
  2155. margin-top: 50px;
  2156. width: 500px !important;
  2157. }
  2158. .organization.invite #invite-box #search-user-box input {
  2159. margin-left: 0;
  2160. width: 300px;
  2161. }
  2162. .organization.invite #invite-box .ui.button {
  2163. margin-left: 5px;
  2164. margin-top: -3px;
  2165. }
  2166. .organization.members .list .item {
  2167. margin-left: 0;
  2168. margin-right: 0;
  2169. border-bottom: 1px solid #eee;
  2170. }
  2171. .organization.members .list .item .ui.avatar {
  2172. width: 48px;
  2173. height: 48px;
  2174. }
  2175. .organization.members .list .item .meta {
  2176. line-height: 24px;
  2177. }
  2178. .organization.teams .detail .item {
  2179. padding: 10px 15px;
  2180. }
  2181. .organization.teams .detail .item:not(:last-child) {
  2182. border-bottom: 1px solid #eee;
  2183. }
  2184. .organization.teams .repositories .item,
  2185. .organization.teams .members .item {
  2186. padding: 10px 20px;
  2187. line-height: 32px;
  2188. }
  2189. .organization.teams .repositories .item:not(:last-child),
  2190. .organization.teams .members .item:not(:last-child) {
  2191. border-bottom: 1px solid #DDD;
  2192. }
  2193. .organization.teams .repositories .item .button,
  2194. .organization.teams .members .item .button {
  2195. padding: 9px 10px;
  2196. }
  2197. .organization.teams #add-repo-form input,
  2198. .organization.teams #add-member-form input {
  2199. margin-left: 0;
  2200. }
  2201. .organization.teams #add-repo-form .ui.button,
  2202. .organization.teams #add-member-form .ui.button {
  2203. margin-left: 5px;
  2204. margin-top: -3px;
  2205. }
  2206. .user:not(.icon) {
  2207. padding-top: 15px;
  2208. padding-bottom: 80px;
  2209. }
  2210. .user.settings .list .item.ui.grid {
  2211. margin-top: 15px;
  2212. }
  2213. .user.settings .email.list .item:not(:first-child) {
  2214. border-top: 1px solid #eaeaea;
  2215. height: 50px;
  2216. }
  2217. .user.settings .email.list .item:not(:first-child) .button {
  2218. margin-top: -10px;
  2219. }
  2220. .user.profile .ui.card .username {
  2221. display: block;
  2222. }
  2223. .user.profile .ui.card .extra.content {
  2224. padding: 0;
  2225. }
  2226. .user.profile .ui.card .extra.content ul {
  2227. margin: 0;
  2228. padding: 0;
  2229. }
  2230. .user.profile .ui.card .extra.content ul li {
  2231. padding: 10px;
  2232. list-style: none;
  2233. }
  2234. .user.profile .ui.card .extra.content ul li:not(:last-child) {
  2235. border-bottom: 1px solid #eaeaea;
  2236. }
  2237. .user.profile .ui.card .extra.content ul li .octicon {
  2238. margin-left: 1px;
  2239. margin-right: 5px;
  2240. }
  2241. .user.profile .ui.card .extra.content ul li.follow .ui.button {
  2242. width: 100%;
  2243. }
  2244. .user.profile .ui.repository.list {
  2245. margin-top: 25px;
  2246. }
  2247. .user.followers .header.name {
  2248. font-size: 20px;
  2249. line-height: 24px;
  2250. vertical-align: middle;
  2251. }
  2252. .user.followers .follow .ui.button {
  2253. padding: 8px 15px;
  2254. }
  2255. .dashboard {
  2256. padding-top: 15px;
  2257. padding-bottom: 80px;
  2258. }
  2259. .dashboard.feeds .context.user.menu,
  2260. .dashboard.issues .context.user.menu {
  2261. z-index: 101;
  2262. min-width: 200px;
  2263. }
  2264. .dashboard.feeds .context.user.menu .ui.header,
  2265. .dashboard.issues .context.user.menu .ui.header {
  2266. font-size: 1rem;
  2267. text-transform: none;
  2268. }
  2269. .dashboard.feeds .filter.menu .item,
  2270. .dashboard.issues .filter.menu .item {
  2271. text-align: left;
  2272. }
  2273. .dashboard.feeds .filter.menu .item .text,
  2274. .dashboard.issues .filter.menu .item .text {
  2275. height: 16px;
  2276. vertical-align: middle;
  2277. }
  2278. .dashboard.feeds .filter.menu .item .text.truncate,
  2279. .dashboard.issues .filter.menu .item .text.truncate {
  2280. width: 85%;
  2281. }
  2282. .dashboard.feeds .filter.menu .item .floating.label,
  2283. .dashboard.issues .filter.menu .item .floating.label {
  2284. top: 7px;
  2285. left: 90%;
  2286. width: 15%;
  2287. }
  2288. .dashboard.feeds .filter.menu .jump.item,
  2289. .dashboard.issues .filter.menu .jump.item {
  2290. margin: 1px;
  2291. padding-right: 0;
  2292. }
  2293. .dashboard.feeds .filter.menu .menu,
  2294. .dashboard.issues .filter.menu .menu {
  2295. max-height: 300px;
  2296. overflow-x: auto;
  2297. right: 0!important;
  2298. left: auto!important;
  2299. }
  2300. .dashboard.feeds .ui.right .head.menu,
  2301. .dashboard.issues .ui.right .head.menu {
  2302. margin-top: -5px;
  2303. }
  2304. .dashboard.feeds .ui.right .head.menu .item.active,
  2305. .dashboard.issues .ui.right .head.menu .item.active {
  2306. color: #d9453d;
  2307. }
  2308. .dashboard.feeds .head.menu .octicon,
  2309. .dashboard.issues .head.menu .octicon {
  2310. margin-right: 5px;
  2311. }
  2312. .feeds .news .ui.avatar {
  2313. margin-top: 13px;
  2314. }
  2315. .feeds .news p {
  2316. line-height: 1em;
  2317. }
  2318. .feeds .news .time-since {
  2319. font-size: 13px;
  2320. }
  2321. .feeds .news .issue.title {
  2322. line-height: 1.1em;
  2323. width: 80%;
  2324. }
  2325. .feeds .news .push.news .content ul {
  2326. font-size: 13px;
  2327. list-style: none;
  2328. padding-left: 10px;
  2329. }
  2330. .feeds .news .push.news .content ul img {
  2331. margin-bottom: -2px;
  2332. }
  2333. .feeds .news .push.news .content ul .text.truncate {
  2334. width: 80%;
  2335. margin-bottom: -5px;
  2336. }
  2337. .feeds .news .commit-id {
  2338. font-family: Consolas, monospace;
  2339. }
  2340. .feeds .news code {
  2341. padding: 1px;
  2342. font-size: 85%;
  2343. background-color: rgba(0, 0, 0, 0.04);
  2344. border-radius: 3px;
  2345. word-break: break-all;
  2346. }
  2347. .feeds .list .header {
  2348. padding-top: 10px;
  2349. padding-bottom: 5px;
  2350. }
  2351. .feeds .list .header .plus.icon {
  2352. margin-top: 5px;
  2353. margin-right: 0;
  2354. }
  2355. .feeds .list ul {
  2356. list-style: none;
  2357. margin: 0;
  2358. padding-left: 0;
  2359. }
  2360. .feeds .list ul li:not(:last-child) {
  2361. border-bottom: 1px solid #EAEAEA;
  2362. }
  2363. .feeds .list ul li.private {
  2364. background-color: #fcf8e9;
  2365. }
  2366. .feeds .list ul li a {
  2367. padding: 6px 1.2em;
  2368. display: block;
  2369. }
  2370. .feeds .list ul li a .octicon {
  2371. margin-right: 6px;
  2372. color: #888;
  2373. }
  2374. .feeds .list .repo-owner-name-list .item-name {
  2375. max-width: 70%;
  2376. margin-bottom: -4px;
  2377. }
  2378. .feeds .list #collaborative-repo-list .owner-and-repo {
  2379. max-width: 80%;
  2380. margin-bottom: -5px;
  2381. }
  2382. .feeds .list #collaborative-repo-list .owner-name {
  2383. max-width: 120px;
  2384. margin-bottom: -5px;
  2385. }
  2386. .admin {
  2387. padding-top: 15px;
  2388. padding-bottom: 80px;
  2389. }
  2390. .admin .table.segment {
  2391. padding: 0;
  2392. font-size: 13px;
  2393. }
  2394. .admin .table.segment:not(.striped) {
  2395. padding-top: 5px;
  2396. }
  2397. .admin .table.segment:not(.striped) thead th:last-child {
  2398. padding-right: 5px !important;
  2399. }
  2400. .admin .table.segment th {
  2401. padding-top: 5px;
  2402. padding-bottom: 5px;
  2403. }
  2404. .admin .table.segment:not(.select) th:first-of-type,
  2405. .admin .table.segment:not(.select) td:first-of-type {
  2406. padding-left: 15px !important;
  2407. }
  2408. .admin .ui.header,
  2409. .admin .ui.segment {
  2410. box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
  2411. }
  2412. .admin.user .email {
  2413. max-width: 200px;
  2414. }
  2415. .admin dl.admin-dl-horizontal {
  2416. padding: 20px;
  2417. margin: 0;
  2418. }
  2419. .admin dl.admin-dl-horizontal dd {
  2420. margin-left: 240px;
  2421. }
  2422. .admin dl.admin-dl-horizontal dt {
  2423. font-weight: bolder;
  2424. float: left;
  2425. width: 250px;
  2426. clear: left;
  2427. overflow: hidden;
  2428. text-overflow: ellipsis;
  2429. white-space: nowrap;
  2430. }
  2431. .explore {
  2432. padding-top: 15px;
  2433. padding-bottom: 80px;
  2434. }
  2435. .ui.repository.list .item {
  2436. padding-bottom: 25px;
  2437. }
  2438. .ui.repository.list .item:not(:first-child) {
  2439. border-top: 1px solid #eee;
  2440. padding-top: 25px;
  2441. }
  2442. .ui.repository.list .item .ui.header {
  2443. font-size: 1.5rem;
  2444. padding-bottom: 10px;
  2445. }
  2446. .ui.repository.list .item .ui.header .name {
  2447. word-break: break-all;
  2448. }
  2449. .ui.repository.list .item .ui.header .metas {
  2450. color: #888;
  2451. font-size: 13px;
  2452. font-weight: normal;
  2453. }
  2454. .ui.repository.list .item .ui.header .metas span:not(:last-child) {
  2455. margin-right: 5px;
  2456. }
  2457. .ui.repository.list .item .time {
  2458. font-size: 12px;
  2459. color: #808080;
  2460. }