Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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