gogs.css 36 KB

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