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.
 
 
 
 
 
 

474 lines
8.0 KiB

  1. /*
  2. */
  3. /* = styles généraux = */
  4. body {
  5. background: #4E6A91;
  6. color: white;
  7. width: 100%;
  8. padding: 0;
  9. margin: 0;
  10. }
  11. body, td, th, h1, h2, h3, h4, #main {
  12. font-family: "URW Gothic L", Helvetica, Verdana;
  13. }
  14. .corps {
  15. margin: 0 5px;
  16. min-width: 750px;
  17. position: relative;
  18. }
  19. h1, h2, h3 {
  20. border-style: solid;
  21. background-color: inherit;
  22. font-variant: small-caps;
  23. border-width: 0 0 2px 0;
  24. border-color: #674e4e;
  25. color: #674e4e;
  26. }
  27. h1 {
  28. font-size: 1.6em;
  29. }
  30. h2 {
  31. font-size: 1.3em;
  32. }
  33. h3 {
  34. font-size: 1.1em;
  35. }
  36. p, dd, dd, ol, ul {
  37. text-align: inherit;
  38. font-size: 1em;
  39. }
  40. :link, :visited {
  41. color: #674e4e;
  42. border-bottom: none;
  43. }
  44. :link:hover, :visited:hover {
  45. color: #2C1F1C;
  46. background-color: inherit;
  47. }
  48. dt em {
  49. border-bottom:none;
  50. color: #674e4e;
  51. font-style:normal;
  52. text-decoration:none;
  53. }
  54. /* = HEADER = */
  55. .nav ul {
  56. text-align: right;
  57. font-size: 12px;
  58. }
  59. .nav li.last {
  60. border-right: none !important;
  61. }
  62. #main {
  63. background: #fff;
  64. color: #2C1F1C;
  65. padding: 0 1em;
  66. overflow: auto;
  67. }
  68. #header img {
  69. margin: 0 ;
  70. position: absolute;
  71. left: 0;
  72. top: 1px;
  73. z-index: 10;
  74. }
  75. #siteheader, #banner, #mainnav, .nav {
  76. font-family:"Arial","Geneva",sans-serif;
  77. }
  78. /* == MENU PRINCIPAL == */
  79. #mainnav {
  80. margin: 107px 0 0;
  81. background: #674e4e;
  82. -moz-border-radius-topleft: 5px;
  83. -moz-border-radius-topright: 5px;
  84. border: none;
  85. font-size: 12px;
  86. position: relative;
  87. }
  88. #mainnav li {
  89. border-right-color: #674e4e;
  90. padding: 0;
  91. background: #674e4e;
  92. }
  93. #mainnav :link, #mainnav :visited {
  94. background-image: none;
  95. border-color: #2C1F1C;
  96. padding-left: 8px; padding-right: 8px;
  97. }
  98. #mainnav :link,
  99. #mainnav :visited,
  100. #mainnav :link:hover,
  101. #mainnav :visited:hover,
  102. #mainnav .active :link,
  103. #mainnav .active :visited,
  104. #mainnav .active :link:hover, #mainnav .active :visited:hover {
  105. border-right: none;
  106. color: #fff;
  107. }
  108. #mainnav li.last,
  109. #mainnav li.last :link:hover,
  110. #mainnav li.last :visited:hover,
  111. #mainnav li.last.active :link,
  112. #mainnav li.last.active :visited,
  113. #mainnav li.last.active :link:hover,
  114. #mainnav li.last.active :visited:hover {
  115. -moz-border-radius-topright: 5px;
  116. }
  117. #mainnav .active :link, #mainnav .active :visited {
  118. background: #fff;
  119. color: #2C1F1C;
  120. }
  121. #mainnav :link:hover, #mainnav :visited:hover, #mainnav .active :link:hover, #mainnav .active :visited:hover {
  122. background: #2C1F1C;
  123. color: #fff;
  124. }
  125. /* == Subnav == */
  126. #metanav ul {
  127. position: absolute;
  128. top: 0.3em;
  129. right: 0;
  130. font-weight: bold;
  131. }
  132. #metanav :link:hover, #metanav :visited:hover {
  133. color: #fff;
  134. background: inherit;
  135. }
  136. #loginguest a:hover, #metanav :link, #metanav :visited {
  137. color: #2C1F1C;
  138. }
  139. #siteheader p {
  140. margin-top: 0.3em;
  141. }
  142. #siteheader .nav :link, #siteheader .nav :visited {
  143. color: #674e4e;
  144. }
  145. #siteheader .nav :visited:hover, #siteheader .nav :link:hover {
  146. color: #674e4e;
  147. background: inherit;
  148. border-bottom: 1px dotted #674e4e;
  149. }
  150. #ctxtnav ul {
  151. padding: 0.2em 0;
  152. }
  153. /* = FOOTER = */
  154. #footer {
  155. display: none;
  156. }
  157. /* = PAGES ET MODULES = */
  158. /* == Styles for images in documentation and articles == */
  159. img.inline, img.inlinetop {
  160. border: solid 2px;
  161. padding: 2px;
  162. }
  163. img.inlinetop {
  164. vertical-align: top;
  165. }
  166. img.math {
  167. vertical-align: middle;
  168. margin-left: 10px;
  169. margin-right: 10px;
  170. }
  171. img.matrix {
  172. vertical-align: top;
  173. margin-right: 30px;
  174. margin-top: 10px;
  175. }
  176. /* == FORMS == */
  177. input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover {
  178. background: #674e4e;
  179. color: #fff;
  180. }
  181. input[type="button"], input[type="submit"], input[type="reset"] {
  182. background: #674e4e;
  183. border: 1px solid #674e4e;
  184. -moz-border-radius: 4px;
  185. }
  186. input[type="text"], input.textwidget, textarea {
  187. border: 1px solid #674E4E;
  188. }
  189. legend {
  190. color: #674e4e;
  191. }
  192. fieldset {
  193. border: 1px solid #674e4e;
  194. background: #E5DCDC;
  195. padding: 0.2em;
  196. }
  197. #content.ticket, #content.milestone, {
  198. margin: 0 auto;
  199. }
  200. .buttons {
  201. text-align: center;
  202. }
  203. .buttons input {
  204. margin: 0.5em;
  205. }
  206. #content.ticket fieldset, #edit fieldset {
  207. background: #E5DCDC;
  208. border: 1px solid #674e4e !important;
  209. padding: 0.2em;
  210. }
  211. #field-description {
  212. background: #fff;
  213. }
  214. #attachments {
  215. background: #fff;
  216. border: none;
  217. }
  218. #attachfile {
  219. text-align: center;
  220. }
  221. #changelog {
  222. background: #674E4E;
  223. border: 1px solid #674e4e;
  224. }
  225. a.ext-link .icon {
  226. background-position: right center;
  227. padding-right: 16px;
  228. padding-left: 0;
  229. }
  230. /* === FORM TICKETS === */
  231. #preview h3, #changelog h3 {
  232. border-bottom:1px solid #674e4e;
  233. color:#552701;
  234. font-size:100%;
  235. font-weight:bold;
  236. }
  237. #ticket {
  238. background: #E0E095;
  239. border: 1px solid #674e4e;
  240. }
  241. #ticket .date p {
  242. margin: 6px;
  243. color: #674e4e;
  244. }
  245. form #comment {
  246. width: 692px;
  247. }
  248. #ticket table.properties tr {
  249. border-bottom: 1px dotted #674E4E;
  250. }
  251. #content.ticket {
  252. margin: 0 auto;
  253. }
  254. #content.ticket fieldset {
  255. border: 1px solid #674e4e;
  256. }
  257. .wikitoolbar {
  258. width: 252px;
  259. }
  260. .wikitoolbar :link, .wikitoolbar :visited {
  261. border: 1px solid #674E4E;
  262. margin-left: 2px
  263. }
  264. /* == search == */
  265. #content.search #results dt a {
  266. color: #674e4e;
  267. }
  268. #content.search #results .author, #results .date {
  269. color: #674e4e;
  270. font-style: italic;
  271. }
  272. .searchword0 {
  273. background: #FFBB22;
  274. color: #552701;
  275. }
  276. #content.search #results dd {
  277. font-size: 1em;
  278. }
  279. #search { margin: 10px 0 0;}
  280. #content .paging .current, #content .paging .current :hover {
  281. border: 1px solid #a3c37a;
  282. background: #674e4e;
  283. }
  284. #content .paging :link, #content .paging :visited {
  285. border: 1px solid #a3c37a;
  286. color: #674e4e;
  287. }
  288. #content .paging :link:hover, #content .paging :visited:hover {
  289. background: #FFBB22;
  290. color: #674e4e;
  291. border: 1px solid #a3c37a;
  292. }
  293. #content .paging .previous a,
  294. #content .paging .next a,
  295. #content .paging .previous a:hover, #content .paging .next a:hover {
  296. border: none;
  297. }
  298. #content .paging .previous a:hover, #content .paging .next a:hover {
  299. color: #FFBB22;
  300. }
  301. /* roadmap */
  302. .milestone .info .date, .milestone .info h2 em {
  303. color: #552701;
  304. }
  305. #prefs {
  306. background: #FFBB22;
  307. border: 1px solid #a3c37a;
  308. color: #552701;
  309. font-size: 11px;
  310. }
  311. /* browser */
  312. table.listing thead th,
  313. table.listing tbody td,
  314. table.listing tbody th {
  315. border: 1px solid #a3c37a;
  316. }
  317. #dirlist td.age {
  318. border-top: 1px solid #552701;
  319. border-bottom: 1px solid #552701;
  320. }
  321. /* = WIKI = */
  322. div.code, pre.wiki, pre.literal-block {
  323. background: #fff;
  324. border: 1px dotted #552701;
  325. }
  326. .wiki-toc, #prefs, #tabs {
  327. background: #FFBB22;
  328. border: 1px solid #a3c37a;
  329. color: #674e4e;
  330. font-size: 12px;
  331. font-family: verdana,'Bitstream Vera Sans',helvetica,arial,sans-serif;
  332. -moz-border-radius: 5px;
  333. }
  334. #tabs li {
  335. color: #674e4e;
  336. }
  337. #tabs li li.active {
  338. border: 1px solid #E5DCDC;
  339. background: #E5DCDC;
  340. }
  341. .wiki-toc :link, .wiki-toc :visited {
  342. color: #552701;
  343. }
  344. a.missing:link, a.missing:visited,
  345. a.missing:link:hover, a.missing:visited:hover {
  346. background: #FFBB22;
  347. color: #552701;
  348. font-style: italic;
  349. }
  350. a.missing:link:after, a.missing:visited:after,
  351. a.missing:hover:after {
  352. content: ' missing!';
  353. font-size: 9px;
  354. color: #674e4e;
  355. vertical-align: top;
  356. padding-left: 5px;
  357. }
  358. .wiki-toc .active {
  359. font-weight: bold;
  360. }
  361. h1 :link, h1 :visited {
  362. color: #674e4e;
  363. }
  364. .floatleft {
  365. float: left;
  366. }
  367. .floatright {
  368. float: right;
  369. }
  370. .floatright img, imgfloatright {
  371. margin-left: 0.2em;
  372. margin-bottom: 0.2em;
  373. }
  374. .floatleft img, imgfloatleft {
  375. margin-right: 0.2em;
  376. margin-bottom: 0.2em;
  377. }
  378. /* forum */
  379. table.listing thead th.moderators,
  380. table.listing tbody td.moderators,
  381. table.listing tbody th.moderators,
  382. table.listing thead th.id,
  383. table.listing tbody td.id,
  384. table.listing tbody th.id {
  385. display: none;
  386. }
  387. .forum-list tr > td {
  388. padding: 0.2em 0.2em !important
  389. }
  390. .forum-list th.group {
  391. background-color: #674e4e;
  392. border: 1px solid #a3c37a;
  393. padding: 10px 0.2em;
  394. }