gogs.css 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061
  1. /*!
  2. * Gogs - Go Git Service (http://gogits.org)
  3. * Copyright 2014 Gogs.
  4. * Licensed under MIT (https://github.com/gogits/gogs/blob/master/LICENSE)
  5. */
  6. body {
  7. background: #F6F6F6;
  8. }
  9. html, body {
  10. height: 100%;
  11. font-family: Arial, Helvetica, sans-serif;
  12. }
  13. /* override bs3 */
  14. .tooltip-inner {
  15. border-radius: 3px;
  16. background: #333;
  17. border: none;
  18. }
  19. .tooltip-arrow {
  20. border-bottom-color: #333 !important;
  21. }
  22. .tooltip-arrow:before {
  23. border-bottom-color: transparent !important;
  24. }
  25. .fa {
  26. margin: 0 .5em;
  27. }
  28. .fa-m {
  29. margin: 0;
  30. }
  31. .list-group .list-group-item {
  32. background-color: transparent;
  33. }
  34. .btn {
  35. cursor: pointer;
  36. }
  37. .panel-default .panel-heading {
  38. background-color: #FAFAFA;
  39. border-bottom: 1px solid #DDD;
  40. font-weight: bold;
  41. }
  42. /* gogits nav header */
  43. .masthead {
  44. background-color: #428bca;
  45. box-shadow: inset 0 -2px 5px rgba(0, 0, 0, .1);
  46. margin: 0;
  47. }
  48. /* gogits nav item link */
  49. .nav-item {
  50. position: relative;
  51. display: inline-block;
  52. padding: 10px;
  53. font-weight: bold;
  54. color: #EEE;
  55. font-size: 100%;
  56. height: 46px;
  57. margin-top: 3px;
  58. }
  59. #nav-logo {
  60. padding-left: 0;
  61. padding-right: 0;
  62. margin-right: 10px;
  63. margin-top: 0;
  64. }
  65. .nav-item:hover,
  66. .nav-item:focus {
  67. color: #fff;
  68. text-decoration: none;
  69. }
  70. .nav-item.navbar-btn {
  71. cursor: pointer;
  72. margin-top: 8px;
  73. padding: 5px 15px;
  74. height: 30px;
  75. }
  76. .nav-item.navbar-right .fa {
  77. margin: 0;
  78. }
  79. #nav-search-form {
  80. width: 300px;
  81. margin-top: 0;
  82. }
  83. #nav-search-form button {
  84. margin-top: 0;
  85. background-image: none;
  86. background-color: #F6F6F6;
  87. }
  88. #nav-search-form input[type=search] {
  89. background-color: #F6F6F6;
  90. border-bottom-right-radius: 3px;
  91. border-top-right-radius: 3px;
  92. -webkit-transition: width linear .25s;
  93. }
  94. #nav-search-form input[type=search]:focus {
  95. background-color: #FFF;
  96. border-color: #D9D9D9;
  97. width: 320px;
  98. }
  99. /* gogits nav item active status */
  100. #masthead .nav .active {
  101. color: #fff;
  102. }
  103. #masthead .nav .active:after {
  104. position: absolute;
  105. bottom: -1px;
  106. left: 50%;
  107. width: 0;
  108. height: 0;
  109. margin-left: -5px;
  110. vertical-align: middle;
  111. content: " ";
  112. border-right: 5px solid transparent;
  113. border-bottom: 5px solid;
  114. border-left: 5px solid transparent;
  115. }
  116. #nav-logo:after {
  117. bottom: -4px !important;
  118. }
  119. #nav-avatar:after {
  120. bottom: -4px !important;
  121. }
  122. .nav .tooltip {
  123. border: none;
  124. }
  125. /* gogits logo */
  126. #nav-avatar {
  127. margin-top: 0;
  128. }
  129. #logo, #nav-avatar img {
  130. width: 28px;
  131. height: 28px;
  132. }
  133. #nav-out {
  134. margin-top: 10px;
  135. padding: 5px 0;
  136. margin-left: 10px;
  137. height: 28px;
  138. float: right;
  139. }
  140. #nav-signin, #nav-signup {
  141. float: right;
  142. margin-left: 1em;
  143. }
  144. #nav-out .fa {
  145. vertical-align: -10%;
  146. margin: 0 .5em;
  147. }
  148. /* gogits body */
  149. #body {
  150. padding-bottom: 60px;
  151. margin-top: 30px;
  152. }
  153. #body .btn-default {
  154. background-color: #FFF;
  155. background-image: linear-gradient(to bottom, #FFF 0, #FAFAFA 100%);
  156. }
  157. #body-nav {
  158. background-color: #FFF;
  159. border-bottom: 1px solid #DDD;
  160. height: 66px
  161. }
  162. #body-nav .nav {
  163. font-size: 14px;
  164. margin-top: 12px;
  165. }
  166. #body-nav .nav-pills li a {
  167. color: #444;
  168. }
  169. #body-nav .nav-pills li.active a {
  170. font-weight: bold;
  171. border-bottom: 2px solid #d26911;
  172. background-color: transparent;
  173. color: #444;
  174. }
  175. #body-nav .nav-pills li:hover a {
  176. background-color: transparent;
  177. text-decoration: underline;
  178. }
  179. /* gogits login card */
  180. .card {
  181. margin: auto;
  182. padding: 30px;
  183. background: #fff;
  184. border: 1px solid #ccc;
  185. border-radius: 5px;
  186. box-sizing: border-box;
  187. }
  188. .card h3 {
  189. margin-top: 0;
  190. margin-bottom: 30px;
  191. padding-bottom: 20px;
  192. border-bottom: 1px solid #ccc;
  193. }
  194. #login-card {
  195. width: 600px;
  196. }
  197. #login-card .form-control {
  198. padding: 6px 12px;
  199. box-sizing: content-box;
  200. }
  201. #login-card .control-label {
  202. height: 44px;
  203. line-height: 30px;
  204. }
  205. #install-card {
  206. width: 800px;
  207. }
  208. #install-card .form-group {
  209. margin-left: 0;
  210. margin-right: 0;
  211. }
  212. .card .btn {
  213. cursor: pointer;
  214. }
  215. .card .btn-primary {
  216. margin-right: 1.2em;
  217. }
  218. #social-login {
  219. margin-top: 40px;
  220. padding-top: 40px;
  221. border-top: 1px solid #ccc;
  222. position: relative;
  223. }
  224. #social-login .btn {
  225. float: none;
  226. margin: auto 4px;
  227. }
  228. #social-login .btn .fa {
  229. margin-left: 0;
  230. margin-right: 4px;
  231. }
  232. #social-login .btn span {
  233. display: inline-block;
  234. vertical-align: top;
  235. font-size: 16px;
  236. margin-top: 5px;
  237. }
  238. #social-login h4 {
  239. position: absolute;
  240. top: -20px;
  241. width: 100%;
  242. text-align: center;
  243. background-color: transparent;
  244. }
  245. #social-login h4 span {
  246. background-color: #FFF;
  247. padding: 0 12px;
  248. }
  249. /* gogs-user-profile */
  250. #user-avatar {
  251. width: 200px;
  252. height: 200px;
  253. border-radius: 6px;
  254. }
  255. #user-avatar-commit {
  256. width: 16px;
  257. height: 16px;
  258. border-radius: 2px;
  259. }
  260. #user-name, #user-full-name {
  261. font-size: 1.6em;
  262. font-weight: bold;
  263. }
  264. #user-name {
  265. margin-bottom: 20px;
  266. margin-top: 10px;
  267. }
  268. #user-full-name {
  269. margin-top: 20px;
  270. }
  271. #user-profile .profile-info .list-group-item {
  272. background-color: transparent;
  273. padding-top: 18px;
  274. color: #666;
  275. }
  276. #user-profile .profile-info .list-group-item a {
  277. margin: 0;
  278. padding: 0;
  279. display: inline;
  280. color: #0093c4;
  281. }
  282. #user-profile .profile-info .list-group {
  283. border-top: 1px solid #ccc;
  284. padding-bottom: 18px;
  285. border-bottom: 1px solid #ccc;
  286. padding-left: 18px;
  287. padding-right: 18px;
  288. }
  289. #user-profile .profile-rel .col-md-6 {
  290. text-align: center;
  291. padding-bottom: 12px;
  292. }
  293. #user-profile .profile-rel strong {
  294. font-size: 24px;
  295. color: #444;
  296. display: block;
  297. }
  298. #user-profile .profile-rel p {
  299. margin-right: 0;
  300. color: #888;
  301. }
  302. #user-activity .tab-pane {
  303. padding: 20px;
  304. }
  305. #user-act-tabs li.active a {
  306. border-bottom-color: #ddd;
  307. }
  308. /* gogits repo create */
  309. #repo-create, #org-create {
  310. width: 800px;
  311. }
  312. #repo-create textarea[name=desc] {
  313. height: 8em;
  314. }
  315. #repo-import-auth {
  316. width: 100%;
  317. margin-top: 48px;
  318. box-sizing: border-box;
  319. }
  320. #repo-import-auth .form-group {
  321. box-sizing: border-box;
  322. margin-left: 0;
  323. margin-right: 0;
  324. }
  325. /* gogits user setting */
  326. #user-setting-nav.repo-setting-nav {
  327. background-color: #FFF;
  328. border: 1px solid #CCC;
  329. padding: 0;
  330. padding-top: 10px;
  331. }
  332. #user-setting-nav > h4, #user-setting-container > h4, #user-setting-container > div > h4,
  333. #ssh-keys > h4, #user-delete > h4, #repo-setting-container .tab-pane > h4 {
  334. padding-bottom: 18px;
  335. margin-bottom: 18px;
  336. border-bottom: 1px solid #CCC;
  337. }
  338. #user-setting-nav .list-group .list-group-item a {
  339. margin-left: 0;
  340. padding: .6em 1.2em;
  341. font-size: 14px;
  342. color: #3B73AF;
  343. }
  344. #user-setting-nav .list-group .list-group-item {
  345. background-color: transparent;
  346. margin-bottom: .6em;
  347. }
  348. #user-setting-nav .list-group .list-group-item-success a {
  349. font-weight: bold;
  350. color: #444;
  351. }
  352. .admin-nav {
  353. background-color: #FFF;
  354. padding-top: 10px;
  355. padding-left: 0;
  356. padding-right: 0;
  357. border: 1px solid #D8D8D8;
  358. }
  359. .admin-nav li {
  360. margin-bottom: 8px;
  361. border-left: 4px solid transparent;
  362. }
  363. .admin-nav li:hover {
  364. border-left-color: #EEE;
  365. }
  366. .admin-nav li.active:hover {
  367. border-left: 4px solid #DD4B39;
  368. }
  369. #repo-setting-container {
  370. padding-right: 0;
  371. }
  372. #repo-setting-container .form-horizontal label {
  373. line-height: 30px;
  374. }
  375. #repo-collab-list li.collab {
  376. margin-bottom: .6em;
  377. }
  378. #repo-collab-list .avatar {
  379. margin-right: 1em;
  380. width: 40px;
  381. }
  382. #repo-collab-list a.member {
  383. color: #444;
  384. }
  385. #repo-collab-list .remove-collab, #repo-hooks-list .remove-hook {
  386. color: #DD4B39;
  387. }
  388. #repo-collab-form .dropdown-menu {
  389. margin-left: 15px;
  390. margin-top: 4px;
  391. padding: 0;
  392. }
  393. #repo-collab-form .dropdown-menu li {
  394. padding: 0 1em;
  395. line-height: 36px;
  396. cursor: pointer;
  397. font-weight: bold;
  398. }
  399. #repo-collab-form .dropdown-menu li:hover {
  400. background-color: #e8f0ff;
  401. }
  402. #repo-collab-form .dropdown-menu img {
  403. width: 28px;
  404. height: 28px;
  405. margin-right: 1em;
  406. vertical-align: middle;
  407. margin-top: -3px;
  408. }
  409. #repo-collab-form .dropdown-menu ul {
  410. margin-bottom: 0;
  411. }
  412. #repo-hooks-list li {
  413. line-height: 40px;
  414. border-top: 1px solid #DDD;
  415. height: 40px;
  416. }
  417. #repo-hooks-list .link {
  418. display: inline-block;
  419. max-width: 360px;
  420. overflow: hidden;
  421. text-overflow: ellipsis;
  422. height: 40px;
  423. line-height: 40px;
  424. white-space: nowrap;
  425. }
  426. /* gogits user ssh keys */
  427. #ssh-keys .list-group-item {
  428. padding: 15px 0;
  429. border-bottom: 1px solid #DDD;
  430. }
  431. #ssh-keys .list-group-item .delete {
  432. margin: -5px 50px 0;
  433. }
  434. #ssh-keys .list-group-item:after {
  435. clear: both;
  436. }
  437. #ssh-keys .name {
  438. font-size: 14px;
  439. font-weight: bold;
  440. }
  441. #ssh-keys .print {
  442. padding-left: 1em;
  443. color: #888;
  444. }
  445. #ssh-add {
  446. display: inline-block;
  447. color: white;
  448. cursor: pointer;
  449. margin-left: 0;
  450. border-radius: 3px;
  451. }
  452. #ssh-form textarea {
  453. height: 16em;
  454. }
  455. /* #feed */
  456. #feed-right .repo-panel .panel-heading .btn {
  457. margin-top: -4px;
  458. }
  459. #feed-right .repo-panel .panel-body {
  460. padding: 0;
  461. }
  462. #feed-right .repo-panel .list-group {
  463. margin-bottom: 0;
  464. }
  465. #feed-right .repo-panel .list-group-item a {
  466. display: block;
  467. margin-left: 0;
  468. background-color: transparent;
  469. padding-left: 0;
  470. font-weight: bold;
  471. }
  472. #feed-right .repo-panel .list-group-item .fa {
  473. color: #666;
  474. }
  475. #feed-right .repo-panel .list-group-item {
  476. font-size: 14px;
  477. line-height: 32px;
  478. border-bottom: 1px solid #DDD;
  479. padding-left: 15px;
  480. clear: both;
  481. }
  482. #feed-right .repo-panel .list-group-item:last-child {
  483. border-bottom: none;
  484. }
  485. #feed-right .repo-panel .list-group-item:hover {
  486. background-color: #eafffd;
  487. background-color: rgba(65, 131, 196, 0.1);
  488. }
  489. #feed-right .repo-panel span.stars {
  490. color: #666;
  491. margin-right: 1em;
  492. }
  493. #user-dashboard-repo-new .btn-sm.dropdown-toggle {
  494. padding: 3px 8px;
  495. }
  496. #user-dashboard-repo-new .dropdown-menu, #nav-repo-new .dropdown-menu {
  497. padding: 0;
  498. margin: 0;
  499. }
  500. #user-dashboard-repo-new ul, #nav-repo-new ul {
  501. margin: 0;
  502. width: 200px;
  503. }
  504. #user-dashboard-repo-new li a, #nav-repo-new li a {
  505. line-height: 36px;
  506. display: block;
  507. padding: 0 18px;
  508. color: #444;
  509. }
  510. #user-dashboard-repo-new li a:hover, #nav-repo-new li a:hover {
  511. background: #0093c4;
  512. color: #FFF;
  513. }
  514. #nav-repo-new button {
  515. border: none;
  516. background: transparent;
  517. padding: 0;
  518. width: 15px;
  519. }
  520. #nav-repo-new li .fa {
  521. margin: 0 .5em;
  522. }
  523. #dashboard-switch .btn, #repo-owner-switch .btn {
  524. height: 40px;
  525. }
  526. #dashboard-switch {
  527. margin-top: 14px;
  528. margin-right: 18px;
  529. }
  530. #dashboard-switch .dropdown-menu,#repo-owner-switch .dropdown-menu {
  531. padding: 0;
  532. }
  533. #dashboard-switch-menu {
  534. width: 180px;
  535. margin-bottom: 0;
  536. padding-bottom: 0;
  537. }
  538. #dashboard-switch-menu > li > a {
  539. display: block;
  540. padding: .8em 1.2em;
  541. }
  542. #dashboard-switch-menu > li > a:hover {
  543. text-decoration: none;
  544. }
  545. #dashboard-switch-menu > li > a img, #dashboard-switch button img {
  546. margin-right: 6px;
  547. }
  548. #dashboard-switch-menu > li {
  549. border-bottom: 1px solid #eaeaea;
  550. }
  551. #dashboard-switch-menu > li .fa {
  552. opacity: 0;
  553. margin-right: 16px;
  554. }
  555. #dashboard-switch-menu > li.checked .fa {
  556. opacity: 1;
  557. }
  558. #dashboard-switch-menu > li:last-child {
  559. border-bottom: none;
  560. }
  561. /* gogits repo single page */
  562. #body-nav.repo-nav {
  563. padding-top: 16px;
  564. padding-bottom: 30px;
  565. height: auto;
  566. }
  567. .repo-nav .name {
  568. margin-top: 15px;
  569. }
  570. .repo-nav .desc {
  571. color: #888;
  572. margin-bottom: 0;
  573. }
  574. .repo-nav h3 .fa {
  575. color: #BBB;
  576. margin-left: 0;
  577. }
  578. .repo-nav .actions {
  579. padding-top: 20px;
  580. }
  581. .repo-nav .btn-default {
  582. font-family: Tahoma, Arial, sans-serif;
  583. }
  584. #repo-watching .dropdown-menu {
  585. width: 280px;
  586. padding: 0;
  587. }
  588. #repo-watching .dropdown-menu .dropdown-item:hover .dropdown-header, #repo-watching .dropdown-item .dropdown-header.text-primary {
  589. color: rgb(65, 131, 196);
  590. cursor: pointer;
  591. }
  592. #repo-watching .dropdown-menu .description {
  593. padding: 0 20px;
  594. color: #888;
  595. }
  596. #repo-watching .dropdown-menu .dropdown-header {
  597. color: #444;
  598. font-weight: bold;
  599. font-size: 14px;
  600. margin-bottom: 4px;
  601. }
  602. #repo-toolbar {
  603. border-bottom: 1px solid #DDD;
  604. background-color: #FFF;
  605. height: 40px;
  606. font-size: 14px;
  607. }
  608. #repo-toolbar .navbar-default {
  609. border: none;
  610. height: 39px;
  611. }
  612. #repo-toolbar .nav > li > a {
  613. height: 39px;
  614. }
  615. #repo-toolbar .nav .tmp {
  616. padding: 0 6px;
  617. }
  618. #repo-toolbar .nav .tmp a {
  619. display: inline-block;
  620. padding-left: 6px;
  621. padding-right: 6px;
  622. }
  623. #repo-toolbar .nav .tmp a:hover {
  624. text-decoration: none;
  625. }
  626. #repo-toolbar .nav .tmp .btn {
  627. margin-top: -2px;
  628. }
  629. #repo-toolbar .nav .active {
  630. color: #F6F6F6;
  631. }
  632. #repo-toolbar .nav > .active > a:after {
  633. border-bottom-color: #999;
  634. }
  635. #repo-toolbar .navbar.nav-toolbar {
  636. margin-bottom: 0;
  637. }
  638. #repo-toolbar .navbar-collapse {
  639. padding: 0;
  640. }
  641. #repo-toolbar ul.navbar-right {
  642. margin-right: 0;
  643. }
  644. .activity-list {
  645. font-size: 14px;
  646. }
  647. .activity-list .icon {
  648. font-size: 20px;
  649. color: #aaa;
  650. float: left;
  651. }
  652. .activity-list .info {
  653. margin: 0 0 0 40px;
  654. line-height: 1.7em;
  655. }
  656. .activity-list .meta {
  657. color: #aaa;
  658. }
  659. .activity-list li {
  660. padding: 15px 0;
  661. border-top: 1px solid #ddd;
  662. }
  663. .activity-list li:first-child {
  664. border-top: none;
  665. }
  666. .repo-list li {
  667. padding: 15px 0;
  668. border-top: 1px solid #ddd;
  669. }
  670. .repo-list li:first-child {
  671. border-top: none;
  672. }
  673. .repo-list h4 {
  674. font-weight: bold;
  675. font-size: 24px;
  676. }
  677. .repo-list .meta {
  678. margin: 15px 0 0;
  679. font-size: 14px;
  680. }
  681. .repo-list .desc {
  682. font-size: 15px;
  683. }
  684. .repo-list .meta .fa {
  685. margin: 0 0 0 20px;
  686. }
  687. .repo-list .meta,
  688. .repo-list .info {
  689. color: #999;
  690. }
  691. .popover .repo-clone-div {
  692. min-width: 200px;
  693. }
  694. #repo-clone .dropdown-menu {
  695. width: 400px;
  696. padding: 20px;
  697. }
  698. #repo-clone .input-group {
  699. margin-bottom: 15px;
  700. }
  701. #repo-clone .zclip {
  702. left: auto !important;
  703. }
  704. /* #source */
  705. #source, #commits {
  706. margin-top: -20px;
  707. }
  708. #commits-pager {
  709. margin-top: 0;
  710. }
  711. #source .source-toolbar:after {
  712. clear: both;
  713. }
  714. #source .source-toolbar .branch-switch {
  715. display: inline-block;
  716. }
  717. #source .source-toolbar .breadcrumb {
  718. margin: 0 .5em;
  719. padding: 6px 15px;
  720. font-size: 16px;
  721. vertical-align: middle;
  722. display: inline-block;
  723. background-color: transparent;
  724. }
  725. #source .source-toolbar,
  726. #source .info-box,
  727. #source .file-content {
  728. margin: 0 0 10px;
  729. }
  730. .info-box .info-head,
  731. .info-box .info-content {
  732. padding: 9px 20px;
  733. }
  734. .info-box .info-head {
  735. font-weight: normal;
  736. }
  737. .info-box .info-content a,
  738. .info-box .info-head a {
  739. color: #666;
  740. }
  741. .file-list {
  742. background-color: #fafafa;
  743. }
  744. .file-list .icon {
  745. font-size: 17px;
  746. padding: 5px 0 4px 10px;
  747. width: 50px;
  748. color: #999;
  749. text-align: right;
  750. }
  751. .file-list .wrap {
  752. display: inline-block;
  753. overflow: hidden;
  754. text-overflow: ellipsis;
  755. vertical-align: top;
  756. white-space: nowrap;
  757. }
  758. .file-list .name .wrap {
  759. max-width: 180px;
  760. }
  761. .file-list .text .wrap {
  762. max-width: 450px;
  763. }
  764. .file-list .date .wrap {
  765. max-width: 120px;
  766. padding: 0 20px 0 0;
  767. }
  768. .file-list .date {
  769. text-align: right;
  770. }
  771. .file-content .file-head {
  772. font-size: 18px;
  773. }
  774. .file-content .file-head .icon {
  775. color: #666;
  776. margin: 0 .5em 0 0;
  777. }
  778. .file-content .file-head .file-size {
  779. font-size: 13px;
  780. color: #888;
  781. margin-left: 1em;
  782. }
  783. .file-content .file-body {
  784. padding: 30px 30px 50px;
  785. border: none;
  786. background-color: #FFF;
  787. overflow: auto;
  788. overflow-x: auto;
  789. overflow-y: hidden;
  790. }
  791. .file-content .file-body.file-code pre {
  792. background-color: #FFF;
  793. border: none;
  794. }
  795. .file-content .file-body.file-code {
  796. padding: 0;
  797. }
  798. .file-content .file-body.file-code .lines-code > pre {
  799. border: none;
  800. background: none;
  801. border-left: 1px solid #ddd;
  802. }
  803. .file-content .file-body.file-code .lines-code ol.linenums > .active {
  804. background: #ffffdd;
  805. }
  806. .file-content .file-body.file-code .lines-num {
  807. text-align: right;
  808. color: #999;
  809. background: #fafafa;
  810. width: 1%;
  811. }
  812. .file-content .file-body.file-code .lines-ellipsis {
  813. background-color: #FAFAFA;
  814. color: #999;
  815. width: 1%;
  816. }
  817. .file-content .file-body.file-code .lines-num span {
  818. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  819. line-height: 1.6;
  820. padding: 0 8px 0 10px;
  821. cursor: pointer;
  822. display: block;
  823. margin-top: 2px;
  824. font-size: 90%;
  825. }
  826. .file-content .file-body.file-code .lines-num span:first-child {
  827. margin-top: 0;
  828. }
  829. .file-content .file-body.file-code > table {
  830. width: 100%;
  831. }
  832. .file-content .file-body.file-code > table > tbody > tr,
  833. .file-content .file-body.file-code > table > tbody > tr > td,
  834. .file-content .file-body.file-code > table {
  835. border: none;
  836. background: none;
  837. }
  838. .branch-list th, .commit-list th {
  839. background-color: #FFF;
  840. line-height: 28px !important;
  841. }
  842. .branch-list td {
  843. line-height: 36px !important;
  844. }
  845. .branch-box tr:hover td, .commit-box tr:hover td {
  846. background-color: rgba(19, 95, 215, 0.06) !important;
  847. }
  848. .branch-box .name, .commit-box .author {
  849. padding-left: 20px;
  850. }
  851. .branch-box .name {
  852. font-size: 15px;
  853. }
  854. .branch-box .action {
  855. width: 150px;
  856. }
  857. .branch-box td.date, .branch-box td.behind, .branch-box td.ahead {
  858. width: 120px;
  859. font-family: Verdana, Arial, sans-serif;
  860. }
  861. .branch-box .graph {
  862. display: block;
  863. height: 3px;
  864. }
  865. .branch-box .behind {
  866. text-align: right;
  867. direction: rtl;
  868. }
  869. .branch-box .behind .graph {
  870. background-color: #888;
  871. }
  872. .branch-box .ahead .graph {
  873. background-color: #0093c4;
  874. }
  875. .branch-box .branch-main {
  876. background-color: #444;
  877. color: #FFF;
  878. border-color: #444;
  879. }
  880. .branch-box .branch-main a {
  881. color: #FFF;
  882. }
  883. .branch-box .branch-main .name .btn {
  884. margin-left: .5em;
  885. }
  886. #commits-search-form {
  887. margin-top: 4px;
  888. }
  889. .commit-box .avatar, .diff-head-box .avatar {
  890. width: 20px;
  891. height: 20px;
  892. margin-right: 8px;
  893. vertical-align: top;
  894. }
  895. .commit-box td {
  896. background-color: #FFF;
  897. }
  898. .commit-list .date {
  899. width: 120px;
  900. }
  901. .commit-list .author {
  902. min-width: 180px;
  903. }
  904. .commit-list .sha a {
  905. font-family: Consolas, Menlo, Monaco, "Lucida Console", monospace;
  906. font-size: 14px;
  907. }
  908. .guide-box pre, .guide-box .input-group {
  909. margin-top: 20px;
  910. margin-bottom: 30px;
  911. line-height: 24px;
  912. }
  913. .guide-box input[readonly] {
  914. background-color: #FFF;
  915. }
  916. .guide-box, .diff-head-box {
  917. margin-top: 4px;
  918. }
  919. .guide-box .zclip {
  920. left: auto !important;
  921. }
  922. .diff-head-box h4 {
  923. margin-top: 0;
  924. margin-bottom: 0;
  925. line-height: 26px;
  926. }
  927. .diff-head-box p {
  928. margin-bottom: 0;
  929. }
  930. .diff-head-box .sha {
  931. margin-left: 8px;
  932. }
  933. .diff-head-box a.name {
  934. color: #444;
  935. margin-right: 8px;
  936. }
  937. .diff-head-box span.time {
  938. color: #888;
  939. }
  940. .diff-detail-box {
  941. margin-bottom: 16px;
  942. line-height: 30px;
  943. }
  944. .diff-detail-box span.status {
  945. display: inline-block;
  946. width: 12px;
  947. height: 12px;
  948. margin-right: 8px;
  949. vertical-align: middle;
  950. }
  951. .diff-detail-box ol {
  952. padding-left: 0;
  953. margin-bottom: 28px;
  954. }
  955. .diff-detail-box li {
  956. list-style: none;
  957. padding-bottom: 4px;
  958. margin-bottom: 4px;
  959. border-bottom: 1px dashed #DDD;
  960. padding-left: 6px;
  961. }
  962. .diff-detail-box span.status.modify {
  963. background-color: #f0db88;
  964. }
  965. .diff-detail-box span.status.add {
  966. background-color: #b4e2b4;
  967. }
  968. .diff-detail-box span.status.del {
  969. background-color: #e9aeae;
  970. }
  971. .diff-detail-box span.status.rename {
  972. background-color: #dad8ff;
  973. }
  974. .diff-file-box .panel-heading {
  975. padding: 10px 20px;
  976. line-height: 26px;
  977. }
  978. .diff-box .count {
  979. margin-right: 12px;
  980. }
  981. .diff-box .count .bar {
  982. width: 40px;
  983. display: inline-block;
  984. margin: 2px 4px 0 4px;
  985. vertical-align: text-top;
  986. }
  987. .diff-box .file {
  988. color: #888;
  989. }
  990. #source .file-content.diff-file-box {
  991. margin-bottom: 20px;
  992. }
  993. .diff-box .count .bar .add {
  994. background-color: #77c64a;
  995. height: 12px;
  996. }
  997. .diff-box .count .bar .del, .diff-box .count .bar {
  998. background-color: #e75316;
  999. height: 12px;
  1000. }
  1001. .diff-file-box .file-body.file-code .lines-code > pre {
  1002. margin: 0;
  1003. padding: 3px;
  1004. }
  1005. .diff-file-box .file-body.file-code .lines-num-old {
  1006. border-right: 1px solid #DDD;
  1007. }
  1008. .diff-file-box .code-bin td {
  1009. padding: 20px;
  1010. }
  1011. .diff-file-box .code-diff tbody tr.tag-code td, .diff-file-box .code-diff tbody tr.tag-code pre {
  1012. background-color: #E0E0E0 !important;
  1013. border-color: #ADADAD !important;
  1014. }
  1015. .diff-file-box .code-diff tbody tr.add-code td, .diff-file-box .code-diff tbody tr.add-code pre {
  1016. background-color: #d1ffd6 !important;
  1017. border-color: #b4e2b4 !important;
  1018. }
  1019. .diff-file-box .code-diff tbody tr.del-code td, .diff-file-box .code-diff tbody tr.del-code pre {
  1020. background-color: #ffe2dd !important;
  1021. border-color: #e9aeae !important;
  1022. }
  1023. .diff-file-box .code-diff tbody tr:hover td, .diff-file-box .code-diff tbody tr:hover pre {
  1024. background-color: #fff8d2 !important;
  1025. border-color: #f0db88 !important;
  1026. }
  1027. .diff-file-box .ellipsis-code pre {
  1028. color: #AAA;
  1029. }
  1030. /* issue */
  1031. #issue-create-form .avatar {
  1032. width: 50px;
  1033. height: 50px;
  1034. }
  1035. #issue-create-form .panel-body {
  1036. padding: 15px 0 0 0;
  1037. }
  1038. #issue-create-form .panel-body.form-group, #issue-create-form .tab-pane .form-group {
  1039. margin-bottom: 0;
  1040. }
  1041. #issue-create-form .nav-tabs, #issue .issue-reply .nav-tabs, #issue .issue-edit-content .nav-tabs {
  1042. margin-bottom: 10px;
  1043. }
  1044. #issue .md-help {
  1045. margin-top: 6px;
  1046. }
  1047. #issue .filters ul {
  1048. margin-bottom: 0;
  1049. }
  1050. #issue .filter-list a {
  1051. padding: 6px 10px;
  1052. font-size: 14px;
  1053. display: block;
  1054. margin-bottom: 6px;
  1055. border-radius: 3px;
  1056. color: #444;
  1057. }
  1058. #issue .filter-list a.sm {
  1059. font-size: 13px;
  1060. }
  1061. #issue .filter-list hr {
  1062. border-color: #CCC;
  1063. }
  1064. #issue .filter-list li a:hover {
  1065. background-color: #DDD;
  1066. text-decoration: none;
  1067. }
  1068. #issue .filter-list li a.active {
  1069. background-color: #4183c4;
  1070. color: #FFF;
  1071. }
  1072. #issue .filter-option {
  1073. margin-bottom: 12px;
  1074. }
  1075. #issue .filters > div {
  1076. margin-bottom: 16px;
  1077. padding-bottom: 16px;
  1078. border-bottom: 1px solid #CCC;
  1079. }
  1080. #issue .label-filter li {
  1081. line-height: 24px;
  1082. margin-top: 4px;
  1083. }
  1084. #issue .label-filter a {
  1085. color: #666;
  1086. font-weight: bold;
  1087. padding: 0 4px;
  1088. display: block;
  1089. }
  1090. #issue .label-filter li.label-item:hover {
  1091. background-color: #FFF;
  1092. }
  1093. #issue .label-filter .count {
  1094. font-size: 12px;
  1095. margin-right: 6px;
  1096. color: #888;
  1097. }
  1098. #issue .label-filter .color {
  1099. float: left;
  1100. height: 12px;
  1101. width: 12px;
  1102. border-radius: 2px;
  1103. margin-right: 12px;
  1104. margin-top: 6px;
  1105. }
  1106. #issue .label-filter .del {
  1107. margin-top: -24px;
  1108. color: #888;
  1109. display: none;
  1110. }
  1111. #issue .label-filter .label-button {
  1112. margin-top: 16px;
  1113. }
  1114. #issue .list-group .list-group-item {
  1115. background-color: #FFF;
  1116. }
  1117. #issue .issue-item:hover {
  1118. background-color: rgba(19, 95, 215, 0.03);
  1119. }
  1120. #issue .list-group .list-group-item.unread {
  1121. border-left: 2px solid #DD4B39;
  1122. }
  1123. #issue .issue-item .title {
  1124. margin-bottom: 16px;
  1125. font-weight: bold;
  1126. }
  1127. #issue .issue-item h5.title a {
  1128. color: #444;
  1129. }
  1130. #issue .issue-item h5 .labels .label {
  1131. margin-left: 12px;
  1132. }
  1133. #issue .issue-item .info span {
  1134. margin-right: 12px;
  1135. color: #888;
  1136. line-height: 20px;
  1137. }
  1138. #issue .issue-item .info a, #issue .issue-item .number {
  1139. color: #888;
  1140. }
  1141. #issue .issue-item .number {
  1142. margin-top: 8px;
  1143. }
  1144. #issue .issue-item .avatar {
  1145. margin-right: 8px;
  1146. width: 20px;
  1147. height: 20px;
  1148. vertical-align: top;
  1149. }
  1150. #issue .issue-whole .title {
  1151. margin-top: 0;
  1152. font-size: 28px;
  1153. }
  1154. #issue .issue-whole .number {
  1155. font-size: 26px;
  1156. color: #AAA;
  1157. }
  1158. #issue .issue-head .author .avatar {
  1159. width: 48px;
  1160. height: 48px;
  1161. margin-right: 16px;
  1162. }
  1163. #issue .issue-head .info {
  1164. width: 99%;
  1165. margin-top: 10px;
  1166. padding-left: 74px;
  1167. margin-bottom: 16px;
  1168. padding-bottom: 20px;
  1169. border-bottom: 1px solid #CCC;
  1170. }
  1171. #issue .issue-head .status {
  1172. font-size: 16px;
  1173. font-weight: bold;
  1174. padding: 6px 18px;
  1175. border-radius: 3px;
  1176. }
  1177. #issue .issue-head a.author {
  1178. margin-left: .6em;
  1179. color: #444;
  1180. }
  1181. #issue .issue-main {
  1182. padding-left: 0;
  1183. }
  1184. #issue .issue-content {
  1185. border-bottom-width: 1px;
  1186. }
  1187. #issue .issue-child .user .avatar {
  1188. width: 42px;
  1189. height: 42px;
  1190. margin-right: 12px;
  1191. }
  1192. #issue .issue-child .issue-content {
  1193. margin-left: 56px;
  1194. }
  1195. #issue .issue-child .panel-heading {
  1196. padding-top: 10px;
  1197. padding-bottom: 10px;
  1198. font-weight: normal;
  1199. }
  1200. #issue .issue-child .panel-heading .user, #issue .issue-closed a.user, #issue .issue-opened a.user {
  1201. font-weight: bold;
  1202. }
  1203. #issue .issue-line {
  1204. border-color: #CCC;
  1205. }
  1206. #issue .issue-is-closed .issue-line {
  1207. display: none;
  1208. }
  1209. #issue .issue-head .info .btn {
  1210. margin-top: -8px;
  1211. margin-left: 8px;
  1212. }
  1213. #issue .issue-action {
  1214. padding-left: 8px;
  1215. color: #888;
  1216. width: 24px;
  1217. }
  1218. #issue-edit-title {
  1219. width: 60%;
  1220. }
  1221. #issue .issue-closed .issue-content, #issue .issue-opened .issue-content {
  1222. line-height: 42px;
  1223. }
  1224. #issue .issue-closed, #issue .issue-opened {
  1225. border-bottom: 2px solid #CCC;
  1226. margin-bottom: 24px;
  1227. padding-bottom: 24px;
  1228. }
  1229. #issue .issue-closed .label-danger, #issue .issue-opened .label-success {
  1230. margin: 0 .8em;
  1231. }
  1232. #issue .milestone-item .actions {
  1233. margin-top: 10px;
  1234. }
  1235. #issue .milestone-item .actions a {
  1236. margin-left: 8px;
  1237. }
  1238. #issue .milestone-item hr {
  1239. width: 100%;
  1240. padding-top: 8px;
  1241. margin-top: 48px;
  1242. margin-bottom: 8px;
  1243. }
  1244. #issue .milestone-item .label {
  1245. margin-top: 8px;
  1246. float: left;
  1247. padding: .5em;
  1248. margin-left: .8em;
  1249. }
  1250. #issue .assignee.dropdown-menu, #issue .assignee ul, #issue .milestone.dropdown-menu, #issue .milestone ul {
  1251. padding: 0;
  1252. margin: 0;
  1253. min-width: 300px;
  1254. }
  1255. #issue .issue-bar .assignee, #issue .issue-bar .assignee ul {
  1256. min-width: 160px;
  1257. }
  1258. #issue .issue-bar .assignee .dropdown-menu, #issue .issue-bar .milestone .dropdown-menu, #issue .issue-bar .labels .dropdown-menu {
  1259. padding: 0;
  1260. margin: 0;
  1261. }
  1262. #issue .assignee li, #issue .milestone li.clear-milestone {
  1263. padding: 4px 12px;
  1264. line-height: 30px;
  1265. }
  1266. #issue .milestone .milestone-item {
  1267. padding: 8px 12px;
  1268. }
  1269. #issue .milestone li.milestone-item {
  1270. border-bottom: 1px solid #CCC;
  1271. }
  1272. #issue .milestone li.milestone-item:last-child {
  1273. border-bottom: none;
  1274. }
  1275. #issue .milestone .milestone-item p {
  1276. margin-bottom: 0;
  1277. }
  1278. #issue .assignee li:hover, #issue .milestone li.clear-milestone:hover, #issue .milestone li.milestone-item:hover {
  1279. background-color: #e8f0ff;
  1280. cursor: pointer;
  1281. }
  1282. #issue .assignee li img, #issue .issue-bar .assignee img {
  1283. width: 28px;
  1284. height: 28px;
  1285. margin-right: 12px;
  1286. }
  1287. #issue .issue-bar > div {
  1288. padding-bottom: 8px;
  1289. margin-bottom: 40px;
  1290. border-bottom: 1px solid #CCC;
  1291. }
  1292. #issue .issue-bar .assignee {
  1293. line-height: 30px;
  1294. }
  1295. #issue .issue-bar .assignee .action, #issue .issue-bar .milestone .action, #issue .issue-bar .labels .action {
  1296. position: relative;
  1297. margin-top: -6px;
  1298. }
  1299. #issue .issue-bar .milestone .completion {
  1300. margin-top: 20px;
  1301. margin-bottom: 12px;
  1302. }
  1303. #issue .issue-bar .milestone .completion span {
  1304. display: block;
  1305. height: 12px;
  1306. background-color: #77c64a;
  1307. }
  1308. #issue .milestone .nav-tabs a {
  1309. padding: 4px 8px;
  1310. border-top: none;
  1311. }
  1312. #milestone {
  1313. margin-left: 24px;
  1314. margin-right: 12px;
  1315. }
  1316. #issue .issue-bar .labels .label-item {
  1317. padding: 2px 12px 4px 12px;
  1318. border-radius: 2px;
  1319. text-shadow: 0 0 2px #444;
  1320. }
  1321. #issue .label-selected .count, #issue .label-selected a {
  1322. color: #FAFAFA;
  1323. }
  1324. #issue .label-selected a {
  1325. text-shadow: 0 0 2px #444;
  1326. }
  1327. #issue .issue-bar .labels .label-white {
  1328. color: #FFF;
  1329. }
  1330. #issue .issue-bar .labels .label-black {
  1331. color: #444;
  1332. }
  1333. #issue .issue-bar .labels .dropdown-menu ul {
  1334. margin: 0;
  1335. width: 180px;
  1336. }
  1337. #issue .issue-bar .labels .dropdown-menu li {
  1338. line-height: 30px;
  1339. padding-left: 12px;
  1340. border-bottom: 1px solid #DDD;
  1341. }
  1342. #issue .issue-bar .labels .dropdown-menu li:hover {
  1343. background-color: #e8f0ff;
  1344. cursor: pointer;
  1345. }
  1346. #issue .issue-bar .labels .color {
  1347. display: inline-block;
  1348. width: 16px;
  1349. height: 16px;
  1350. vertical-align: text-top;
  1351. margin-right: 6px;
  1352. }
  1353. #issue .issue-bar .labels .no-checked .color {
  1354. margin-left: 26px;
  1355. }
  1356. #label-color-ipt2, #label-color-change-ipt2 {
  1357. width: 120px;
  1358. display: inline-block;
  1359. vertical-align: top;
  1360. }
  1361. #label-color-change-ipt2 {
  1362. margin-top: 1px;
  1363. }
  1364. /* wrapper and footer */
  1365. #wrapper {
  1366. min-height: 100%;
  1367. height: auto !important;
  1368. height: 100%;
  1369. margin: 0 auto -100px;
  1370. padding: 0 0 100px;
  1371. }
  1372. #footer {
  1373. background: #fff;
  1374. -webkit-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.05);
  1375. box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.05);;
  1376. height: 100px;
  1377. }
  1378. #footer .footer-wrap {
  1379. padding: 20px 15px;
  1380. }
  1381. #footer a {
  1382. color: #000;
  1383. }
  1384. /* admin dashboard/configuration */
  1385. .admin-dl-horizontal > dt {
  1386. width: 220px;
  1387. }
  1388. .admin-dl-horizontal > dd {
  1389. margin-left: 240px;
  1390. }
  1391. /* release page */
  1392. #release-head {
  1393. margin-top: 0;
  1394. padding-bottom: 30px;
  1395. margin-bottom: 0;
  1396. border-bottom: 1px solid #DDD;
  1397. }
  1398. #release .release-item .col-md-10 {
  1399. border-left: 1px solid #DDD;
  1400. position: relative;
  1401. }
  1402. #release .release-item .commit, #release .release-item .tag {
  1403. display: block;
  1404. margin-top: 12px;
  1405. }
  1406. #release .release-item.release-tag .commit {
  1407. margin-top: 6px;
  1408. }
  1409. #release .release-item .title {
  1410. line-height: 30px;
  1411. margin-top: 0;
  1412. }
  1413. #release .release-item .dot {
  1414. width: 9px;
  1415. height: 9px;
  1416. background-color: #ccc;
  1417. z-index: 999;
  1418. position: absolute;
  1419. display: block;
  1420. left: -5px;
  1421. top: 30px;
  1422. border-radius: 6px;
  1423. border: 1px solid #FFF;
  1424. }
  1425. #release .release-item > div {
  1426. padding-top: 20px;
  1427. padding-bottom: 20px;
  1428. }
  1429. #release .release-item p.info {
  1430. line-height: 20px;
  1431. color: #666;
  1432. margin-bottom: 18px;
  1433. }
  1434. #release .release-item div.desc {
  1435. margin-bottom: 18px;
  1436. }
  1437. #release .release-item p.info > *, #release .release-item .download a {
  1438. margin-right: 12px;
  1439. }
  1440. #release .release-item .info .avatar {
  1441. vertical-align: middle;
  1442. }
  1443. #release-new-form {
  1444. margin-top: 24px;
  1445. }
  1446. #release-new-form .target-at {
  1447. margin: 0 1em;
  1448. }
  1449. #release-new-form .target-text {
  1450. color: #888;
  1451. }
  1452. #release-new-target-branch-list {
  1453. padding-top: 0;
  1454. padding-bottom: 0;
  1455. min-width: 200px;
  1456. }
  1457. #release-new-target-branch-list ul {
  1458. margin-bottom: 0;
  1459. }
  1460. #release-new-target-branch-list li {
  1461. padding: 8px 20px;
  1462. }
  1463. #release-new-target-branch-list li a {
  1464. margin-left: 0;
  1465. background-color: transparent;
  1466. padding: 0;
  1467. }
  1468. #release-new-target-branch-list li a:hover {
  1469. background-image: none;
  1470. }
  1471. #release-new-target-branch-list li:hover {
  1472. background-color: #0093c4;
  1473. }
  1474. #release-new-target-branch-list li:hover a {
  1475. color: #FFF;
  1476. }
  1477. #release-new-title {
  1478. width: 50%;
  1479. }
  1480. #release-new-content-div {
  1481. margin-top: 16px;
  1482. padding-left: 0;
  1483. }
  1484. #release-new-content-div .md-help {
  1485. margin-top: 6px;
  1486. }
  1487. #release-textarea .form-group {
  1488. display: block;
  1489. }
  1490. #release-new-content {
  1491. width: 100%;
  1492. margin: 16px 0;
  1493. }
  1494. #release-preview {
  1495. margin: 6px 0;
  1496. }
  1497. /* organization */
  1498. #body-nav.org-nav {
  1499. height: 140px;
  1500. padding: 16px 0;
  1501. }
  1502. #body-nav.org-nav.org-nav-auto {
  1503. height: auto;
  1504. }
  1505. .org-nav > .container {
  1506. padding-left: 0;
  1507. padding-left: 0;
  1508. }
  1509. .org-nav .org-logo {
  1510. margin-right: 16px;
  1511. width: 100px;
  1512. height: 100px;
  1513. }
  1514. .org-nav .org-small-logo {
  1515. margin-right: 16px;
  1516. width: 50px;
  1517. height: 50px;
  1518. }
  1519. .org-nav .org-name {
  1520. margin-top: 0;
  1521. }
  1522. .org-nav-auto .org-name {
  1523. font-size: 1.4em;
  1524. line-height: 48px;
  1525. }
  1526. #body-nav.org-nav-auto .nav {
  1527. margin-top: 6px;
  1528. }
  1529. #body-nav.org-nav-auto .nav a:hover {
  1530. text-decoration: none;
  1531. }
  1532. .org-description {
  1533. font-size: 16px;
  1534. }
  1535. .org-meta li, .org-meta li a, .org-repo-update, .org-repo-status, .org-team-meta {
  1536. color: #888;
  1537. }
  1538. .org-meta li {
  1539. margin-right: 12px;
  1540. }
  1541. .org-meta li a:hover {
  1542. text-decoration: underline;
  1543. }
  1544. .org-meta .fa {
  1545. margin-left: 0;
  1546. }
  1547. .org-main {
  1548. padding-left: 0;
  1549. }
  1550. .org-sidebar {
  1551. margin-top: -100px;
  1552. }
  1553. .org-panel .panel-heading {
  1554. font-size: 18px;
  1555. }
  1556. .org-repo-status {
  1557. font-family: Verdana, Arial, Helvetica, sans-serif;
  1558. }
  1559. .org-repo-item {
  1560. border-bottom: 1px solid #DDD;
  1561. padding-bottom: 18px;
  1562. }
  1563. .org-member img {
  1564. width: 60px;
  1565. height: 60px;
  1566. border-radius: 4px;
  1567. }
  1568. .org-member {
  1569. display: inline-block;
  1570. padding: 2px;
  1571. }
  1572. .org-team-name {
  1573. font-size: 15px;
  1574. margin-bottom: 0;
  1575. color: #444;
  1576. }
  1577. .org-team {
  1578. border-bottom: 1px solid #DDD;
  1579. margin-bottom: 12px;
  1580. }
  1581. .org-team:last-child {
  1582. border: none;
  1583. }
  1584. .org-team a {
  1585. display: block;
  1586. }
  1587. .org-team a:hover {
  1588. text-decoration: none;
  1589. }
  1590. .org-team a:hover .org-team-name {
  1591. color: #0079bc !important;
  1592. }
  1593. #org-members {
  1594. margin-right: 30px;
  1595. }
  1596. #org-members .member .avatar img {
  1597. width: 50px;
  1598. height: 50px;
  1599. }
  1600. #org-members .member {
  1601. padding-bottom: 20px;
  1602. margin-bottom: 20px;
  1603. border-bottom: 1px solid #DDD;
  1604. height: 70px;
  1605. }
  1606. #org-members .member .name {
  1607. padding-top: 4px;
  1608. }
  1609. #org-members .member .nick {
  1610. display: block;
  1611. color: #888;
  1612. }
  1613. #org-members .member .name a {
  1614. color: #444;
  1615. }
  1616. #org-members .member .name strong {
  1617. font-size: 1.2em;
  1618. }
  1619. #org-members .status, #org-members .role {
  1620. line-height: 48px;
  1621. text-align: right;
  1622. }
  1623. #org-teams .org-team .panel-heading {
  1624. margin-top: 0;
  1625. }
  1626. #org-teams .org-team .panel-heading a {
  1627. color: #444;
  1628. }
  1629. #org-teams .org-team-members {
  1630. margin-top: 18px;
  1631. }
  1632. #org-teams .org-team-members img {
  1633. width: 40px;
  1634. height: 40px;
  1635. margin-right: 12px;
  1636. }
  1637. #org-teams .org-team-members a {
  1638. display: inline-block;
  1639. }
  1640. #org-teams .org-team .panel-footer {
  1641. height: 60px;
  1642. }
  1643. #org-teams .org-team {
  1644. border-bottom: none;
  1645. }