gogs.css 55 KB

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