Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760
  1. /*
  2. TRAC THEME - cacalabs 2010 by Cacacrew
  3. */
  4. /* = GENERAL = */
  5. body {
  6. background: #4E6A91;
  7. color: white;
  8. width: 100%;
  9. padding: 0;
  10. margin: 0;
  11. }
  12. body, td, th, h1, h2, h3, h4, #main {
  13. font-family: "URW Gothic L", Helvetica, Verdana;
  14. }
  15. h1 :link, h1 :visited {
  16. color: #674e4e;
  17. }
  18. .corps {
  19. margin: 0 5px;
  20. min-width: 750px;
  21. position: relative;
  22. }
  23. h1, h2, h3 {
  24. border-style: solid;
  25. background-color: inherit;
  26. font-variant: small-caps;
  27. border-width: 0 0 2px 0;
  28. border-color: #4E6A91;
  29. color: #674e4e;
  30. }
  31. h1 {
  32. font-size: 1.6em;
  33. }
  34. h2 {
  35. font-size: 1.3em;
  36. }
  37. h3 {
  38. font-size: 1.1em;
  39. }
  40. p, dd, dd, ol, ul {
  41. text-align: inherit;
  42. font-size: 1em;
  43. }
  44. ol li {
  45. list-style: decimal inside;
  46. }
  47. ul li {
  48. list-style: none inside;
  49. padding-left: 20px;
  50. background: url(puce.png) no-repeat left center;
  51. }
  52. ul, ol {
  53. padding-left: 0;
  54. }
  55. dd {
  56. margin-left: 0;
  57. }
  58. /* links */
  59. :link, :visited {
  60. color: #4E6A91;
  61. border-bottom: none;
  62. }
  63. :link:hover, :visited:hover {
  64. color: #2C1F1C;
  65. background-color: inherit;
  66. }
  67. a.ext-link .icon {
  68. background-position: right center;
  69. padding-right: 16px;
  70. padding-left: 0;
  71. }
  72. a.missing:link,
  73. a.missing:visited,
  74. a.missing:link:hover,
  75. a.missing:visited:hover {
  76. background: #EEEEAA;
  77. color: #2C1F1C;
  78. }
  79. a.missing:link:after,
  80. a.missing:visited:after,
  81. a.missing:hover:after {
  82. content: ' missing! ';
  83. font-size: 10px;
  84. color: #2C1F1C;
  85. vertical-align: top;
  86. padding-left: 3px;
  87. }
  88. dt em {
  89. border-bottom:none;
  90. color: #674e4e;
  91. font-style:normal;
  92. text-decoration:none;
  93. }
  94. dt :link:hover, dt :visited:hover {
  95. background-color: #D7E6FF;
  96. }
  97. /* = LAYOUT = */
  98. /* == HEADER == */
  99. .nav ul {
  100. text-align: right;
  101. font-size: 12px;
  102. }
  103. .nav li.last {
  104. border-right: none !important;
  105. }
  106. #main {
  107. background: #fff url(/static/stitch.png) no-repeat bottom right;
  108. color: #2C1F1C;
  109. padding: 0 1em;
  110. overflow: auto;
  111. border: 1px solid #2C1F1C;
  112. border-top: 0;
  113. }
  114. #header img {
  115. margin: 0 ;
  116. position: absolute;
  117. left: 0;
  118. top: 1px;
  119. z-index: 10;
  120. }
  121. #siteheader p {
  122. margin-top: 0.3em;
  123. }
  124. #siteheader, #banner, #mainnav, .nav {
  125. font-family:"Arial","Geneva",sans-serif;
  126. }
  127. /* == MAINNAV == */
  128. #mainnav {
  129. margin: 107px 0 0;
  130. background: #674e4e;
  131. -moz-border-radius-topleft: 5px;
  132. -moz-border-radius-topright: 5px;
  133. border: none;
  134. font-size: 12px;
  135. position: relative;
  136. border: 1px solid #2C1F1C;
  137. }
  138. #mainnav li {
  139. border-right-color: #674e4e;
  140. padding: 0;
  141. background: #674e4e;
  142. }
  143. #mainnav :link, #mainnav :visited {
  144. background-image: none;
  145. border-color: #2C1F1C;
  146. padding-left: 8px; padding-right: 8px;
  147. }
  148. #mainnav :link,
  149. #mainnav :visited,
  150. #mainnav :link:hover,
  151. #mainnav :visited:hover,
  152. #mainnav .active :link,
  153. #mainnav .active :visited,
  154. #mainnav .active :link:hover,
  155. #mainnav .active :visited:hover {
  156. border-right: none;
  157. color: #fff;
  158. }
  159. #mainnav li.last,
  160. #mainnav li.last :link:hover,
  161. #mainnav li.last :visited:hover,
  162. #mainnav li.last.active :link,
  163. #mainnav li.last.active :visited,
  164. #mainnav li.last.active :link:hover,
  165. #mainnav li.last.active :visited:hover {
  166. -moz-border-radius-topright: 5px;
  167. }
  168. #mainnav .active :link,
  169. #mainnav .active :visited {
  170. background: #fff;
  171. color: #2C1F1C;
  172. }
  173. #mainnav :link:hover,
  174. #mainnav :visited:hover,
  175. #mainnav .active :link:hover,
  176. #mainnav .active :visited:hover {
  177. background: #2C1F1C;
  178. color: #fff;
  179. }
  180. /* == SUBNAVS == */
  181. .nav li {
  182. border-right: 1px solid #674E4E;
  183. }
  184. #metanav ul {
  185. position: absolute;
  186. top: 0.3em;
  187. right: 0;
  188. font-weight: bold;
  189. }
  190. #metanav :link:hover, #metanav :visited:hover {
  191. color: #fff;
  192. background: inherit;
  193. }
  194. #siteheader .nav :link, #siteheader .nav :visited {
  195. color: #674e4e;
  196. }
  197. #siteheader .nav :visited:hover, #siteheader .nav :link:hover {
  198. color: #674e4e;
  199. background: inherit;
  200. border-bottom: 1px dotted #674e4e;
  201. }
  202. #ctxtnav ul {
  203. padding: 0.2em 0;
  204. }
  205. /* == login == */
  206. #loginguest a:hover, #metanav :link, #metanav :visited {
  207. color: #2C1F1C;
  208. }
  209. /* = FOOTER = */
  210. #footer {
  211. display: none;
  212. }
  213. .nav li, #altlinks li {
  214. background: none;
  215. }
  216. /* = PAGES & MODULES = */
  217. #content .paging .current, #content .paging .current :hover {
  218. border: 1px solid #a3c37a;
  219. background: #674e4e;
  220. }
  221. #content .paging :link, #content .paging :visited {
  222. border: 1px solid #a3c37a;
  223. color: #674e4e;
  224. }
  225. #content .paging :link:hover, #content .paging :visited:hover {
  226. background: #FFBB22;
  227. color: #674e4e;
  228. border: 1px solid #a3c37a;
  229. }
  230. #content .paging .previous a,
  231. #content .paging .next a,
  232. #content .paging .previous a:hover, #content .paging .next a:hover {
  233. border: none;
  234. }
  235. #content .paging .previous a:hover, #content .paging .next a:hover {
  236. color: #FFBB22;
  237. }
  238. /* == WIKI CONTENT : Styles for images in documentation and articles == */
  239. .centertxt {
  240. text-align: center;
  241. }
  242. .lefttxt {
  243. text-align: left;
  244. }
  245. .righttxt {
  246. text-align: right;
  247. }
  248. .floatleft {
  249. float: left;
  250. }
  251. .floatright {
  252. float: right;
  253. }
  254. .floatright img, imgfloatright {
  255. margin-left: 0.2em;
  256. margin-bottom: 0.2em;
  257. }
  258. .floatleft img, imgfloatleft {
  259. margin-right: 0.2em;
  260. margin-bottom: 0.2em;
  261. }
  262. img.inline, img.inlinetop {
  263. border: solid 2px;
  264. padding: 2px;
  265. }
  266. img.inlinetop {
  267. vertical-align: top;
  268. }
  269. img.math {
  270. vertical-align: middle;
  271. margin-left: 10px;
  272. margin-right: 10px;
  273. }
  274. img.matrix {
  275. vertical-align: top;
  276. margin-right: 30px;
  277. margin-top: 10px;
  278. }
  279. .ohloh, .ohloh2 {
  280. background-repeat: no-repeat;
  281. display: block;
  282. }
  283. .ohloh {
  284. background: transparent url(ohloh.png) no-repeat left 80px;
  285. height: 14px;
  286. padding-top: 200px;
  287. }
  288. .ohloh2 {
  289. background : transparent url(ohloh2.png) no-repeat -6px bottom;
  290. padding-top: 105px;
  291. height:11px;
  292. }
  293. .software {
  294. margin:0 auto;
  295. max-width:750px;
  296. }
  297. .paragraphe {
  298. width: 333px;
  299. margin: 0 10px;
  300. }
  301. /* == FORMS == */
  302. legend {
  303. color: #674e4e;
  304. font-size: 20px;
  305. background: transparent url(fiole-ticket.png) no-repeat 2px -1px;
  306. padding-left: 20px;
  307. }
  308. fieldset {
  309. border: 1px solid #674e4e;
  310. background: #C1CFE5;
  311. padding: 0.2em;
  312. -moz-border-radius: 5px;
  313. -webkit-border-radius: 5px;
  314. border-radius: 5px;
  315. }
  316. #content.ticket, #content.milestone, {
  317. margin: 0 auto;
  318. }
  319. #content.ticket fieldset, #edit fieldset {
  320. background: #C1CFE5;
  321. border: 1px solid #674e4e !important;
  322. padding: 0.2em;
  323. }
  324. #field-description {
  325. background: #fff;
  326. }
  327. #attachments {
  328. background: #fff;
  329. border: none;
  330. }
  331. #attachfile {
  332. text-align: center;
  333. }
  334. #changelog {
  335. background: #BFADAD;
  336. border: 1px solid #674e4e;
  337. -moz-border-radius: 5px;
  338. -webkit-border-radius: 5px;
  339. border-radius: 5px;
  340. }
  341. /* === FORM TICKETS === */
  342. #preview h3, #changelog h3 {
  343. border-bottom: 1px solid #674e4e;
  344. color: #fff;
  345. font-size: 100%;
  346. font-weight: bold;
  347. }
  348. #ticket {
  349. background-color: #C1CFE5;
  350. border: 1px solid #674e4e;
  351. -moz-border-radius: 5px;
  352. -webkit-border-radius: 5px;
  353. border-radius: 5px;
  354. }
  355. div#ticket.ticketdraft {
  356. border: none;
  357. background-color: #C1CFE5;
  358. }
  359. #ticket .date p {
  360. margin: 6px;
  361. color: #674e4e;
  362. }
  363. form #comment {
  364. width: 692px;
  365. }
  366. #ticket table.properties,
  367. #ticket table.properties tr {
  368. border: 1px dotted #674E4E;
  369. }
  370. #ticket .description h3, #ticket table.properties th {
  371. color: #2C1F1C;
  372. }
  373. #ticket .description h3 {
  374. border-bottom: 1px dotted #674E4E;
  375. }
  376. #content.ticket {
  377. margin: 0 auto;
  378. }
  379. #content.ticket fieldset {
  380. border: 1px solid #674e4e;
  381. }
  382. /* editor menu */
  383. .wikitoolbar {
  384. width: 252px;
  385. }
  386. .wikitoolbar :link, .wikitoolbar :visited {
  387. border: 1px solid #674E4E;
  388. margin-left: 2px
  389. }
  390. .wikitoolbar :active, .wikitoolbar :hover {
  391. border: 1px solid #2C1F1C;
  392. }
  393. /* === BUTTONS === */
  394. .buttons {
  395. text-align: center;
  396. }
  397. .buttons input {
  398. margin: 0.5em;
  399. }
  400. input[type="button"],
  401. input[type="submit"],
  402. input[type="reset"],
  403. .controls a {
  404. background: #674e4e;
  405. color: #fff;
  406. border: 1px solid #2C1F1C;
  407. -moz-border-radius: 4px;
  408. white-space: normal;
  409. cursor: pointer;
  410. font-size: 11px;
  411. padding: 0.2em;
  412. }
  413. input[type="button"]:hover,
  414. input[type="submit"]:hover,
  415. input[type="reset"]:hover,
  416. .controls a:hover {
  417. background: #2C1F1C;
  418. border: 1px solid #674e4e;
  419. color: #fff;
  420. }
  421. #attachments input[type="button"],
  422. #attachments input[type="submit"],
  423. #attachments input[type="reset"],
  424. .buttons input[type="button"],
  425. .buttons input[type="submit"],
  426. .buttons input[type="reset"] {
  427. -moz-border-radius: 10px;
  428. -webkit-border-radius: 10px;
  429. border-radius: 10px;
  430. background: #674e4e url(bouton.png) no-repeat center top;
  431. color: #fff;
  432. border: 0;
  433. border-bottom: 1px solid #2C1F1C;
  434. padding-top: 90px;
  435. width: 148px;
  436. }
  437. #attachments input[type="button"]:hover,
  438. #attachments input[type="submit"]:hover,
  439. #attachments input[type="reset"]:hover,
  440. .buttons input[type="button"]:hover,
  441. .buttons input[type="submit"]:hover,
  442. .buttons input[type="reset"]:hover,
  443. .buttons input[type="button"]:active,
  444. .buttons input[type="submit"]:active,
  445. .buttons input[type="reset"]:active {
  446. background: #2C1F1C url(boutonhover.png) no-repeat center top;
  447. border: 0;
  448. border-bottom: 1px solid #674e4e;
  449. color: #fff;
  450. padding-top: 90px;
  451. width: 148px;
  452. -moz-border-radius: 10px;
  453. -webkit-border-radius: 10px;
  454. border-radius: 10px;
  455. }
  456. input[type="text"], input.textwidget, textarea {
  457. border: 1px solid #674E4E;
  458. }
  459. /* == SEARCH == */
  460. #content.search #results dt a {
  461. color: #674e4e;
  462. }
  463. #content.search #results .author, #results .date {
  464. color: #674e4e;
  465. font-style: italic;
  466. }
  467. .searchword0 {
  468. background: #FFBB22;
  469. color: #2C1F1C
  470. }
  471. #content.search #results dd {
  472. font-size: 1em;
  473. }
  474. #search { margin: 10px 0 0;}
  475. /* == ROADMAP == */
  476. .milestone .info .date, .milestone .info h2 em {
  477. color: #2C1F1C;
  478. }
  479. #prefs {
  480. background: #fff;
  481. border: 1px solid #4E6A91;
  482. color: #2C1F1C;
  483. font-size: 11px;
  484. }
  485. /* == BROWSER == */
  486. #dirlist td.age {
  487. border-top: 1px solid #2C1F1C
  488. border-bottom: 1px solid #2C1F1C
  489. }
  490. /* = WIKI = */
  491. div.code, pre.wiki, pre.literal-block {
  492. background: #BFADAD;
  493. border: 1px dotted #2C1F1C;
  494. }
  495. .wiki {
  496. max-width: 1200px;
  497. margin: 0 auto;
  498. }
  499. .wiki-toc, #prefs, #tabs {
  500. background: #fff;
  501. border: 1px solid #4E6A91;
  502. color: #674e4e;
  503. font-size: 12px;
  504. font-family: verdana,'Bitstream Vera Sans',helvetica,arial,sans-serif;
  505. -moz-border-radius: 5px;
  506. }
  507. #prefs .buttons {
  508. margin-top: 0;
  509. text-align: center;
  510. }
  511. #tabs li {
  512. color: #674e4e;
  513. }
  514. #tabs li li.active {
  515. border: 1px solid #D7E6FF;
  516. background: #D7E6FF;
  517. }
  518. .wiki-toc :link,
  519. .wiki-toc :visited {
  520. color: #2C1F1C
  521. }
  522. .wiki-toc .active {
  523. font-weight: bold;
  524. }
  525. /* == TABLE (FORUM, TIMELINE & DIFF) == */
  526. table.listing {
  527. border: 1px solid #674E4E;
  528. border-collapse: collapse;
  529. }
  530. table.listing thead {
  531. background: #674E4E;
  532. color: #fff;
  533. }
  534. table.listing thead th,
  535. table.listing tbody td,
  536. table.listing tbody th {
  537. border: 1px solid #674E4E;
  538. }
  539. table.listing thead th {
  540. text-align: center;
  541. font-size: 14px;
  542. }
  543. table.listing thead th a {
  544. color: #fff
  545. }
  546. table.listing thead th.moderators,
  547. table.listing tbody td.moderators,
  548. table.listing tbody th.moderators,
  549. table.listing thead th.id,
  550. table.listing tbody td.id,
  551. table.listing tbody th.id {
  552. display: none;
  553. }
  554. table.listing tbody td.lasttopic,
  555. table.listing tbody td.author,
  556. table.listing tbody td.founded,
  557. table.listing tbody td.lastreply {
  558. text-align: left;
  559. }
  560. table.listing tbody td.topics,
  561. table.listing tbody td.new_topics,
  562. table.listing tbody td.replies,
  563. table.listing tbody td.new_replies {
  564. text-align: right;
  565. }
  566. .tickets tr.color3-odd,
  567. table.listing tbody tr.odd {
  568. background: rgba(255, 255, 255, 0.7);
  569. }
  570. .tickets tr.color3-even,
  571. table.listing tbody tr.even {
  572. background: rgba(240, 240, 240, 0.8);
  573. }
  574. table.listing tbody tr:hover { background: #D7E6FF !important }
  575. table.listing tbody tr.focus { background: #D7E6FF !important }
  576. .tickets tr.color4-odd {
  577. background: rgba(195, 215, 255, 0.8);
  578. }
  579. .tickets tr.color4-even {
  580. background: rgba(210, 215, 240, 0.8);
  581. }
  582. /* === FORUM === */
  583. .forum-list tr > td {
  584. padding: 0.2em 0.2em !important
  585. }
  586. .forum-list th.group, .topic-list th {
  587. background-color: #4E6A91;
  588. border: 1px solid #674E4E;
  589. padding: 5px;
  590. color: #fff;
  591. text-align: left;
  592. }
  593. .forum-list th.group div.name {
  594. float: left;
  595. text-align: right;
  596. width: 40%;
  597. }
  598. .forum-list th.group div.name:after {
  599. content: ':';
  600. }
  601. .forum-list th.group .description {
  602. float: left;
  603. }
  604. .forum-list th.group div.description {
  605. float: right;
  606. text-align: left;
  607. width: 59%;
  608. }
  609. .topic-list h1 {
  610. float: left;
  611. text-align: right;
  612. width: 49%;
  613. color: #2C1F1C;
  614. }
  615. .topic-list h1:after {
  616. content: ':';
  617. }
  618. .topic-list h1, .topic-list h2 {
  619. border-bottom: none;
  620. font-size: 20px;
  621. font-weight: bold;
  622. margin-top: 0;
  623. padding-top: 0;
  624. }
  625. .topic-list h2 {
  626. float: right;
  627. text-align: left;
  628. width: 49%;
  629. color: #4E6A91;
  630. }
  631. .topic-list th :link, .topic-list th :visited {
  632. color: #2C1F1C;
  633. }
  634. .topic-list th :active, .topic-list th :hover {
  635. color: #fff;
  636. }
  637. .message-list div.replies div.body {
  638. border: 1px solid #2C1F1C;
  639. -moz-border-radius: 5px;
  640. -webkit-border-radius-top: 5px;
  641. border-radius-top: 5px;
  642. }
  643. .message-list div.topic,
  644. .message-list div.replies,
  645. .message-list div.replies.new,
  646. .message-list div.topic.new {
  647. border: 1px solid #2C1F1C;
  648. background-color: #C1CFE5;
  649. }
  650. .message-list div.replies {
  651. border-top: 0;
  652. }
  653. .message-list div.topic {
  654. -moz-border-radius-topleft: 5px;
  655. -moz-border-radius-topright: 5px;
  656. -webkit-border-radius-top-left: 5px;
  657. -webkit-border-radius-top-right: 5px;
  658. border-radius-top-left: 5px;
  659. border-radius-top-right: 5px;
  660. }
  661. .message-list div li {
  662. background-image: none;
  663. }
  664. .message-list div.replies.new,
  665. .message-list div.topic.new {
  666. background: #BFADAD;
  667. }
  668. .message-list div.topic div.subject {
  669. background: #4E6A91 url(fiole.png) no-repeat 5px 1px;
  670. padding-left: 25px;
  671. color: #fff;
  672. border-bottom: 1px solid #2C1F1C;
  673. }
  674. .message-list div.topic.new div.subject {
  675. background: #674E4E url(fiole-new.png) no-repeat 5px 1px;
  676. }
  677. /* === DIFF === */
  678. .diff h2 {
  679. color: #fff;
  680. background: #4e6a91;
  681. background-color: #C1CFE5;
  682. }
  683. dt .time {
  684. color: #2C1F1C;
  685. }
  686. .diff table tbody th {
  687. background: #D7E6FF;
  688. color: #674E4E;
  689. }
  690. .diff li.entry, .diff table th {
  691. border-color: #4e6a91;
  692. }
  693. table#info li {
  694. background-image: none;
  695. }
  696. /* == admin == */
  697. .admin #tabs li, .admin fieldset {
  698. background: #fff;
  699. }
  700. /* == PASTEBIN == */
  701. div.sidebar {
  702. -moz-border-radius: 5px;
  703. -webkit-border-radius-bottomright: 5px;
  704. border-radius-topleft: 5px;
  705. background: rgba(215,230,255, 0.8);
  706. border: 1px solid #2C1F1C;
  707. float: right;
  708. overflow: hidden;
  709. padding: 10px;
  710. width: 180px;
  711. }