gogs.css 59 KB

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