gogs.css 52 KB

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