gogs.css 32 KB

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