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

gitblit.css 27KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405
  1. body {
  2. /* 50px to start the container 10px below the navbar */
  3. padding-top: 60px;
  4. }
  5. footer {
  6. margin-top: 25px;
  7. padding: 15px 0 16px;
  8. border-top: 1px solid #E5E5E5;
  9. }
  10. body, input, select {
  11. color: #202020;
  12. }
  13. ul, ol {
  14. margin-bottom: 10px !important;
  15. }
  16. a {
  17. color: #2F58A0;
  18. }
  19. a:hover {
  20. color: #002060;
  21. }
  22. a:focus {
  23. outline: none;
  24. }
  25. [class^="icon-"], [class*=" icon-"] a i {
  26. /* override for a links that look like bootstrap buttons */
  27. vertical-align: text-bottom;
  28. }
  29. hr {
  30. margin-top: 10px;
  31. margin-bottom: 10px;
  32. }
  33. .settings th {
  34. vertical-align: top;
  35. }
  36. .pageTitle {
  37. padding-bottom: 5px;
  38. margin: 0;
  39. border-bottom: 1px solid #eee;
  40. }
  41. .pageTitle h1, .pageTitle h2 {
  42. color: #0069D6;
  43. }
  44. .navbar .brand {
  45. padding: 10px 20px;
  46. }
  47. .navbar .pull-right {
  48. margin: 0;
  49. }
  50. .navbar ul.nav {
  51. margin: 0 !important;
  52. padding: 4px 0px 0px 0px;
  53. }
  54. .navbar ul.nav li a {
  55. color: white;
  56. text-shadow: none;
  57. outline: 0;
  58. }
  59. .navbar ul.nav li a:hover {
  60. color: #abd4ff !important;
  61. text-decoration: underline;
  62. }
  63. .navbar .nav .active > a:hover {
  64. text-decoration: underline;
  65. }
  66. .navbar-inner {
  67. background-color: #002060;
  68. background-repeat: none;
  69. background-image: none;
  70. -webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  71. -moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  72. box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  73. border-bottom: 2px solid #ff9900 !important;
  74. }
  75. .navbar ul li:focus, .navbar .active {
  76. background-repeat:no-repeat;
  77. background-image: url(arrow_page.png);
  78. background-position: center bottom;
  79. outline: 0;
  80. padding-bottom:3px;
  81. }
  82. .navbar .active a {
  83. background-color: transparent !important;
  84. outline: 0;
  85. }
  86. .navbar div > ul .menu-dropdown .selected, .nav .menu-dropdown .selected, .navbar div > ul .dropdown-menu .selected, .nav .dropdown-menu .selected {
  87. background-image: url("bullet_blue.png");
  88. background-repeat: no-repeat;
  89. background-position: left;
  90. }
  91. .navbar div>ul .dropdown-menu li a {
  92. color: #555;
  93. }
  94. navbar div>ul .menu-dropdown li a:hover,.nav .menu-dropdown li a:hover,.navbar div>ul .dropdown-menu li a:hover,.nav .dropdown-menu li a:hover{
  95. background-color: #000070;
  96. color: #ffffff !important;
  97. }
  98. .nav-pills > .active > a, .nav-pills > .active > a:hover {
  99. color: #fff;
  100. background-color: #002060;
  101. }
  102. .repositorynavbar {
  103. background-color: #fbfbfb;
  104. border-bottom: 1px solid #ccc;
  105. margin-top: -8px;
  106. margin-bottom: 10px;
  107. }
  108. .repositorynavbar .title {
  109. line-height: 32px;
  110. }
  111. .repositorynavbar .repository {
  112. font-weight: bold;
  113. }
  114. .title .repository a, .repositorynavbar .project a, .repositorynavbar .repository a {
  115. font-family: Helvetica,arial,freesans,clean,sans-serif;
  116. font-size: 22px;
  117. color: #002060;
  118. }
  119. .repositorynavbar .repositorynavbar-inner {
  120. }
  121. .repositorynavbar ul {
  122. list-style: none outside;
  123. display: block;
  124. position: relative;
  125. border-top: 1px solid #ccc;
  126. }
  127. .repositorynavbar ul li {
  128. display: block;
  129. float: left;
  130. padding: 10px;
  131. }
  132. .repositorynavbar ul li:focus, .repositorynavbar .active {
  133. color: black;
  134. background-repeat:no-repeat;
  135. background-image: url(arrow_project.png);
  136. background-position: center bottom;
  137. font-weight: bold;
  138. outline: 0;
  139. }
  140. .repositorynavbar ul a {
  141. color: #002060;
  142. }
  143. .repositorynavbar ul li:hover {
  144. background-color: #eee;
  145. }
  146. .repositorynavbar ul li a:hover {
  147. background-color: inherit;
  148. text-decoration: underline;
  149. }
  150. .btn-appmenu {
  151. border-radius: 4px !important;
  152. background-color: #002060;
  153. background-image:-khtml-gradient(linear, left top, left bottom, from(#4060A0), to(#002060));
  154. background-image:-moz-linear-gradient(center top, #4060A0, #002060);
  155. background-image:-ms-linear-gradient(top, #4060A0, #002060);
  156. background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #4060A0), color-stop(100%, #002060));
  157. background-image:-webkit-linear-gradient(top, #4060A0, #002060);
  158. background-image:-o-linear-gradient(top, #4060A0, #002060);
  159. background-image:linear-gradient(top, #4060A0, #002060);
  160. background-repeat: repeat-x;
  161. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  162. color: #ffffff;
  163. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  164. }
  165. .btn-appmenu:hover, .btn-appmenu:active, .btn-appmenu.active, .btn-appmenu.disabled, .btn-appmenu[disabled] {
  166. background-color: #002060;
  167. color: #ffffff;
  168. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  169. }
  170. .btn-appmenu .caret {
  171. border-bottom-color: #FFFFFF;
  172. border-top-color: #FFFFFF;
  173. opacity: 0.75;
  174. }
  175. .breadcrumb {
  176. margin-top: 10px !important;
  177. margin-bottom: 10px !important;
  178. }
  179. .pageTitle {
  180. margin-bottom: 5px;
  181. }
  182. .pageTitle h2 small {
  183. font-size: 80%;
  184. font-weight: bold;
  185. }
  186. .pageTitle {
  187. color: #888;
  188. font-size: 18px;
  189. line-height: 27px;
  190. }
  191. .pageTitle .project, .pageTitle .repository {
  192. font-family: Helvetica, arial, freesans, clean, sans-serif;
  193. font-size: 22px;
  194. }
  195. .pageTitle .controls {
  196. font-size: 12px;
  197. }
  198. .pageTitle .repository {
  199. font-weight: bold;
  200. }
  201. .originRepository {
  202. font-family: Helvetica, arial, freesans, clean, sans-serif;
  203. color: #888;
  204. font-size: 12px;
  205. line-height: 14px;
  206. margin: 0px;
  207. }
  208. .forkSource, .forkEntry {
  209. color: #888;
  210. }
  211. .forkSource {
  212. font-size: 18px;
  213. line-height: 20px;
  214. padding: 5px 0px;
  215. }
  216. .forkEntry {
  217. font-size: 14px;
  218. padding: 2px 0px;
  219. }
  220. .forkSource .forks, .forkEntry .forks {
  221. font-size: 10px;
  222. padding-left: 5px;
  223. text-decoration: underline;
  224. vertical-align: middle;
  225. }
  226. div.repositoryUrlContainer {
  227. padding: 2px;
  228. background-color: #F5F5F5;
  229. background-image: -moz-linear-gradient(center top , #FFFFFF, #E6E6E6);
  230. background-repeat: repeat-x;
  231. border-color: #E6E6E6 #E6E6E6 #B3B3B3;
  232. border-image: none;
  233. border-radius: 4px;
  234. border-style: solid;
  235. border-width: 1px;
  236. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05);
  237. color: #333333;
  238. vertical-align: middle;
  239. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  240. }
  241. div.repositoryUrlContainer:hover {
  242. background-color: #E6E6E6;
  243. background-position: 0 -15px;
  244. color: #333333;
  245. text-decoration: none;
  246. transition: background-position 0.1s linear 0s;
  247. }
  248. div.repositoryUrlContainer:hover .caret {
  249. opacity: 1;
  250. }
  251. div.repositoryUrlContainer:hover a:hover {
  252. text-decoration: none;
  253. }
  254. span.repositoryUrlLeftCap, span.repositoryUrlRightCap {
  255. text-align: center;
  256. color: black;
  257. padding: 3px;
  258. font-size: 11px;
  259. }
  260. span.repositoryUrlRightCap {
  261. font-weight: bold;
  262. font-family:menlo,consolas,monospace;
  263. }
  264. div.repositoryUrl {
  265. display: inline-block;
  266. font-size: 1em;
  267. padding: 1px 4px 2px 4px;
  268. background-color: #fff;
  269. border: 1px solid #ddd;
  270. margin: 1px;
  271. }
  272. div.repositoryIndicator {
  273. display:inline;
  274. padding-top:0px;
  275. margin-bottom:0px;
  276. }
  277. div.repositoryIndicator span.alert {
  278. padding: 2px 7px 2px 7px;
  279. vertical-align: middle;
  280. font-size:0.85em;
  281. font-weight:normal;
  282. }
  283. ul.urlMenu {
  284. min-width: 350px;
  285. }
  286. ul.urlMenu li.url {
  287. background-color: white;
  288. padding: 0px 5px;
  289. line-height: 24px;
  290. }
  291. ul.applicationMenu {
  292. background-color: whiteSmoke;
  293. min-width: 400px;
  294. }
  295. ul.applicationMenu li.action {
  296. background-color: white;
  297. padding: 0px 5px;
  298. line-height: 24px;
  299. }
  300. span.applicationTitle, span.applicationTitle a {
  301. display: inline;
  302. font-weight: bold;
  303. font-size:1.1em;
  304. color: black !important;
  305. padding: 0px;
  306. }
  307. div.applicationHeaderMenuItem {
  308. padding-left: 10px;
  309. color: black;
  310. }
  311. div.applicationLegalMenuItem {
  312. padding-left: 10px;
  313. color: #999;
  314. font-size: 0.85em;
  315. }
  316. a.applicationMenuItem, span.commandMenuItem {
  317. padding: 3px 10px;
  318. color: black;
  319. display: inline;
  320. padding: 0px;
  321. }
  322. span.commandMenuItem {
  323. font-size: 0.85em;
  324. font-family: menlo,consolas,monospace;
  325. }
  326. div.odd {
  327. }
  328. div.even {
  329. background-color: whiteSmoke;
  330. vertical-align: middle;
  331. }
  332. span.authorizationControl label {
  333. display: inline;
  334. color: #777;
  335. padding:5px 0px 5px 10px;
  336. }
  337. div.page_footer {
  338. clear: both;
  339. height: 17px;
  340. color: black;
  341. background-color: #ffffff;
  342. padding: 5px;
  343. border-top: 1px solid #bbb;
  344. font-style: italic;
  345. }
  346. pre, code, pre.prettyprint, pre.plainprint {
  347. background-color: #ffffff;
  348. color: black;
  349. font-family: monospace;
  350. font-size:12px;
  351. border:0px;
  352. padding: 0;
  353. line-height: 1.35em;
  354. vertical-align:top;
  355. }
  356. table {
  357. margin-bottom: 5px;
  358. font-size: inherit;
  359. }
  360. .table th {
  361. vertical-align: top;
  362. }
  363. th {
  364. vertical-align: middle;
  365. text-align: left;
  366. }
  367. div.sourceview {
  368. overflow: hidden;
  369. }
  370. pre.prettyprint ol {
  371. padding-left:25px;
  372. }
  373. #nums {
  374. text-align: right;
  375. padding-right:10px;
  376. border-right:1px solid #ddd;
  377. font-family: monospace;
  378. line-height: 1.35em;
  379. vertical-align:top;
  380. }
  381. #nums pre {
  382. white-space: pre;
  383. }
  384. #nums pre, #lines pre {
  385. margin: 0;
  386. }
  387. #lines pre {
  388. padding: 0px !important;
  389. border: 0px !important;
  390. white-space: nowrap;
  391. }
  392. /* CSS trick to workaround #link topOfWindow offset problem */
  393. #nums .num {
  394. border-top: 160px solid transparent;
  395. margin-top: -160px;
  396. -webkit-background-clip: padding-box;
  397. -moz-background-clip: padding;
  398. background-clip: padding-box;
  399. color: #888;
  400. }
  401. #nums span:target {
  402. background-color: #ffffbf;
  403. color: black;
  404. font-weight: bold;
  405. border-bottom: 1px solid red;
  406. }
  407. #lines table {
  408. margin: 0;
  409. }
  410. #lines td {
  411. padding: 0;
  412. }
  413. #lines a {
  414. padding-left: 5px;
  415. }
  416. #lines a:hover {
  417. background-color: #ffffbf;
  418. text-decoration: none;
  419. }
  420. #lines tr:hover {
  421. background-color: #ffffbf;
  422. }
  423. #lines .odd {
  424. background-color: white;
  425. }
  426. #lines .even {
  427. background-color: #fafafa;
  428. }
  429. h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  430. color: #888;
  431. }
  432. .age0, .age1, .age2, .age3, .age4 {
  433. font-size: 12px;
  434. }
  435. /* age0: age < 2 hours */
  436. .age0 {
  437. font-style: italic;
  438. color: #008000;
  439. font-weight: bold;
  440. }
  441. /* age1: 2 hours <= age < 2 days */
  442. .age1 {
  443. font-style: italic;
  444. color: #0000ff;
  445. font-weight: bold;
  446. }
  447. /* age2: 2 days < age <= 7 days */
  448. .age2 {
  449. font-style: italic;
  450. color: #2b60de;
  451. }
  452. /* age3: 7 days < age <= 30 days */
  453. .age3 {
  454. color: #800080;
  455. }
  456. /* age4: > 30 days */
  457. .age4 {
  458. }
  459. /* Ensure that hovered ages are white */
  460. tr.light:hover .age0,
  461. tr.light:hover .age1,
  462. tr.light:hover .age2,
  463. tr.light:hover .age3,
  464. tr.light:hover .age4,
  465. tr.dark:hover .age0,
  466. tr.dark:hover .age1,
  467. tr.dark:hover .age2,
  468. tr.dark:hover .age3,
  469. tr.dark:hover .age4 {
  470. color: #ffffff !important;
  471. }
  472. a.list {
  473. text-decoration: none;
  474. color: inherit;
  475. }
  476. a.list.subject {
  477. font-weight: bold;
  478. }
  479. a.list.name {
  480. font-weight: bold;
  481. }
  482. a.list:hover {
  483. text-decoration: underline;
  484. color: #880000;
  485. }
  486. span.empty {
  487. font-size: 0.9em;
  488. font-style: italic;
  489. padding-left:10px;
  490. color: #008000;
  491. }
  492. span.link {
  493. color: #888;
  494. }
  495. span.link, span.link a {
  496. font-family: sans-serif;
  497. font-size: 11px;
  498. }
  499. span.link em, div.link span em {
  500. font-style: normal;
  501. font-family: sans-serif;
  502. font-size: 11px;
  503. }
  504. span.repositorySwatch {
  505. border-radius: 3px;
  506. padding: 1px 4px 2px 4px;
  507. color: #ffffff;
  508. vertical-align: center;
  509. }
  510. span.repositorySwatch a {
  511. color: inherit;
  512. }
  513. img.inlineIcon {
  514. padding-left: 1px;
  515. padding-right: 1px;
  516. }
  517. img.overview {
  518. float:right;
  519. border:1px solid #CCCCCC;
  520. }
  521. img.gravatar {
  522. background-color: #ffffff;
  523. border: 1px solid #ddd;
  524. border-radius: 5px;
  525. padding: 2px;
  526. }
  527. img.navbarGravatar {
  528. border: 1px solid #fff;
  529. }
  530. div.searchResult {
  531. padding: 10px 5px 10px 5px;
  532. }
  533. div.searchResult .summary {
  534. font-weight: bold;
  535. }
  536. div.searchResult .branch {
  537. color: #008000;
  538. }
  539. div.searchResult .author {
  540. font-style: italic !important;
  541. }
  542. div.searchResult .date {
  543. color:#999;
  544. }
  545. div.searchResult .body {
  546. padding-left:20px;
  547. }
  548. div.searchResult .fragment {
  549. padding: 7px 0;
  550. }
  551. div.searchResult .highlight {
  552. background-color: #ccff66;
  553. padding: 0 2px;
  554. }
  555. div.searchResult .ellipses {
  556. padding-left:25px;
  557. color: #aaa;
  558. }
  559. div.searchResult pre {
  560. margin: 1px 0px;
  561. border: 0px;
  562. }
  563. div.searchResult .text {
  564. border-left: 2px solid #ccc;
  565. border-radius: 0px;
  566. padding: 0 0 0 15px;
  567. }
  568. div.searchResult ol {
  569. margin-bottom: 0px !important;
  570. }
  571. div.header, div.commitHeader, table.repositories th {
  572. background-color: #fbfbfb;
  573. }
  574. div.header {
  575. padding: 3px;
  576. border: 1px solid #ddd;
  577. border-bottom: 0;
  578. border-radius: 3px 3px 0 0;
  579. font-weight: bold;
  580. font-family: Helvetica,arial,freesans,clean,sans-serif;
  581. }
  582. div.diffHeader {
  583. /* CSS trick to workaround #link topOfWindow offset problem */
  584. border-top: 65px solid transparent;
  585. margin-top: -65px;
  586. -webkit-background-clip: padding-box;
  587. -moz-background-clip: padding;
  588. background-clip: padding-box;
  589. }
  590. div.commitHeader {
  591. margin:0 0 2px;
  592. padding:7px 14px;
  593. border:1px solid #ddd;
  594. border-radius: 3px;
  595. -webkit-border-radius:3px;
  596. -moz-border-radius:3px;border-radius:3px;
  597. }
  598. div.header a, div.commitHeader a {
  599. color: black;
  600. text-decoration: none;
  601. font-weight: bold;
  602. }
  603. div.header a:hover, div.commitHeader a:hover {
  604. text-decoration: underline;
  605. }
  606. div.page_nav2 {
  607. padding: 5px 10px;
  608. margin: -10px 0px 10px;
  609. border-left: 1px solid #ccc;
  610. border-right: 1px solid #ccc;
  611. border-bottom: 1px solid #ccc;
  612. border-radius: 0px 0px 3px 3px;
  613. background-color: #ECF1F4;
  614. color: #666;
  615. text-align: left;
  616. }
  617. div.page_nav2 a {
  618. color: #002060;
  619. }
  620. div.admin_nav {
  621. border-bottom: 0px;
  622. text-align: right;
  623. padding: 5px 5px 5px 2px;
  624. }
  625. div.admin_nav a {
  626. text-decoration: none;
  627. }
  628. div.admin_nav a:hover {
  629. text-decoration: underline;
  630. }
  631. span.search {
  632. height: 40px;
  633. padding-top:2px;
  634. }
  635. span.search input {
  636. -webkit-border-radius:0;-moz-border-radius:0x;border-radius:0;
  637. vertical-align: top;
  638. background: url(search-icon.png) no-repeat 4px center;
  639. background-color: transparent;
  640. border: 1px solid transparent;
  641. outline: none;
  642. padding: 2px 2px 2px 22px;
  643. text-shadow: none;
  644. margin: 0px;
  645. color: #ddd;
  646. }
  647. span.search input:hover, span.search input:focus {
  648. background-color: transparent;
  649. border: 1px solid transparent;
  650. padding: 2px 2px 2px 22px;
  651. box-shadow: none;
  652. color: #ddd;
  653. border-bottom: 1px solid #ff9900;
  654. }
  655. span.search input:focus {
  656. color: white;
  657. }
  658. /* div.search input:focused { */
  659. /* background-color: transparent; */
  660. /* border: 1px solid transparent; */
  661. /* padding: 2px 2px 2px 22px; */
  662. /* text-shadow: none; */
  663. /* } */
  664. span.login input:focus {
  665. background-color: rgba(255, 255, 255, 0.6);
  666. text-shadow: none;
  667. color: white;
  668. }
  669. .commit_message {
  670. padding: 8px;
  671. border: solid #ddd;
  672. border-width: 1px 0px 0px;
  673. border-radius: 0px;
  674. }
  675. div.bug_open, span.bug_open {
  676. padding: 2px;
  677. background-color: #803333;
  678. color: white;
  679. text-align: center;
  680. }
  681. div.bug_resolved, span.bug_resolved {
  682. padding: 2px;
  683. background-color: #408040;
  684. color: white;
  685. text-align: center;
  686. }
  687. div.bug_invalid, span.bug_invalid {
  688. padding: 2px;
  689. background-color: gray;
  690. text-align: center;
  691. }
  692. div.bug_hold, span.bug_hold {
  693. padding: 2px;
  694. background-color: orange;
  695. text-align: center;
  696. }
  697. div.diff {
  698. font-family: monospace;
  699. overflow: auto;
  700. }
  701. div.diff.header {
  702. -moz-border-bottom-colors: none;
  703. -moz-border-image: none;
  704. -moz-border-left-colors: none;
  705. -moz-border-right-colors: none;
  706. -moz-border-top-colors: none;
  707. background-color: #EDECE6;
  708. border-color: #D9D8D1;
  709. border-style: solid;
  710. border-width: 1px;
  711. font-weight: bold;
  712. margin-top: 10px;
  713. padding: 4px 0 2px;
  714. }
  715. div.diff.extended_header {
  716. background-color: #F6F5EE;
  717. padding: 2px 0;
  718. font-family: inherit;
  719. }
  720. div.diff table {
  721. border: 1px solid #ddd;
  722. }
  723. span.diff.add {
  724. color: #008800;
  725. font-family: inherit;
  726. }
  727. span.diff.remove {
  728. color: #FFDDDD;
  729. font-family: inherit;
  730. }
  731. span.diff.unchanged {
  732. color: inherit;
  733. font-family: inherit;
  734. }
  735. div.diff.hunk_header {
  736. -moz-border-bottom-colors: none;
  737. -moz-border-image: none;
  738. -moz-border-left-colors: none;
  739. -moz-border-right-colors: none;
  740. -moz-border-top-colors: none;
  741. border-color: #FFE0FF;
  742. border-style: dotted;
  743. border-width: 1px 0 0;
  744. margin-top: 2px;
  745. font-family: inherit;
  746. }
  747. span.diff.hunk_info {
  748. background-color: #FFEEFF;
  749. color: #990099;
  750. font-family: inherit;
  751. }
  752. span.diff.hunk_section {
  753. color: #AA22AA;
  754. font-family: inherit;
  755. }
  756. div.diff.add2 {
  757. background-color: #DDFFDD;
  758. font-family: inherit;
  759. }
  760. div.diff.remove2 {
  761. background-color: #FFDDDD;
  762. font-family: inherit;
  763. }
  764. div.diff table {
  765. border-radius: 0;
  766. border-right: 1px solid #bbb;
  767. border-bottom: 1px solid #bbb;
  768. width: 100%;
  769. }
  770. div.diff table th, div.diff table td {
  771. margin: 0px;
  772. padding: 0px;
  773. font-family: monospace;
  774. border: 0;
  775. }
  776. div.diff table th {
  777. background-color: #f0f0f0;
  778. text-align: center;
  779. color: #999;
  780. padding-left: 5px;
  781. padding-right: 5px;
  782. width: 30px;
  783. }
  784. div.diff table th.header {
  785. background-color: #D2C3AF;
  786. border-right: 0px;
  787. border-bottom: 1px solid #808080;
  788. font-family: inherit;
  789. font-size:0.9em;
  790. color: black;
  791. padding: 2px;
  792. text-align: left;
  793. }
  794. div.diff table td.hunk_header {
  795. background-color: #dAe2e5 !important;
  796. border-top: 1px solid #bac2c5;
  797. border-bottom: 1px solid #bac2c5;
  798. color: #555;
  799. }
  800. div.diff table td {
  801. border-left: 1px solid #bbb;
  802. background-color: #fbfbfb;
  803. }
  804. td.changeType {
  805. width: 15px;
  806. }
  807. span.addition, span.modification, span.deletion, span.rename {
  808. border: 1px solid #888;
  809. float: left;
  810. height: 0.8em;
  811. margin: 0.2em 0.5em 0 0;
  812. overflow: hidden;
  813. width: 0.8em;
  814. }
  815. span.addition {
  816. background-color: #ccffcc;
  817. }
  818. span.modification {
  819. background-color: #ffdd88;
  820. }
  821. span.deletion {
  822. background-color: #f8bbbb;
  823. }
  824. span.rename {
  825. background-color: #cAc2f5;
  826. }
  827. div.commitLegend {
  828. float: right;
  829. padding: 0.4em 0.4em 0.2em 0.4em;
  830. vertical-align:top;
  831. margin: 0px;
  832. }
  833. div.commitLegend span {
  834. font-size: 0.9em;
  835. vertical-align: top;
  836. }
  837. div.references {
  838. float: right;
  839. text-align: right;
  840. }
  841. table.plain, table.summary {
  842. width: 0 !important;
  843. border: 0;
  844. }
  845. table.plain th, table.plain td, table.summary th, table.summary td {
  846. white-space: nowrap;
  847. padding: 1px 3px;
  848. border: 0;
  849. }
  850. table.summary {
  851. margin: 0px;
  852. }
  853. table.summary th {
  854. color: #999;
  855. padding-right: 10px;
  856. text-align: right;
  857. font-weight: normal;
  858. }
  859. table.pretty {
  860. border:1px solid #ddd;
  861. border-radius: 0 0 3px 3px;
  862. width: 100%;
  863. }
  864. table.pretty td.icon {
  865. padding: 0px 0px 0px 2px;
  866. width: 18px;
  867. vertical-align: middle;
  868. }
  869. table.pretty td.icon img {
  870. vertical-align: top;
  871. }
  872. table.pretty td {
  873. padding: 2px 4px;
  874. border-left: 0;
  875. }
  876. table.pretty td.message {
  877. padding: 0px;
  878. }
  879. table.pretty table.nestedTable {
  880. width: 100%;
  881. margin-left: 4px !important;
  882. margin-bottom: 0px !important;
  883. }
  884. table.comments td {
  885. padding: 4px;
  886. line-height: 17px;
  887. }
  888. table.repositories {
  889. border:1px solid #ddd;
  890. border-spacing: 0px;
  891. width: 100%;
  892. }
  893. table.repositories th {
  894. padding: 4px;
  895. border:0;
  896. }
  897. table.repositories th.right {
  898. border-right: 1px solid #ddd;
  899. }
  900. table.repositories td {
  901. padding: 2px;
  902. border-left: 0;
  903. }
  904. table.repositories td.rightAlign {
  905. text-align: right;
  906. border-right: 1px solid #ddd;
  907. }
  908. table.repositories td.icon img {
  909. vertical-align: top;
  910. }
  911. table.repositories tr.group {
  912. background-color: #ccc;
  913. border-left: 1px solid #ccc;
  914. border-right: 1px solid #ccc;
  915. }
  916. table.repositories tr.group td {
  917. font-weight: bold;
  918. color: black;
  919. background-color: #ddd;
  920. padding-left: 5px;
  921. border-top: 1px solid #aaa;
  922. border-bottom: 1px solid #aaa;
  923. }
  924. table.repositories tr.group td a {
  925. color: black;
  926. }
  927. table.palette { border:0; width: 0 !important; }
  928. table.palette td.header {
  929. font-weight: bold;
  930. background-color: #ffffff !important;
  931. padding-top: 0px !important;
  932. margin-bottom: 0 !imporant;
  933. border: 0 !important;
  934. border-radius: 0 !important;
  935. line-height: 1em;
  936. }
  937. table.palette td.pane {
  938. padding: 0px;
  939. }
  940. table.gitnotes {
  941. border: 0;
  942. }
  943. table.gitnotes td {
  944. border-top: 1px solid #ddd;
  945. padding-top: 3px;
  946. vertical-align:top;
  947. }
  948. table.gitnotes table {
  949. border: none;
  950. }
  951. table.gitnotes td table td {
  952. border: none;
  953. padding: 0px;
  954. }
  955. table.gitnotes td.info {
  956. padding-right: 10px;
  957. }
  958. table.gitnotes td.message {
  959. width: 65%;
  960. border-left: 1px solid #ddd;
  961. padding-left: 10px;
  962. }
  963. table.annotated {
  964. border:1px solid #ddd;
  965. }
  966. table.annotated tr.even {
  967. background-color: white;
  968. }
  969. table.annotated tr.odd {
  970. background-color: #f5f5f5;
  971. }
  972. table.annotated td {
  973. padding: 0px;
  974. border: 0;
  975. }
  976. table.activity {
  977. width: 100%;
  978. margin-top: 10px;
  979. }
  980. table.activity td {
  981. padding-top:7px;
  982. padding-bottom:7px;
  983. }
  984. tr th a { background-position: right; padding-right: 15px; background-repeat:no-repeat; }
  985. tr th.wicket_orderDown a {background-image: url(arrow_down.png); }
  986. tr th.wicket_orderUp a { background-image: url(arrow_up.png); }
  987. tr th.wicket_orderNone a { background-image: url(arrow_off.png); }
  988. tr.light {
  989. background-color: #ffffff;
  990. }
  991. tr.dark {
  992. background-color: #f6f6f6;
  993. }
  994. /* currently both use the same, but it can change */
  995. tr.light:hover,
  996. tr.dark:hover {
  997. background-color: #002060;
  998. color: white;
  999. }
  1000. tr.light:hover a,
  1001. tr.dark:hover a {
  1002. color: white;
  1003. }
  1004. td.author {
  1005. font-style: italic !important;
  1006. }
  1007. td.date {
  1008. /*font-style: italic !important;*/
  1009. white-space: nowrap;
  1010. }
  1011. span.sha1, span.sha1 a, span.sha1 a span, .commit_message, span.shortsha1 {
  1012. font-family: consolas, monospace;
  1013. font-size: 13px;
  1014. }
  1015. span.shortsha1 {
  1016. font-size: 12px;
  1017. }
  1018. td.mode {
  1019. text-align: right;
  1020. font-family: monospace;
  1021. width: 8em;
  1022. padding-right:15px;
  1023. }
  1024. td.size {
  1025. text-align: right;
  1026. width: 8em;
  1027. padding-right:15px;
  1028. }
  1029. td.rightAlign {
  1030. text-align: right;
  1031. }
  1032. td.treeLinks {
  1033. text-align: right;
  1034. width: 13em;
  1035. }
  1036. span.help-inline {
  1037. color: #777;
  1038. }
  1039. span.metricsTitle {
  1040. font-size: 2em;
  1041. }
  1042. .tagRef, .headRef, .localBranch, .remoteBranch, .otherRef, .pullRef {
  1043. padding: 0px 3px;
  1044. margin-right:2px;
  1045. font-family: sans-serif;
  1046. font-size: 9px;
  1047. font-weight: normal;
  1048. border: 1px solid;
  1049. color: black;
  1050. }
  1051. .tagRef a, .headRef a, .localBranch a, .remoteBranch a, .otherRef a, .pullRef a {
  1052. font-size: 9px;
  1053. text-decoration: none;
  1054. color: black !important;
  1055. }
  1056. .tagRef a:hover, .headRef a:hover, .localBranch a:hover, .remoteBranch a:hover, .otherRef a:hover, .pullRef a:hover {
  1057. color: black !important;
  1058. text-decoration: underline;
  1059. }
  1060. .otherRef {
  1061. background-color: #b0e0f0;
  1062. border-color: #80aaaa;
  1063. }
  1064. .pullRef {
  1065. background-color: rgb(255, 221, 136);
  1066. border-color: rgb(136, 136, 136);
  1067. }
  1068. .remoteBranch {
  1069. background-color: #cAc2f5;
  1070. border-color: #6c6cbf;
  1071. }
  1072. .tagRef {
  1073. background-color: #ffffaa;
  1074. border-color: #ffcc00;
  1075. }
  1076. .headRef {
  1077. background-color: #ffaaff;
  1078. border-color: #ff00ee;
  1079. }
  1080. .localBranch {
  1081. background-color: #ccffcc;
  1082. border-color: #00cc33;
  1083. }
  1084. table .palette td.buttons button {
  1085. -webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;
  1086. border: 1px solid #ccc !important;
  1087. padding: 10px;
  1088. margin-bottom: 10px;
  1089. }
  1090. table .palette td.buttons button:hover {
  1091. border: 1px solid #0069D6 !important;
  1092. }
  1093. table .palette td.buttons button:active {
  1094. border: 1px solid orange !important;
  1095. }
  1096. .feedbackPanelERROR, .feedbackPanelINFO {
  1097. list-style: none;
  1098. line-height: 35px;
  1099. }
  1100. .feedbackPanelINFO span, .feedbackPanelERROR span {
  1101. position:relative;padding:7px 15px;margin-top:5px;margin-bottom:5px;color:#404040;background-color:#eedc94;background-repeat:repeat-x;background-image:-khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));background-image:-moz-linear-gradient(top, #fceec1, #eedc94);background-image:-ms-linear-gradient(top, #fceec1, #eedc94);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));background-image:-webkit-linear-gradient(top, #fceec1, #eedc94);background-image:-o-linear-gradient(top, #fceec1, #eedc94);background-image:linear-gradient(top, #fceec1, #eedc94);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0);text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);border-color:#eedc94 #eedc94 #e4c652;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);border-width:1px;border-style:solid;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.25);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.25);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.25);
  1102. }
  1103. .feedbackPanelERROR span {
  1104. color: #ffffff;
  1105. background-color:#c43c35;background-repeat:repeat-x;background-image:-khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-ms-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(top, #ee5f5b, #c43c35);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);border-color:#c43c35 #c43c35 #882a25;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  1106. }
  1107. /* google-code-prettify line numbers */
  1108. li.L0,
  1109. li.L1,
  1110. li.L2,
  1111. li.L3,
  1112. li.L4,
  1113. li.L5,
  1114. li.L6,
  1115. li.L7,
  1116. li.L8,
  1117. li.L9 { color: #888; border-left: 1px solid #ccc; padding-left:5px; list-style-type: decimal !important; }
  1118. /* Alternate shading for lines */
  1119. li.L1,
  1120. li.L3,
  1121. li.L5,
  1122. li.L7,
  1123. li.L9 { background: #fafafa !important; }
  1124. div.markdown pre {
  1125. background-color: #F5F5F5;
  1126. border: 1px solid rgba(0, 0, 0, 0.15);
  1127. border-radius: 4px 4px 4px 4px;
  1128. display: block;
  1129. font-size: 12px;
  1130. line-height: 18px;
  1131. margin: 0 0 9px;
  1132. padding: 8.5px;
  1133. white-space: pre-wrap;
  1134. }
  1135. div.markdown pre code {
  1136. background-color: inherit;
  1137. border: none;
  1138. padding: 0;
  1139. }
  1140. div.markdown code {
  1141. background-color: #ffffe0;
  1142. border: 1px solid orange;
  1143. border-radius: 3px;
  1144. padding: 0 0.2em;
  1145. }
  1146. div.markdown a {
  1147. text-decoration: underline;
  1148. }
  1149. div.markdown em {
  1150. color: #b05000;
  1151. }
  1152. div.markdown table.text th, div.markdown table.text td {
  1153. vertical-align: top;
  1154. border-top: 1px solid #ccc;
  1155. padding:5px;
  1156. }