gogs.css 59 KB

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