gogs.css 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950
  1. html,
  2. body {
  3. height: 100%;
  4. }
  5. .octicon,
  6. .fa {
  7. width: 16px;
  8. text-align: center;
  9. }
  10. .fa {
  11. font-size: 14px;
  12. }
  13. .container {
  14. max-width: 1170px;
  15. padding: 0 1.5em;
  16. margin: auto;
  17. }
  18. img.avatar-16 {
  19. width: 16px;
  20. height: 16px;
  21. vertical-align: middle;
  22. }
  23. img.avatar-24 {
  24. width: 24px;
  25. height: 24px;
  26. vertical-align: middle;
  27. }
  28. img.avatar-30 {
  29. width: 30px;
  30. height: 30px;
  31. vertical-align: middle;
  32. }
  33. img.avatar-40 {
  34. width: 40px;
  35. height: 40px;
  36. vertical-align: middle;
  37. }
  38. img.avatar-48 {
  39. width: 48px;
  40. height: 48px;
  41. vertical-align: middle;
  42. }
  43. img.avatar-100 {
  44. width: 100px;
  45. height: 100px;
  46. vertical-align: middle;
  47. }
  48. #wrapper {
  49. padding: 0;
  50. margin: 0 0 -55px 0;
  51. min-height: 100%;
  52. }
  53. #footer {
  54. background-color: white;
  55. border-top: 1px solid #d6d6d6;
  56. clear: both;
  57. width: 100%;
  58. color: #888888;
  59. }
  60. #footer .container {
  61. padding: 15px;
  62. }
  63. #footer .official,
  64. #footer .version {
  65. color: #888888;
  66. }
  67. #footer-links > * {
  68. border-left: 1px solid #d6d6d6;
  69. padding-left: 8px;
  70. margin-left: 5px;
  71. }
  72. #footer-links > *:first-child {
  73. border-left: none;
  74. }
  75. #footer-lang {
  76. position: relative;
  77. }
  78. #footer-lang .drop-down {
  79. top: -64px;
  80. left: -2px;
  81. position: absolute;
  82. height: 59px;
  83. z-index: 100;
  84. font-size: 12px;
  85. width: 120%;
  86. }
  87. #footer-lang .drop-down li > a {
  88. padding: 3px 9px;
  89. }
  90. #header {
  91. background-color: #428bca;
  92. height: 44px;
  93. }
  94. #header > .menu-line > li > a {
  95. display: inline-block;
  96. color: #ffffff;
  97. }
  98. #header > .menu-line > li > a:hover {
  99. background-color: transparent;
  100. color: #fff65f;
  101. }
  102. #header > .menu-line > li.head {
  103. color: #ffffff;
  104. }
  105. #header > .menu-line > li.hover a:after {
  106. bottom: -9px;
  107. color: #ffffff;
  108. }
  109. #header > .menu-line > li.current > a {
  110. color: #fff65f;
  111. font-weight: bold;
  112. }
  113. #header-nav-user {
  114. height: 44px;
  115. }
  116. #header-nav-user img {
  117. margin: -4px 10px 0 0;
  118. border-radius: 3px;
  119. }
  120. #header-nav-sign-out > a:hover {
  121. color: #ff908b !important;
  122. }
  123. #header-nav-logo {
  124. padding: 6px 1.2em;
  125. }
  126. #header-nav-explore,
  127. #header-nav-help {
  128. font-size: 14px;
  129. }
  130. #header-new-repo-menu {
  131. width: 180px;
  132. background-color: #FFF;
  133. top: 44px;
  134. border-top: none;
  135. left: -66px;
  136. }
  137. #header-new-repo-menu .octicon {
  138. margin-right: 6px;
  139. font-size: 1.1em;
  140. }
  141. .switching-list {
  142. width: 100%;
  143. list-style: none;
  144. }
  145. .switching-list > li {
  146. border-bottom: 1px solid #eaeaea;
  147. }
  148. .switching-list > li:last-child {
  149. border-bottom: none;
  150. }
  151. .switching-list > li > a {
  152. padding: .4em 1.2em;
  153. display: block;
  154. color: #444;
  155. }
  156. .switching-list > li > a:hover {
  157. background-color: #428bca !important;
  158. color: #fff !important;
  159. }
  160. .social-buttons .btn {
  161. border: none;
  162. font-size: 16px;
  163. border-radius: 4px;
  164. margin-right: 12px;
  165. font-family: 'PT Sans Narrow', sans-serif;
  166. padding: 5px 12px;
  167. color: #FFF;
  168. }
  169. .social-buttons .btn .fa {
  170. margin-right: 6px;
  171. font-size: 16px;
  172. }
  173. .social-buttons .twitter {
  174. background-color: #1c6399;
  175. }
  176. .social-buttons .twitter:hover {
  177. background-color: #1c5487;
  178. }
  179. .social-buttons .github {
  180. background-color: #444;
  181. }
  182. .social-buttons .github:hover {
  183. background-color: #333;
  184. }
  185. .social-buttons .google {
  186. background-color: #C03D20;
  187. }
  188. .social-buttons .google:hover {
  189. background-color: #D56060;
  190. }
  191. .social-buttons .weibo {
  192. background-color: #bf1324;
  193. }
  194. .social-buttons .weibo:hover {
  195. background-color: #b94c4a;
  196. }
  197. .social-buttons .qq {
  198. background-color: #03a2ef;
  199. }
  200. .social-buttons .qq:hover {
  201. background-color: #3cb3ff;
  202. }
  203. .main-wrapper {
  204. padding: 20px 0 40px;
  205. }
  206. .user-list {
  207. width: auto;
  208. min-width: 180px;
  209. max-width: 300px;
  210. }
  211. .user-list img {
  212. width: 28px;
  213. height: 28px;
  214. margin-right: 1em;
  215. margin-top: 1px;
  216. vertical-align: middle;
  217. }
  218. .user-list li {
  219. cursor: pointer;
  220. font-weight: bold;
  221. }
  222. .text-success {
  223. color: #3c763d;
  224. }
  225. .text-blue {
  226. color: #15c;
  227. }
  228. .text-red {
  229. color: #DD4B39;
  230. }
  231. .text-grey {
  232. color: #999999;
  233. }
  234. .text-black {
  235. color: #444444;
  236. }
  237. .table {
  238. width: 100%;
  239. max-width: 100%;
  240. }
  241. .table > thead > tr > th,
  242. .table > tbody > tr > th,
  243. .table > tfoot > tr > th,
  244. .table > thead > tr > td,
  245. .table > tbody > tr > td,
  246. .table > tfoot > tr > td {
  247. border-top: 1px solid #e7eaec;
  248. line-height: 1.42857;
  249. padding: 8px;
  250. vertical-align: top;
  251. }
  252. th {
  253. text-align: left;
  254. }
  255. .markdown {
  256. background-color: white;
  257. font-size: 16px;
  258. line-height: 24px;
  259. }
  260. .markdown .markdown-body {
  261. padding-left: 24px;
  262. padding-right: 16px;
  263. }
  264. .markdown h5,
  265. .markdown h6 {
  266. font-size: 1em;
  267. }
  268. .markdown ul {
  269. padding: 10px 0 0 15px;
  270. }
  271. .markdown ul li {
  272. list-style: inside;
  273. }
  274. .markdown ol li {
  275. list-style: decimal inside;
  276. }
  277. .markdown li {
  278. line-height: 1.6;
  279. margin-top: 6px;
  280. }
  281. .markdown li:first-child {
  282. margin-top: 0;
  283. }
  284. .markdown > pre {
  285. font-size: 14px;
  286. line-height: 1.6;
  287. overflow: auto;
  288. border: 1px solid #ddd;
  289. border-radius: .25em;
  290. margin: 5px 0;
  291. padding: 10px;
  292. background-color: #f8f8f8;
  293. }
  294. .markdown img {
  295. padding: 10px 0;
  296. max-width: 100%;
  297. }
  298. .markdown a {
  299. color: #428BCA;
  300. }
  301. .markdown h1,
  302. .markdown h2,
  303. .markdown h3,
  304. .markdown h4,
  305. .markdown h5,
  306. .markdown h6 {
  307. line-height: 1.7;
  308. padding: 15px 0 0;
  309. margin: 0 0 15px;
  310. color: #444;
  311. font-weight: bold;
  312. }
  313. .markdown h1,
  314. .markdown h2 {
  315. border-bottom: 1px solid #E0E0E0;
  316. }
  317. .markdown h2 {
  318. border-bottom: 1px solid #E0E0E0;
  319. }
  320. .markdown h1 {
  321. color: #000;
  322. font-size: 33px;
  323. }
  324. .markdown h2 {
  325. color: #333;
  326. font-size: 28px;
  327. }
  328. .markdown h3 {
  329. font-size: 22px;
  330. }
  331. .markdown h4 {
  332. font-size: 18px;
  333. }
  334. .markdown table {
  335. border-collapse: collapse;
  336. border-spacing: 0;
  337. display: block;
  338. overflow: auto;
  339. width: 100%;
  340. margin: 0 0 9px;
  341. }
  342. .markdown table th {
  343. font-weight: 700;
  344. }
  345. .markdown table th,
  346. .markdown table td {
  347. border: 1px solid #DDD;
  348. padding: 6px 13px;
  349. }
  350. .markdown table tr {
  351. background-color: #FFF;
  352. border-top: 1px solid #CCC;
  353. }
  354. .markdown table tr:nth-child(2n) {
  355. background-color: #f8f8f8;
  356. }
  357. .markdown dl dt {
  358. font-style: italic;
  359. margin-top: 9px;
  360. }
  361. .markdown dl dd {
  362. margin: 0 0 9px;
  363. padding: 0 9px;
  364. }
  365. .markdown blockquote,
  366. .markdown blockquote p {
  367. font-size: 14px;
  368. background-color: #f5f5f5;
  369. }
  370. .markdown > pre.linenums {
  371. padding: 0;
  372. }
  373. .markdown > pre > ol.linenums {
  374. list-style: none;
  375. padding: 0;
  376. }
  377. .markdown > pre > ol.linenums > li {
  378. margin-top: 2px;
  379. }
  380. .markdown > pre.nums-style > ol.linenums {
  381. list-style-type: decimal;
  382. padding: 0 0 0 40px;
  383. -webkit-box-shadow: inset 40px 0 0 #f5f5f5, inset 41px 0 0 #ccc;
  384. box-shadow: inset 40px 0 0 #f5f5f5, inset 41px 0 0 #ccc;
  385. }
  386. .markdown > pre > code {
  387. white-space: pre;
  388. word-wrap: normal;
  389. }
  390. .markdown > pre > ol.linenums > li {
  391. padding: 0 10px;
  392. }
  393. .markdown > pre > ol.linenums > li:first-child {
  394. padding-top: 12px;
  395. }
  396. .markdown > pre > ol.linenums > li:last-child {
  397. padding-bottom: 12px;
  398. }
  399. .markdown > pre.nums-style > ol.linenums > li {
  400. border-left: 1px solid #ddd;
  401. }
  402. .markdown hr {
  403. border: none;
  404. color: #ccc;
  405. height: 4px;
  406. padding: 0;
  407. margin: 15px 0;
  408. border-bottom: 2px solid #EEE;
  409. }
  410. .markdown blockquote:last-child,
  411. .markdown ul:last-child,
  412. .markdown ol:last-child,
  413. .markdown > pre:last-child,
  414. .markdown > pre:last-child,
  415. .markdown p:last-child {
  416. margin-bottom: 0;
  417. }
  418. .markdown .btn {
  419. color: #fff;
  420. }
  421. .markdown h1 a,
  422. .markdown h2 a,
  423. .markdown h3 a {
  424. text-decoration: none;
  425. }
  426. .markdown h1 a.anchor,
  427. .markdown h2 a.anchor,
  428. .markdown h3 a.anchor,
  429. .markdown h4 a.anchor,
  430. .markdown h5 a.anchor,
  431. .markdown h6 a.anchor {
  432. text-decoration: none;
  433. line-height: 1;
  434. padding-left: 0;
  435. margin-left: -24px;
  436. top: 15%;
  437. }
  438. .markdown a span.octicon {
  439. font-size: 16px;
  440. line-height: 1;
  441. display: inline-block;
  442. text-decoration: none;
  443. -webkit-font-smoothing: antialiased;
  444. margin-left: 30px;
  445. }
  446. .markdown a span.octicon-link {
  447. opacity: 0;
  448. color: #444;
  449. }
  450. .markdown h1:hover .octicon-link,
  451. .markdown h2:hover .octicon-link,
  452. .markdown h3:hover .octicon-link,
  453. .markdown h4:hover .octicon-link,
  454. .markdown h5:hover .octicon-link,
  455. .markdown h6:hover .octicon-link {
  456. display: inline-block;
  457. opacity: 1;
  458. }
  459. /* Author: jmblog */
  460. /* Project: https://github.com/jmblog/color-themes-for-google-code-prettify */
  461. /* GitHub Theme */
  462. /* Pretty printing styles. Used with prettify.js. */
  463. /* SPAN elements with the classes below are added by prettyprint. */
  464. /* plain text */
  465. .pln {
  466. color: #333333;
  467. }
  468. @media screen {
  469. /* string content */
  470. .str {
  471. color: #dd1144;
  472. }
  473. /* a keyword */
  474. .kwd {
  475. color: #333333;
  476. }
  477. /* a comment */
  478. .com {
  479. color: #999988;
  480. font-style: italic;
  481. }
  482. /* a type name */
  483. .typ {
  484. color: #445588;
  485. }
  486. /* a literal value */
  487. .lit {
  488. color: #445588;
  489. }
  490. /* punctuation */
  491. .pun {
  492. color: #333333;
  493. }
  494. /* lisp open bracket */
  495. .opn {
  496. color: #333333;
  497. }
  498. /* lisp close bracket */
  499. .clo {
  500. color: #333333;
  501. }
  502. /* a markup tag name */
  503. .tag {
  504. color: navy;
  505. }
  506. /* a markup attribute name */
  507. .atn {
  508. color: teal;
  509. }
  510. /* a markup attribute value */
  511. .atv {
  512. color: #dd1144;
  513. }
  514. /* a declaration */
  515. .dec {
  516. color: #333333;
  517. }
  518. /* a variable name */
  519. .var {
  520. color: teal;
  521. }
  522. /* a function name */
  523. .fun {
  524. color: #990000;
  525. }
  526. }
  527. /* Use higher contrast and text-weight for printable form. */
  528. @media print, projection {
  529. .str {
  530. color: #006600;
  531. }
  532. .kwd {
  533. color: #006;
  534. font-weight: bold;
  535. }
  536. .com {
  537. color: #600;
  538. font-style: italic;
  539. }
  540. .typ {
  541. color: #404;
  542. font-weight: bold;
  543. }
  544. .lit {
  545. color: #004444;
  546. }
  547. .pun,
  548. .opn,
  549. .clo {
  550. color: #444400;
  551. }
  552. .tag {
  553. color: #006;
  554. font-weight: bold;
  555. }
  556. .atn {
  557. color: #440044;
  558. }
  559. .atv {
  560. color: #006600;
  561. }
  562. }
  563. /* Specify class=linenums on a pre to get line numbering */
  564. ol.linenums {
  565. margin-top: 0;
  566. margin-bottom: 0;
  567. }
  568. #promo-wrapper {
  569. padding-top: 50px;
  570. background-color: #428bca;
  571. }
  572. #promo-logo {
  573. margin-right: 50px;
  574. padding-bottom: 50px;
  575. }
  576. #promo-logo img {
  577. max-width: 250px;
  578. }
  579. #promo-content {
  580. color: #FFF;
  581. margin-left: 300px;
  582. }
  583. #promo-content h1,
  584. #promo-content h2 {
  585. font-family: 'PT Sans Narrow', sans-serif;
  586. line-height: 60px;
  587. margin-bottom: 0;
  588. text-shadow: 0 2px 1px rgba(0, 0, 0, 0.5);
  589. }
  590. #promo-content h1 {
  591. font-size: 96px;
  592. line-height: 96px;
  593. margin-bottom: 30px;
  594. }
  595. #promo-content h2 {
  596. font-size: 52px;
  597. line-height: 70px;
  598. font-weight: normal;
  599. }
  600. #promo-form {
  601. padding: 40px 0;
  602. }
  603. #promo-form .ipt-large {
  604. border: none;
  605. border-radius: 4px;
  606. font-size: 18px;
  607. margin-right: 12px;
  608. }
  609. #promo-form .ipt-large:focus {
  610. box-shadow: 0 0 3px #FFF;
  611. }
  612. #promo-form .btn-large {
  613. border-radius: 4px;
  614. font-size: 18px;
  615. margin-right: 12px;
  616. }
  617. #promo-social {
  618. padding-bottom: 60px;
  619. }
  620. #promo-social .qq {
  621. box-shadow: 0 0 1px #1c6399;
  622. }
  623. #feature-wrapper {
  624. font-family: Lato, sans-serif;
  625. font-size: 18px;
  626. padding: 50px 0 100px 0;
  627. }
  628. #feature-wrapper .octicon {
  629. color: #d9453d;
  630. font-size: 60px;
  631. height: 60px;
  632. width: 60px;
  633. line-height: 60px;
  634. margin-right: 12px;
  635. vertical-align: middle;
  636. display: inline-block;
  637. }
  638. #feature-wrapper b {
  639. color: #000;
  640. font-size: 24px;
  641. display: inline-block;
  642. line-height: 60px;
  643. }
  644. #feature-wrapper p {
  645. margin: 1em 0;
  646. line-height: 40px;
  647. padding-right: 30px;
  648. }
  649. #feature-wrapper a {
  650. color: #d9453d;
  651. }
  652. #feature-wrapper a:hover {
  653. color: #ff635a;
  654. }
  655. #feature-wrapper .grid-1-2 {
  656. margin-bottom: 30px;
  657. }
  658. /*
  659. The dashboard page style
  660. */
  661. #dashboard-header {
  662. border-bottom: 1px solid #d6d6d6;
  663. height: 69px;
  664. }
  665. #dashboard-header > .menu-line > li {
  666. padding: 12px 0;
  667. }
  668. #dashboard-header > .menu-line > li.right > a {
  669. font-size: 1.2em;
  670. color: #444444;
  671. }
  672. #dashboard-header > .menu-line > li.right > a:hover {
  673. background-color: transparent;
  674. color: #d9453d;
  675. }
  676. #dashboard-header > .menu-line > li.right > a .octicon {
  677. margin-right: 6px;
  678. }
  679. #dashboard-header > .menu-line > li.right .current {
  680. border-bottom: 2px solid #D26911;
  681. }
  682. #dashboard-selection-menu a img {
  683. margin: -4px 10px 0 0;
  684. }
  685. #dashboard {
  686. padding: 24px 0;
  687. }
  688. #dashboard-sidebar .panel-header h4 {
  689. margin: 0;
  690. }
  691. #dashboard-sidebar > .panel {
  692. margin-bottom: 24px;
  693. border-bottom-left-radius: .3em;
  694. border-bottom-right-radius: .3em;
  695. }
  696. #dashboard-sidebar-menu {
  697. border-top-left-radius: .3em;
  698. border-top-right-radius: .3em;
  699. width: 100%;
  700. height: 35px;
  701. }
  702. #dashboard-sidebar-menu > li {
  703. border: 1px solid #d6d6d6;
  704. float: left;
  705. margin-right: -1px;
  706. border-bottom: none;
  707. }
  708. #dashboard-sidebar-menu > li > a {
  709. padding-top: .4em;
  710. padding-bottom: .4em;
  711. }
  712. #dashboard-sidebar-menu > li.first {
  713. border-top-left-radius: .3em;
  714. }
  715. #dashboard-sidebar-menu > li.first > a {
  716. border-top-left-radius: .3em;
  717. }
  718. #dashboard-sidebar-menu > li.drop {
  719. border: none;
  720. float: right;
  721. }
  722. #dashboard-sidebar-menu > li.js-tab-nav-show {
  723. background-color: #EEEEEE;
  724. }
  725. #dashboard-sidebar-menu > li.last {
  726. border-top-right-radius: .3em;
  727. }
  728. #dashboard-sidebar-menu > li.last > a {
  729. border-top-right-radius: .3em;
  730. }
  731. #dashboard-my-mirror li,
  732. #dashboard-my-org li,
  733. #dashboard-my-repo li {
  734. border-bottom: 1px solid #EAEAEA;
  735. }
  736. #dashboard-my-mirror li.private,
  737. #dashboard-my-org li.private,
  738. #dashboard-my-repo li.private {
  739. background-color: #fcf8e9;
  740. }
  741. #dashboard-my-mirror li:last-child,
  742. #dashboard-my-org li:last-child,
  743. #dashboard-my-repo li:last-child {
  744. border-bottom: none;
  745. }
  746. #dashboard-my-mirror li a,
  747. #dashboard-my-org li a,
  748. #dashboard-my-repo li a {
  749. padding: 6px 1.2em;
  750. display: block;
  751. }
  752. #dashboard-my-mirror li a .octicon,
  753. #dashboard-my-org li a .octicon,
  754. #dashboard-my-repo li a .octicon {
  755. margin-right: 6px;
  756. color: #888;
  757. }
  758. #dashboard-my-mirror li a:hover .repo-name,
  759. #dashboard-my-org li a:hover .repo-name,
  760. #dashboard-my-repo li a:hover .repo-name {
  761. text-decoration: underline;
  762. }
  763. #dashboard-my-mirror .repo-name,
  764. #dashboard-my-org .repo-name,
  765. #dashboard-my-repo .repo-name {
  766. font-size: 1.1em;
  767. }
  768. #dashboard-my-mirror .repo-star,
  769. #dashboard-my-org .repo-star,
  770. #dashboard-my-repo .repo-star {
  771. color: #888;
  772. }
  773. #dashboard-my-mirror .repo-contrib-header,
  774. #dashboard-my-org .repo-contrib-header,
  775. #dashboard-my-repo .repo-contrib-header {
  776. border-top: 1px solid #d6d6d6;
  777. }
  778. #dashboard-my-repo .panel-header .octicon {
  779. margin-right: 6px;
  780. font-size: 12px;
  781. }
  782. #dashboard-my-repo .repo-count {
  783. margin-left: 4px;
  784. }
  785. #dashboard-my-org,
  786. #dashboard-my-mirror {
  787. display: none;
  788. }
  789. #dashboard-new-repo {
  790. width: 50px;
  791. height: 35px;
  792. padding-top: 6px;
  793. margin-right: 1px;
  794. border-top-left-radius: .3em;
  795. border-top-right-radius: .3em;
  796. }
  797. #dashboard-new-repo .octicon {
  798. font-size: 2em;
  799. }
  800. #dashboard-new-repo-menu {
  801. top: 35px;
  802. width: 180px;
  803. background-color: #FFF;
  804. left: -132px;
  805. }
  806. #dashboard-new-repo-menu .octicon {
  807. margin-right: 6px;
  808. font-size: 1.1em;
  809. }
  810. #dashboard-selection-menu {
  811. width: auto;
  812. max-width: 300px;
  813. }
  814. #dashboard-selection-menu > .drop-down {
  815. top: 56px;
  816. }
  817. #dashboard-selection-menu li {
  818. white-space: nowrap;
  819. }
  820. #dashboard-selection-menu li.checked .octicon {
  821. opacity: 1;
  822. }
  823. #dashboard-selection-menu li a {
  824. text-overflow: ellipsis;
  825. -o-text-overflow: ellipsis;
  826. overflow: hidden;
  827. }
  828. #dashboard-switch-menu {
  829. border-bottom-left-radius: .3em;
  830. border-bottom-right-radius: .3em;
  831. }
  832. #dashboard-switch-menu > li > a img {
  833. margin-top: 0;
  834. }
  835. #dashboard-switch-menu > li > a .octicon {
  836. margin-right: 12px;
  837. }
  838. #dashboard-switch-menu > li:last-child > a {
  839. border-bottom-left-radius: .3em;
  840. border-bottom-right-radius: .3em;
  841. }
  842. #dashboard-switch-menu > li.org > a .octicon {
  843. opacity: 0;
  844. }
  845. #dashboard-switch-menu > li.checked > a {
  846. font-weight: bold;
  847. }
  848. #dashboard-switch-menu > li.checked > a .octicon {
  849. opacity: 1;
  850. }
  851. #dashboard-news .news {
  852. margin-right: 2.4em;
  853. padding-bottom: 1em;
  854. margin-bottom: 1em;
  855. border-bottom: 1px solid #E6E6E6;
  856. min-height: 30px;
  857. }
  858. #dashboard-news .news .mega-octicon {
  859. color: #CCC;
  860. }
  861. #dashboard-news .news .avatar {
  862. margin: 0 1.2em;
  863. }
  864. #dashboard-news .news .news-content,
  865. #dashboard-news .news .news-time {
  866. color: #888;
  867. }
  868. #dashboard-news .push-news .news-content li {
  869. margin-left: 1em;
  870. }
  871. #dashboard-news .push-news .news-content li img {
  872. vertical-align: inherit;
  873. margin-bottom: -2px;
  874. }
  875. /*
  876. The register and sign-in page style
  877. */
  878. #sign-wrapper {
  879. padding: 60px 0;
  880. }
  881. .sign-panel {
  882. background-color: #ffffff;
  883. }
  884. .sign-form.form-align .field {
  885. margin: 1.2em 0 2em 0;
  886. }
  887. .sign-form.form-align .ipt-large {
  888. width: 300px;
  889. }
  890. .sign-form.form-align label,
  891. .sign-form.form-align .form-label {
  892. width: 160px;
  893. }
  894. .sign-form.form-align .alert {
  895. margin: 0 30px 24px 30px;
  896. }
  897. .sign-form.form-align:hover {
  898. box-shadow: 0 0 6px #CCC;
  899. }
  900. .sign-form.container {
  901. padding: 0;
  902. width: 600px;
  903. margin-bottom: 80px;
  904. }
  905. #sign-up-form .panel-content {
  906. margin-top: 1.2em;
  907. }
  908. #sign-up-form h2 {
  909. margin: .5em 1em;
  910. }
  911. #sign-social {
  912. position: relative;
  913. margin: 40px 0;
  914. }
  915. #sign-social .or {
  916. position: absolute;
  917. width: 30px;
  918. top: -52px;
  919. left: 50%;
  920. background-color: #FFF;
  921. margin-left: -15px;
  922. }
  923. /* repository main */
  924. #repo-wrapper {
  925. padding-bottom: 100px;
  926. }
  927. #repo-header {
  928. height: 69px;
  929. border-bottom: 1px solid #d6d6d6;
  930. background-color: #ffffff;
  931. }
  932. #repo-header-name {
  933. line-height: 66px;
  934. color: #888888;
  935. font-size: 1.6em;
  936. font-weight: normal;
  937. margin-bottom: 0;
  938. }
  939. #repo-header-name i {
  940. margin-right: 12px;
  941. vertical-align: middle;
  942. }
  943. #repo-header-name .divider {
  944. margin: 0 4px;
  945. }
  946. #repo-header-meta {
  947. line-height: 66px;
  948. }
  949. #repo-header-meta li > a {
  950. padding: 0;
  951. }
  952. #repo-header-meta li > a:hover {
  953. background-color: transparent;
  954. }
  955. #repo-header-meta a > .btn {
  956. font-size: 1.05em;
  957. margin-left: 16px;
  958. line-height: 16px;
  959. }
  960. #repo-header-meta a > .btn i {
  961. margin-right: 6px;
  962. }
  963. #repo-header-meta a > .btn .num {
  964. margin-left: 6px;
  965. }
  966. #repo-header-download-btn > .btn > i {
  967. margin-right: 0 !important;
  968. }
  969. #repo-header-download-btn:hover:after,
  970. #repo-header-download-btn:hover .btn {
  971. background-color: #383838;
  972. color: #FFF;
  973. }
  974. #repo-header-download-btn:after {
  975. background-color: #444444;
  976. padding: 9px 16px 8px 0;
  977. margin-left: -8px !important;
  978. color: #FFF;
  979. border-top: 1px solid #444444;
  980. border-bottom: 1px solid #444444;
  981. border-top-right-radius: .25em;
  982. border-bottom-right-radius: .25em;
  983. }
  984. #repo-header-download-drop {
  985. line-height: 24px;
  986. width: 440px;
  987. top: 50px;
  988. left: -354px;
  989. padding: 20px;
  990. box-sizing: border-box;
  991. }
  992. #repo-header-download-drop .btn > i {
  993. margin-right: 6px;
  994. }
  995. #repo-content {
  996. padding: 18px 0;
  997. }
  998. #repo-clone-url {
  999. border-right: none;
  1000. width: 196px;
  1001. border-left: none;
  1002. }
  1003. #repo-clone-help {
  1004. clear: both;
  1005. line-height: 48px;
  1006. }
  1007. #repo-clone-zip {
  1008. line-height: 48px;
  1009. }
  1010. #repo-clone-zip a {
  1011. cursor: pointer;
  1012. color: white;
  1013. overflow: visible;
  1014. padding: .6em 1.2em;
  1015. }
  1016. #repo-clone-zip .btn {
  1017. margin: 0 6px;
  1018. }
  1019. #repo-desc {
  1020. font-size: 1.2em;
  1021. }
  1022. #repo-sidebar-nav .label {
  1023. font-size: 12px;
  1024. line-height: 1.4em;
  1025. margin-top: 2px;
  1026. }
  1027. #repo-sidebar-nav i {
  1028. margin-right: 6px;
  1029. }
  1030. #repo-file-nav {
  1031. padding: .6em 0 1em 0;
  1032. }
  1033. #repo-file-nav > li > a {
  1034. padding-left: 0;
  1035. }
  1036. #repo-file-nav > li > a:hover {
  1037. background-color: transparent;
  1038. }
  1039. #repo-file-nav li.repo-jump > a {
  1040. padding-right: 0;
  1041. }
  1042. #repo-file-nav li.repo-jump > a .btn {
  1043. margin-left: -1px;
  1044. }
  1045. #repo-branch-switch > a .btn {
  1046. padding-right: 30px;
  1047. }
  1048. #repo-branch-switch > a:after {
  1049. position: absolute;
  1050. top: 12px;
  1051. right: 30px;
  1052. margin-left: 0;
  1053. color: #444444;
  1054. }
  1055. #repo-branch-switch > .drop-down {
  1056. top: 40px;
  1057. left: 0;
  1058. }
  1059. #repo-branch-filter-ipt {
  1060. width: 100%;
  1061. border-left: none;
  1062. border-right: none;
  1063. box-sizing: border-box;
  1064. }
  1065. #repo-branch-tag .tab-nav {
  1066. border-bottom: 1px solid #EAEAEA;
  1067. }
  1068. #repo-branch-tag .tab-nav a {
  1069. padding: .3em .8em;
  1070. }
  1071. #repo-branch-tag .tab-nav .js-tab-nav-show {
  1072. background-color: #EEE;
  1073. font-weight: bold;
  1074. }
  1075. #repo-branch-list li i,
  1076. #repo-tag-list li i {
  1077. margin-right: 12px;
  1078. opacity: 0;
  1079. }
  1080. #repo-branch-list li.checked i,
  1081. #repo-tag-list li.checked i {
  1082. opacity: 1;
  1083. }
  1084. #repo-tag-list {
  1085. display: none;
  1086. }
  1087. #repo-bread .bread {
  1088. padding-right: 0;
  1089. font-size: 16px;
  1090. font-weight: bold;
  1091. }
  1092. #repo-main {
  1093. padding-right: 40px;
  1094. box-sizing: border-box;
  1095. }
  1096. #repo-files-table {
  1097. margin-bottom: 20px;
  1098. }
  1099. #repo-files-table th,
  1100. #repo-files-table td {
  1101. text-align: left;
  1102. line-height: 32px;
  1103. }
  1104. #repo-files-table td.icon {
  1105. width: 16px;
  1106. padding-right: .1em;
  1107. padding-left: 1em;
  1108. }
  1109. #repo-files-table td.name {
  1110. max-width: 120px;
  1111. }
  1112. #repo-files-table td.name .text-truncate {
  1113. max-width: 100%;
  1114. }
  1115. #repo-files-table td.age {
  1116. max-width: 120px;
  1117. text-align: right;
  1118. }
  1119. #repo-files-table td.msg {
  1120. max-width: 440px;
  1121. }
  1122. #repo-files-table td.msg .text-truncate {
  1123. max-width: 100%;
  1124. }
  1125. #repo-files-table td.age,
  1126. #repo-files-table td.size,
  1127. #repo-files-table td.msg a {
  1128. color: #888;
  1129. }
  1130. #repo-files-table td.msg a:hover {
  1131. color: #428BCA;
  1132. text-decoration: underline;
  1133. }
  1134. #repo-files-table tbody {
  1135. background-color: #FFF;
  1136. }
  1137. #repo-files-table tbody tr:hover {
  1138. background-color: #ffffEE;
  1139. }
  1140. #repo-files-table thead {
  1141. background-color: #F0F0F0;
  1142. }
  1143. #repo-files-table thead .author a {
  1144. margin: 0 .4em;
  1145. }
  1146. #repo-files-table thead .last-commit strong {
  1147. color: #444;
  1148. }
  1149. #repo-files-table thead .last-commit .text-truncate {
  1150. margin-left: .4em;
  1151. }
  1152. #repo-files-table thead .last-commit .text-truncate,
  1153. #repo-files-table thead .age {
  1154. font-weight: normal;
  1155. color: #888;
  1156. }
  1157. #repo-readme {
  1158. margin-bottom: 80px;
  1159. }
  1160. #repo-bare-start {
  1161. margin-bottom: 100px;
  1162. }
  1163. #repo-bare-start .panel-content {
  1164. background-color: #FFF;
  1165. }
  1166. #repo-bare-start pre {
  1167. margin: 0 40px;
  1168. padding: 6px 10px;
  1169. border: 1px solid #ddd;
  1170. background: #f8f8f8;
  1171. }
  1172. .repo-bare #repo-bare-start h2 {
  1173. margin-top: 30px;
  1174. margin-bottom: 24px;
  1175. }
  1176. .repo-bare #repo-header-meta {
  1177. display: none;
  1178. }
  1179. .repo-bare #repo-clone-ssh {
  1180. margin-left: 200px;
  1181. }
  1182. .repo-bare #repo-clone-copy {
  1183. margin-right: 200px;
  1184. }
  1185. .repo-bare #repo-clone-help {
  1186. clear: both;
  1187. width: 100%;
  1188. }
  1189. .repo-bare #repo-clone-url {
  1190. width: 520px;
  1191. }
  1192. /* repository create */
  1193. #team-create-form,
  1194. #repo-migrate-form,
  1195. #repo-create-form {
  1196. width: 800px;
  1197. margin: 60px auto auto auto;
  1198. background: white;
  1199. }
  1200. #team-create-form h2,
  1201. #repo-migrate-form h2,
  1202. #repo-create-form h2 {
  1203. margin: .5em 1em;
  1204. }
  1205. #team-create-form .field,
  1206. #repo-migrate-form .field,
  1207. #repo-create-form .field {
  1208. margin: 1.2em 0 2em 0;
  1209. }
  1210. #team-create-form .ipt,
  1211. #repo-migrate-form .ipt,
  1212. #repo-create-form .ipt {
  1213. width: 540px;
  1214. }
  1215. #team-create-form textarea,
  1216. #repo-migrate-form textarea,
  1217. #repo-create-form textarea {
  1218. height: 120px;
  1219. }
  1220. #team-create-form .avatar,
  1221. #repo-migrate-form .avatar,
  1222. #repo-create-form .avatar {
  1223. vertical-align: middle;
  1224. margin-right: .6em;
  1225. width: 28px;
  1226. height: 28px;
  1227. }
  1228. #team-create-form:hover,
  1229. #repo-migrate-form:hover,
  1230. #repo-create-form:hover {
  1231. box-shadow: 0px 0px 6px #CCC;
  1232. }
  1233. #repo-create-cancel {
  1234. margin-left: 4em;
  1235. }
  1236. #repo-create-owner-list {
  1237. top: 30px;
  1238. left: 0;
  1239. width: auto;
  1240. max-width: 300px;
  1241. }
  1242. #repo-create-owner-list .octicon {
  1243. margin-right: 12px;
  1244. opacity: 0;
  1245. }
  1246. #repo-create-owner-list .avatar {
  1247. width: 20px;
  1248. height: 20px;
  1249. }
  1250. #repo-create-owner-list li {
  1251. white-space: nowrap;
  1252. }
  1253. #repo-create-owner-list li.checked .octicon {
  1254. opacity: 1;
  1255. }
  1256. #repo-create-owner-list li a {
  1257. text-overflow: ellipsis;
  1258. -o-text-overflow: ellipsis;
  1259. overflow: hidden;
  1260. }
  1261. .file-name {
  1262. margin-left: 1em;
  1263. }
  1264. .file-size {
  1265. font-size: 13px;
  1266. color: #888;
  1267. margin-left: 1em;
  1268. }
  1269. .code-view {
  1270. overflow: auto;
  1271. overflow-x: auto;
  1272. overflow-y: hidden;
  1273. background: white;
  1274. }
  1275. .code-view .view-raw {
  1276. min-height: 40px;
  1277. text-align: center;
  1278. padding-top: 20px;
  1279. }
  1280. .code-view .view-raw .btn {
  1281. font-size: 1.05em;
  1282. line-height: 16px;
  1283. padding: 6px 8px;
  1284. }
  1285. .code-view table {
  1286. width: 100%;
  1287. }
  1288. .code-view table td {
  1289. padding: 0;
  1290. }
  1291. .code-view .lines-num {
  1292. text-align: right;
  1293. color: #999;
  1294. background: #f5f5f5;
  1295. width: 1%;
  1296. }
  1297. .code-view .lines-num span {
  1298. font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  1299. line-height: 18px;
  1300. padding: 0 8px 0 10px;
  1301. cursor: pointer;
  1302. display: block;
  1303. margin-top: 2px;
  1304. font-size: 12px;
  1305. }
  1306. .code-view .lines-code > pre {
  1307. border: none;
  1308. border-left: 1px solid #ddd;
  1309. }
  1310. .code-view .lines-code > pre > ol.linenums > li {
  1311. padding: 0 10px;
  1312. }
  1313. .code-view .lines-code > pre > ol.linenums > li.active {
  1314. background: #ffffdd;
  1315. }
  1316. .repo-setting-zone {
  1317. padding: 30px;
  1318. }
  1319. #team-repositories-list,
  1320. #team-members-list,
  1321. #repo-collab-list {
  1322. list-style: none;
  1323. padding: 10px 0 5px 0;
  1324. }
  1325. #team-repositories-list li.collab,
  1326. #team-members-list li.collab,
  1327. #repo-collab-list li.collab {
  1328. clear: both;
  1329. height: 50px;
  1330. padding: 0 15px 0 15px;
  1331. }
  1332. #team-repositories-list a.member,
  1333. #team-members-list a.member,
  1334. #repo-collab-list a.member {
  1335. color: #444;
  1336. height: 50px;
  1337. line-height: 50px;
  1338. }
  1339. #team-repositories-list a.member:hover,
  1340. #team-members-list a.member:hover,
  1341. #repo-collab-list a.member:hover {
  1342. color: #4183C4;
  1343. }
  1344. #team-repositories-list .avatar,
  1345. #team-members-list .avatar,
  1346. #repo-collab-list .avatar {
  1347. margin-right: 1em;
  1348. width: 40px;
  1349. }
  1350. #team-repositories-list .remove-collab,
  1351. #team-members-list .remove-collab,
  1352. #repo-collab-list .remove-collab {
  1353. color: #DD4B39;
  1354. }
  1355. .repo-user-list-block {
  1356. position: relative;
  1357. top: 5px;
  1358. }
  1359. .setting-list {
  1360. width: 100%;
  1361. list-style: none;
  1362. }
  1363. #admin-wrapper,
  1364. #setting-wrapper {
  1365. padding-bottom: 100px;
  1366. }
  1367. #setting-menu {
  1368. box-sizing: border-box;
  1369. }
  1370. #setting-menu li > a {
  1371. border-left: 2px solid #FFF;
  1372. background-color: #FFF;
  1373. }
  1374. #setting-menu li:hover {
  1375. border-color: #EAEAEA;
  1376. }
  1377. #setting-menu li:hover a {
  1378. border-left: 2px solid #EFEFEF;
  1379. background-color: #EFEFEF !important;
  1380. color: #000 !important;
  1381. }
  1382. #setting-menu li.current a {
  1383. color: #000 !important;
  1384. font-weight: bold;
  1385. border-left: 2px solid #d26911;
  1386. }
  1387. .setting-content {
  1388. margin-left: 32px;
  1389. }
  1390. #org-setting-form,
  1391. #repo-setting-form,
  1392. #user-profile-form {
  1393. background-color: #FFF;
  1394. padding: 30px 0;
  1395. }
  1396. #org-setting-form textarea,
  1397. #repo-setting-form textarea,
  1398. #user-profile-form textarea {
  1399. margin-left: 4px;
  1400. height: 100px;
  1401. }
  1402. #org-setting-form label,
  1403. #repo-setting-form label,
  1404. #user-profile-form label,
  1405. #org-setting-form .form-label,
  1406. #repo-setting-form .form-label,
  1407. #user-profile-form .form-label {
  1408. width: 240px;
  1409. }
  1410. #org-setting-form .ipt,
  1411. #repo-setting-form .ipt,
  1412. #user-profile-form .ipt {
  1413. width: 360px;
  1414. }
  1415. #org-setting-form .field,
  1416. #repo-setting-form .field,
  1417. #user-profile-form .field {
  1418. margin-bottom: 24px;
  1419. }
  1420. #repo-hooks-panel,
  1421. #repo-hooks-history-panel,
  1422. #user-social-panel,
  1423. #user-ssh-panel {
  1424. margin-bottom: 20px;
  1425. }
  1426. #repo-hooks-panel .setting-list,
  1427. #repo-hooks-history-panel .setting-list,
  1428. #user-social-panel .setting-list,
  1429. #user-ssh-panel .setting-list {
  1430. background-color: #FFF;
  1431. }
  1432. #repo-hooks-panel .setting-list li,
  1433. #repo-hooks-history-panel .setting-list li,
  1434. #user-social-panel .setting-list li,
  1435. #user-ssh-panel .setting-list li {
  1436. padding: 8px 20px;
  1437. border-bottom: 1px solid #eaeaea;
  1438. }
  1439. #repo-hooks-panel .setting-list li.ssh:hover,
  1440. #repo-hooks-history-panel .setting-list li.ssh:hover,
  1441. #user-social-panel .setting-list li.ssh:hover,
  1442. #user-ssh-panel .setting-list li.ssh:hover {
  1443. background-color: #ffffEE;
  1444. }
  1445. #repo-hooks-panel .setting-list li i,
  1446. #repo-hooks-history-panel .setting-list li i,
  1447. #user-social-panel .setting-list li i,
  1448. #user-ssh-panel .setting-list li i {
  1449. padding-right: 5px;
  1450. }
  1451. #repo-hooks-panel .active-icon,
  1452. #repo-hooks-history-panel .active-icon,
  1453. #user-social-panel .active-icon,
  1454. #user-ssh-panel .active-icon {
  1455. width: 10px;
  1456. height: 10px;
  1457. border-radius: 6px;
  1458. padding: 0;
  1459. margin-right: 20px;
  1460. margin-top: 10px;
  1461. }
  1462. #repo-hooks-panel .ssh-content,
  1463. #repo-hooks-history-panel .ssh-content,
  1464. #user-social-panel .ssh-content,
  1465. #user-ssh-panel .ssh-content {
  1466. margin-left: 24px;
  1467. }
  1468. #repo-hooks-panel .ssh-content .octicon,
  1469. #repo-hooks-history-panel .ssh-content .octicon,
  1470. #user-social-panel .ssh-content .octicon,
  1471. #user-ssh-panel .ssh-content .octicon {
  1472. margin-right: 4px;
  1473. }
  1474. #repo-hooks-panel .ssh-content .print,
  1475. #repo-hooks-history-panel .ssh-content .print,
  1476. #user-social-panel .ssh-content .print,
  1477. #user-ssh-panel .ssh-content .print,
  1478. #repo-hooks-panel .ssh-content .activity,
  1479. #repo-hooks-history-panel .ssh-content .activity,
  1480. #user-social-panel .ssh-content .activity,
  1481. #user-ssh-panel .ssh-content .activity {
  1482. color: #888;
  1483. }
  1484. #repo-hooks-panel .ssh-delete-btn,
  1485. #repo-hooks-history-panel .ssh-delete-btn,
  1486. #user-social-panel .ssh-delete-btn,
  1487. #user-ssh-panel .ssh-delete-btn {
  1488. margin-top: 6px;
  1489. }
  1490. #user-ssh-add-form .panel-body {
  1491. background-color: #FFF;
  1492. padding: 30px 0;
  1493. }
  1494. #user-ssh-add-form .ipt {
  1495. width: 500px;
  1496. }
  1497. #user-ssh-add-form textarea {
  1498. height: 120px;
  1499. margin-left: 3px;
  1500. }
  1501. #user-ssh-add-form .field {
  1502. margin-bottom: 24px;
  1503. }
  1504. .repo-issue-wrapper {
  1505. padding: 18px 0;
  1506. }
  1507. .pr-main {
  1508. padding-right: 40px;
  1509. box-sizing: border-box;
  1510. }
  1511. .pr-sidebar {
  1512. border-left: 1px solid #DDD;
  1513. box-sizing: border-box;
  1514. }
  1515. #pr-sidebar-nav {
  1516. margin-top: 6px;
  1517. }
  1518. #pr-sidebar-nav li {
  1519. margin-bottom: 4px;
  1520. }
  1521. #pr-sidebar-nav li > a {
  1522. border: 1px solid transparent;
  1523. border-left: none;
  1524. }
  1525. #pr-sidebar-nav li > a:hover {
  1526. background-color: #FFF;
  1527. border-color: #DDD;
  1528. }
  1529. #pr-sidebar-nav .label {
  1530. font-size: 12px;
  1531. line-height: 1.4em;
  1532. margin-top: 1px;
  1533. }
  1534. #pr-sidebar-nav li.current a {
  1535. background-color: #FFF;
  1536. border-color: #DDD;
  1537. }
  1538. .pr-title .pr-num {
  1539. font-weight: normal;
  1540. color: #888;
  1541. }
  1542. .pr-meta {
  1543. color: #888;
  1544. }
  1545. .pr-meta .pr-author {
  1546. margin: 0 8px;
  1547. color: #444;
  1548. }
  1549. .pr-meta .pr-author:hover {
  1550. text-decoration: underline;
  1551. }
  1552. .pr-meta .pr-branch {
  1553. margin: 0 4px;
  1554. font-size: 12px;
  1555. padding: 4px 6px;
  1556. }
  1557. .pr-nav {
  1558. border-bottom: 1px solid #DDD;
  1559. margin-top: 16px;
  1560. margin-bottom: 16px;
  1561. }
  1562. .pr-nav .octicon {
  1563. margin-right: 4px;
  1564. }
  1565. .pr-nav li > a {
  1566. padding: 3px 9px !important;
  1567. border: 1px solid transparent;
  1568. border-bottom: none;
  1569. border-top-left-radius: .2em;
  1570. border-top-right-radius: .2em;
  1571. }
  1572. .pr-nav li > a .label {
  1573. padding: 1px 5px;
  1574. font-size: 12px;
  1575. margin-left: 4px;
  1576. }
  1577. .pr-nav li.js-tab-nav-show > a {
  1578. background-color: #FFF;
  1579. border-color: #E6E6E6;
  1580. }
  1581. .diff-bar .diff-add {
  1582. color: #65ad4e;
  1583. }
  1584. .diff-bar .diff-delete {
  1585. color: #d9453d;
  1586. }
  1587. .diff-bar .diff-status {
  1588. width: 50px;
  1589. background-color: #d9453d;
  1590. height: 10px;
  1591. margin-top: 7px;
  1592. margin-left: 4px;
  1593. margin-right: 4px;
  1594. border-radius: .2em;
  1595. }
  1596. .diff-bar .diff-status-inner {
  1597. width: 45%;
  1598. background-color: #65ad4e;
  1599. height: 10px;
  1600. border-top-left-radius: .2em;
  1601. border-bottom-left-radius: .2em;
  1602. }
  1603. #pr-commit,
  1604. #pr-file-diff,
  1605. #issue-add-comment-preview {
  1606. display: none;
  1607. }
  1608. #pr-conversation-list {
  1609. padding-right: 30px;
  1610. box-sizing: border-box;
  1611. }
  1612. .issue-comment,
  1613. .issue-commit,
  1614. .issue-line,
  1615. .issue-merge,
  1616. .issue-add-comment {
  1617. margin-bottom: 16px;
  1618. }
  1619. .issue-comment .author-avatar img {
  1620. margin-right: 12px;
  1621. }
  1622. .issue-comment .panel {
  1623. margin-left: 60px;
  1624. margin-top: -40px;
  1625. }
  1626. .issue-comment .panel-header {
  1627. font-size: 13px;
  1628. }
  1629. .issue-comment .author-name {
  1630. font-weight: bold;
  1631. }
  1632. .issue-comment .date {
  1633. margin-left: 4px;
  1634. font-style: italic;
  1635. color: #888;
  1636. }
  1637. .issue-comment .action > * {
  1638. margin-left: 4px;
  1639. font-size: 12px;
  1640. }
  1641. .issue-comment .action i {
  1642. font-size: 13px;
  1643. }
  1644. .issue-commit {
  1645. line-height: 32px;
  1646. }
  1647. .issue-commit i,
  1648. .issue-commit .author-avatar img {
  1649. margin-right: 16px;
  1650. }
  1651. .issue-commit .sha {
  1652. margin-left: 24px;
  1653. }
  1654. .issue-commit .message {
  1655. display: block;
  1656. margin-left: 88px;
  1657. padding-top: 4px;
  1658. line-height: 24px;
  1659. }
  1660. .issue-merge .ico {
  1661. width: 40px;
  1662. height: 40px;
  1663. text-align: center;
  1664. color: #FFF;
  1665. margin-right: 12px;
  1666. }
  1667. .issue-merge .ico i {
  1668. margin-top: 8px;
  1669. font-size: 24px;
  1670. }
  1671. .issue-merge .panel {
  1672. margin-left: 60px;
  1673. margin-top: -40px;
  1674. }
  1675. .issue-merge .panel-header {
  1676. font-size: 13px;
  1677. }
  1678. .issue-merge-ok .ico {
  1679. background-color: #65AD4E;
  1680. }
  1681. .issue-merge-ok .panel,
  1682. .issue-merge-ok .panel-content,
  1683. .issue-merge-ok .panel-header {
  1684. border-color: #65AD4E;
  1685. background-color: #FFF;
  1686. }
  1687. .issue-merge-ok .panel-header {
  1688. color: #508a3e;
  1689. }
  1690. .issue-line {
  1691. height: 4px;
  1692. background-color: #E6E6E6;
  1693. }
  1694. .issue-add-comment .panel {
  1695. margin-left: 60px;
  1696. margin-top: -40px;
  1697. }
  1698. .issue-add-comment .panel-header {
  1699. font-size: 13px;
  1700. padding-bottom: 0;
  1701. }
  1702. .issue-add-comment .add-nav > li > a {
  1703. padding: 4px 12px;
  1704. color: #444;
  1705. border: 1px solid #CCC;
  1706. margin-bottom: -1px;
  1707. font-size: 14px;
  1708. border-top-left-radius: .3em;
  1709. border-top-right-radius: .3em;
  1710. }
  1711. .issue-add-comment .add-nav > li > a:hover {
  1712. background-color: #FFF;
  1713. }
  1714. .issue-add-comment .add-nav > li.js-tab-nav-show > a {
  1715. background-color: #FFF;
  1716. }
  1717. textarea#issue-add-content {
  1718. width: 100%;
  1719. box-sizing: border-box;
  1720. height: 120px;
  1721. }
  1722. .org-header-alert .alert {
  1723. margin-top: 10px;
  1724. }
  1725. .org-header {
  1726. padding: 16px 0;
  1727. background-color: #FFF;
  1728. border-bottom: 1px solid #DDD;
  1729. }
  1730. .org-header img {
  1731. padding-right: 10px;
  1732. }
  1733. #org-home-header {
  1734. min-height: 100px;
  1735. }
  1736. #org-header {
  1737. height: 48px;
  1738. }
  1739. #org-header .org-name {
  1740. padding-left: 10px;
  1741. font-size: 1.4em;
  1742. height: 50px;
  1743. line-height: 50px;
  1744. margin-bottom: 0;
  1745. }
  1746. #org-header > div > .menu-line > li.right > a {
  1747. font-size: 1.2em;
  1748. color: #444444;
  1749. }
  1750. #org-header > div > .menu-line > li.right > a:hover {
  1751. background-color: transparent;
  1752. color: #d9453d;
  1753. }
  1754. #org-header > div > .menu-line > li.right > a .octicon {
  1755. margin-right: 6px;
  1756. }
  1757. #org-header > div > .menu-line > li.right .current {
  1758. border-bottom: 2px solid #D26911;
  1759. }
  1760. #org-home-header-info {
  1761. padding-top: 10px;
  1762. }
  1763. #org-home-header-info h2 {
  1764. font-size: 30px;
  1765. }
  1766. #org-home-header-info ul {
  1767. list-style: none;
  1768. }
  1769. #org-home-header-info ul li {
  1770. float: left;
  1771. padding-right: 5px;
  1772. }
  1773. #org-home-repo-list {
  1774. padding: 10px 0;
  1775. }
  1776. #org-repo-list {
  1777. padding: 10px 0;
  1778. }
  1779. #org-repo-list .org-repo-item {
  1780. border-top: 1px solid #eee;
  1781. padding: 30px 20px;
  1782. }
  1783. #org-repo-list .org-repo-item .org-repo-status {
  1784. list-style: none;
  1785. color: #888;
  1786. }
  1787. #org-repo-list .org-repo-item .org-repo-status li {
  1788. float: left;
  1789. margin-right: 6px;
  1790. }
  1791. #org-repo-list .org-repo-item h2 {
  1792. margin-bottom: 5px;
  1793. }
  1794. #org-repo-list .org-repo-item .org-repo-description {
  1795. margin: 0;
  1796. font-size: 14px;
  1797. color: #666;
  1798. }
  1799. #org-repo-list .org-repo-item .org-repo-updated {
  1800. font-size: 12px;
  1801. display: block;
  1802. margin: 5px 0 0;
  1803. color: #808080;
  1804. }
  1805. .org-sidebar {
  1806. margin: -80px 0 0 20px;
  1807. }
  1808. .org-sidebar .panel-footer {
  1809. padding: .8em 1.2em;
  1810. }
  1811. .org-sidebar .member-avatar-group {
  1812. padding: 15px;
  1813. }
  1814. .org-sidebar .member-avatar-group img {
  1815. width: 59px;
  1816. height: 59px;
  1817. border-radius: 3px;
  1818. }
  1819. #org-home-team-list {
  1820. padding: 0 15px;
  1821. }
  1822. #org-home-team-list ul {
  1823. list-style: none;
  1824. padding-top: 10px;
  1825. }
  1826. #org-home-team-list ul li {
  1827. padding: 10px 0;
  1828. border-bottom: 1px solid #eee;
  1829. }
  1830. #org-home-team-list ul li:last-child {
  1831. border-bottom: 0;
  1832. }
  1833. .team-name {
  1834. display: block;
  1835. font-size: 14px;
  1836. overflow: hidden;
  1837. text-overflow: ellipsis;
  1838. white-space: nowrap;
  1839. }
  1840. .team-meta {
  1841. margin-top: 0;
  1842. margin-bottom: 0;
  1843. color: #777;
  1844. }
  1845. .org-toolbar {
  1846. padding: 10px 0;
  1847. border-bottom: 1px solid #eee;
  1848. }
  1849. #org-member-list .org-member-item {
  1850. height: 50px;
  1851. line-height: 50px;
  1852. border-bottom: 1px solid #eee;
  1853. padding: 15px 20px;
  1854. }
  1855. #org-member-list .org-member-item .member-name {
  1856. padding-left: 15px;
  1857. }
  1858. #org-member-list .org-member-item ul {
  1859. list-style: none;
  1860. }
  1861. #org-member-list .org-member-item ul li {
  1862. text-align: center;
  1863. display: inline-block;
  1864. }
  1865. .invite-box {
  1866. padding: 50px 0;
  1867. min-height: 130px;
  1868. margin: 0 auto;
  1869. width: 50%;
  1870. }
  1871. .invite-box input {
  1872. width: 300px;
  1873. }
  1874. #org-member-list-block {
  1875. padding-top: 2px;
  1876. }
  1877. .org-team-list .org-team-list-item {
  1878. float: left;
  1879. padding: 15px;
  1880. width: 555px;
  1881. }
  1882. .org-team-list .org-team-list-item .member-avatar-group {
  1883. padding: 5px 15px;
  1884. }
  1885. .org-team-list .org-team-list-item .member-avatar-group img {
  1886. width: 38px;
  1887. height: 38px;
  1888. border-radius: 3px;
  1889. }
  1890. #team-create-form .note {
  1891. margin-left: 153px;
  1892. }
  1893. #org-team-card .desc {
  1894. font-size: 14px;
  1895. padding: 10px 20px;
  1896. }
  1897. #org-team-card .team-stats {
  1898. padding: 0 20px 10px 20px;
  1899. text-transform: uppercase;
  1900. border-bottom: 1px solid #dddddd;
  1901. }
  1902. #org-team-card .panel-footer {
  1903. padding: 10px 20px;
  1904. }
  1905. #team-repositories-list .panel-body .search,
  1906. #team-members-list .panel-body .search {
  1907. padding: 4px 0 10px 10px;
  1908. border-bottom: 1px solid #dddddd;
  1909. }
  1910. #team-repositories-list li.collab,
  1911. #team-members-list li.collab {
  1912. padding-top: 10px !important;
  1913. border-bottom: 1px solid #dddddd;
  1914. }
  1915. #team-repositories-list li:last-child,
  1916. #team-members-list li:last-child {
  1917. border-bottom: 0 !important;
  1918. }
  1919. #team-repositories-list li a .octicon {
  1920. color: #888;
  1921. }
  1922. #team-repositories-list li .member {
  1923. color: #428bca;
  1924. font-size: 14px;
  1925. height: 40px;
  1926. line-height: 40px;
  1927. }
  1928. .admin-desc {
  1929. padding: 10px 20px;
  1930. }
  1931. .admin-table {
  1932. padding: 15px 20px 5px 20px;
  1933. }
  1934. .dl-horizontal dt {
  1935. float: left;
  1936. width: 160px;
  1937. clear: left;
  1938. overflow: hidden;
  1939. text-overflow: ellipsis;
  1940. white-space: nowrap;
  1941. }
  1942. .admin-dl-horizontal {
  1943. padding: 20px;
  1944. }
  1945. .admin-dl-horizontal > dt {
  1946. width: 250px;
  1947. }
  1948. .admin-dl-horizontal > dd {
  1949. margin-left: 240px;
  1950. }