gogs.css 33 KB

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