You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1729 lines
33 KiB

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