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.
 
 
 
 
 
 

630 lines
11 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: #4E6A91;
  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. ol li {
  41. list-style: decimal inside;
  42. }
  43. ul li {
  44. list-style: none inside;
  45. padding-left: 20px;
  46. background: url(puce.png) no-repeat left center;
  47. }
  48. ul, ol {
  49. padding-left: 0;
  50. }
  51. :link, :visited {
  52. color: #4E6A91;
  53. border-bottom: none;
  54. }
  55. :link:hover, :visited:hover {
  56. color: #2C1F1C;
  57. background-color: inherit;
  58. }
  59. dt em {
  60. border-bottom:none;
  61. color: #674e4e;
  62. font-style:normal;
  63. text-decoration:none;
  64. }
  65. dt :link:hover, dt :visited:hover {
  66. background-color: #D7E6FF;
  67. }
  68. table.listing tbody tr:hover { background: #D7E6FF !important }
  69. table.listing tbody tr.focus { background: #D7E6FF !important }
  70. /* = HEADER = */
  71. .nav ul {
  72. text-align: right;
  73. font-size: 12px;
  74. }
  75. .nav li.last {
  76. border-right: none !important;
  77. }
  78. #main {
  79. background: #fff;
  80. color: #2C1F1C;
  81. padding: 0 1em;
  82. overflow: auto;
  83. border: 1px solid #2C1F1C;
  84. border-top: 0;
  85. }
  86. #header img {
  87. margin: 0 ;
  88. position: absolute;
  89. left: 0;
  90. top: 1px;
  91. z-index: 10;
  92. }
  93. #siteheader, #banner, #mainnav, .nav {
  94. font-family:"Arial","Geneva",sans-serif;
  95. }
  96. /* == MENU PRINCIPAL == */
  97. #mainnav {
  98. margin: 107px 0 0;
  99. background: #674e4e;
  100. -moz-border-radius-topleft: 5px;
  101. -moz-border-radius-topright: 5px;
  102. border: none;
  103. font-size: 12px;
  104. position: relative;
  105. border: 1px solid #2C1F1C;
  106. }
  107. #mainnav li {
  108. border-right-color: #674e4e;
  109. padding: 0;
  110. background: #674e4e;
  111. }
  112. #mainnav :link, #mainnav :visited {
  113. background-image: none;
  114. border-color: #2C1F1C;
  115. padding-left: 8px; padding-right: 8px;
  116. }
  117. #mainnav :link,
  118. #mainnav :visited,
  119. #mainnav :link:hover,
  120. #mainnav :visited:hover,
  121. #mainnav .active :link,
  122. #mainnav .active :visited,
  123. #mainnav .active :link:hover, #mainnav .active :visited:hover {
  124. border-right: none;
  125. color: #fff;
  126. }
  127. #mainnav li.last,
  128. #mainnav li.last :link:hover,
  129. #mainnav li.last :visited:hover,
  130. #mainnav li.last.active :link,
  131. #mainnav li.last.active :visited,
  132. #mainnav li.last.active :link:hover,
  133. #mainnav li.last.active :visited:hover {
  134. -moz-border-radius-topright: 5px;
  135. }
  136. #mainnav .active :link, #mainnav .active :visited {
  137. background: #fff;
  138. color: #2C1F1C;
  139. }
  140. #mainnav :link:hover, #mainnav :visited:hover, #mainnav .active :link:hover, #mainnav .active :visited:hover {
  141. background: #2C1F1C;
  142. color: #fff;
  143. }
  144. /* == Subnav == */
  145. .nav li {
  146. border-right: 1px solid #674E4E;
  147. }
  148. #metanav ul {
  149. position: absolute;
  150. top: 0.3em;
  151. right: 0;
  152. font-weight: bold;
  153. }
  154. #metanav :link:hover, #metanav :visited:hover {
  155. color: #fff;
  156. background: inherit;
  157. }
  158. #loginguest a:hover, #metanav :link, #metanav :visited {
  159. color: #2C1F1C;
  160. }
  161. #siteheader p {
  162. margin-top: 0.3em;
  163. }
  164. #siteheader .nav :link, #siteheader .nav :visited {
  165. color: #674e4e;
  166. }
  167. #siteheader .nav :visited:hover, #siteheader .nav :link:hover {
  168. color: #674e4e;
  169. background: inherit;
  170. border-bottom: 1px dotted #674e4e;
  171. }
  172. #ctxtnav ul {
  173. padding: 0.2em 0;
  174. }
  175. /* = FOOTER = */
  176. #footer {
  177. display: none;
  178. }
  179. .nav li, #altlinks li {
  180. background: none;
  181. }
  182. /* = PAGES ET MODULES = */
  183. /* == Styles for images in documentation and articles == */
  184. img.inline, img.inlinetop {
  185. border: solid 2px;
  186. padding: 2px;
  187. }
  188. img.inlinetop {
  189. vertical-align: top;
  190. }
  191. img.math {
  192. vertical-align: middle;
  193. margin-left: 10px;
  194. margin-right: 10px;
  195. }
  196. img.matrix {
  197. vertical-align: top;
  198. margin-right: 30px;
  199. margin-top: 10px;
  200. }
  201. /* == FORMS == */
  202. input[type="button"], input[type="submit"], input[type="reset"] {
  203. background: #674e4e;
  204. color: #fff;
  205. border: 1px solid #2C1F1C;
  206. -moz-border-radius: 4px;
  207. white-space: normal;
  208. cursor: pointer;
  209. }
  210. input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover {
  211. background: #2C1F1C;
  212. border: 1px solid #674e4e;
  213. color: #fff;
  214. }
  215. .buttons input[type="button"], .buttons input[type="submit"], .buttons input[type="reset"] {
  216. -moz-border-radius: 10px;
  217. -webkit-border-radius: 10px;
  218. border-radius: 10px;
  219. background: #674e4e url(bouton.png) no-repeat center top;
  220. color: #fff;
  221. border: 0;
  222. border-bottom: 1px solid #2C1F1C;
  223. padding-top: 90px;
  224. width:148px;
  225. }
  226. .buttons input[type="button"]:hover, .buttons input[type="submit"]:hover, .buttons input[type="reset"]:hover {
  227. background: #2C1F1C url(boutonhover.png) no-repeat center top;
  228. border: 0;
  229. border-bottom: 1px solid #674e4e;
  230. color: #fff;
  231. padding-top: 90px;
  232. width: 148px;
  233. -moz-border-radius: 10px;
  234. -webkit-border-radius: 10px;
  235. border-radius: 10px;
  236. }
  237. input[type="text"], input.textwidget, textarea {
  238. border: 1px solid #674E4E;
  239. }
  240. legend {
  241. color: #674e4e;
  242. }
  243. fieldset {
  244. border: 1px solid #674e4e;
  245. background: #C1CFE5;
  246. padding: 0.2em;
  247. -moz-border-radius: 5px;
  248. -webkit-border-radius: 5px;
  249. border-radius: 5px;
  250. }
  251. legend{
  252. }
  253. #content.ticket, #content.milestone, {
  254. margin: 0 auto;
  255. }
  256. .buttons {
  257. text-align: center;
  258. }
  259. .buttons input {
  260. margin: 0.5em;
  261. }
  262. #content.ticket fieldset, #edit fieldset {
  263. background: #C1CFE5;
  264. border: 1px solid #674e4e !important;
  265. padding: 0.2em;
  266. }
  267. #field-description {
  268. background: #fff;
  269. }
  270. #attachments {
  271. background: #fff;
  272. border: none;
  273. }
  274. #attachfile {
  275. text-align: center;
  276. }
  277. #changelog {
  278. background: #674E4E;
  279. border: 1px solid #674e4e;
  280. }
  281. a.ext-link .icon {
  282. background-position: right center;
  283. padding-right: 16px;
  284. padding-left: 0;
  285. }
  286. /* === FORM TICKETS === */
  287. #preview h3, #changelog h3 {
  288. border-bottom:1px solid #674e4e;
  289. color:#552701;
  290. font-size:100%;
  291. font-weight:bold;
  292. }
  293. #ticket {
  294. background: #E0E095;
  295. border: 1px solid #674e4e;
  296. }
  297. #ticket .date p {
  298. margin: 6px;
  299. color: #674e4e;
  300. }
  301. form #comment {
  302. width: 692px;
  303. }
  304. #ticket table.properties tr {
  305. border-bottom: 1px dotted #674E4E;
  306. }
  307. #content.ticket {
  308. margin: 0 auto;
  309. }
  310. #content.ticket fieldset {
  311. border: 1px solid #674e4e;
  312. }
  313. .wikitoolbar {
  314. width: 252px;
  315. }
  316. .wikitoolbar :link, .wikitoolbar :visited {
  317. border: 1px solid #674E4E;
  318. margin-left: 2px
  319. }
  320. .wikitoolbar :active, .wikitoolbar :hover {
  321. border: 1px solid #2C1F1C;
  322. }
  323. /* == search == */
  324. #content.search #results dt a {
  325. color: #674e4e;
  326. }
  327. #content.search #results .author, #results .date {
  328. color: #674e4e;
  329. font-style: italic;
  330. }
  331. .searchword0 {
  332. background: #FFBB22;
  333. color: #2C1F1C
  334. }
  335. #content.search #results dd {
  336. font-size: 1em;
  337. }
  338. #search { margin: 10px 0 0;}
  339. #content .paging .current, #content .paging .current :hover {
  340. border: 1px solid #a3c37a;
  341. background: #674e4e;
  342. }
  343. #content .paging :link, #content .paging :visited {
  344. border: 1px solid #a3c37a;
  345. color: #674e4e;
  346. }
  347. #content .paging :link:hover, #content .paging :visited:hover {
  348. background: #FFBB22;
  349. color: #674e4e;
  350. border: 1px solid #a3c37a;
  351. }
  352. #content .paging .previous a,
  353. #content .paging .next a,
  354. #content .paging .previous a:hover, #content .paging .next a:hover {
  355. border: none;
  356. }
  357. #content .paging .previous a:hover, #content .paging .next a:hover {
  358. color: #FFBB22;
  359. }
  360. /* roadmap */
  361. .milestone .info .date, .milestone .info h2 em {
  362. color: #2C1F1C
  363. }
  364. #prefs {
  365. background: #fff;
  366. border: 1px solid #4E6A91;
  367. color: #2C1F1C
  368. font-size: 11px;
  369. }
  370. /* browser */
  371. table.listing {
  372. border-color: #674E4E;
  373. }
  374. table.listing thead th,
  375. table.listing tbody td,
  376. table.listing tbody th {
  377. border: 1px solid #674E4E;
  378. }
  379. #dirlist td.age {
  380. border-top: 1px solid #2C1F1C
  381. border-bottom: 1px solid #2C1F1C
  382. }
  383. /* = WIKI = */
  384. div.code, pre.wiki, pre.literal-block {
  385. background: #fff;
  386. border: 1px dotted #2C1F1C
  387. }
  388. .wiki-toc, #prefs, #tabs {
  389. background: #fff;
  390. border: 1px solid #4E6A91;
  391. color: #674e4e;
  392. font-size: 12px;
  393. font-family: verdana,'Bitstream Vera Sans',helvetica,arial,sans-serif;
  394. -moz-border-radius: 5px;
  395. }
  396. #prefs .buttons {
  397. margin-top: 0;
  398. text-align: center;
  399. }
  400. #tabs li {
  401. color: #674e4e;
  402. }
  403. #tabs li li.active {
  404. border: 1px solid #D7E6FF;
  405. background: #D7E6FF;
  406. }
  407. .wiki-toc :link, .wiki-toc :visited {
  408. color: #2C1F1C
  409. }
  410. a.missing:link, a.missing:visited,
  411. a.missing:link:hover, a.missing:visited:hover {
  412. background: #FFBB22;
  413. color: #2C1F1C
  414. font-style: italic;
  415. }
  416. a.missing:link:after, a.missing:visited:after,
  417. a.missing:hover:after {
  418. content: ' missing!';
  419. font-size: 9px;
  420. color: #674e4e;
  421. vertical-align: top;
  422. padding-left: 5px;
  423. }
  424. .wiki-toc .active {
  425. font-weight: bold;
  426. }
  427. h1 :link, h1 :visited {
  428. color: #674e4e;
  429. }
  430. .floatleft {
  431. float: left;
  432. }
  433. .floatright {
  434. float: right;
  435. }
  436. .floatright img, imgfloatright {
  437. margin-left: 0.2em;
  438. margin-bottom: 0.2em;
  439. }
  440. .floatleft img, imgfloatleft {
  441. margin-right: 0.2em;
  442. margin-bottom: 0.2em;
  443. }
  444. /* forum */
  445. table.listing thead th.moderators,
  446. table.listing tbody td.moderators,
  447. table.listing tbody th.moderators,
  448. table.listing thead th.id,
  449. table.listing tbody td.id,
  450. table.listing tbody th.id {
  451. display: none;
  452. }
  453. table.listing tbody td.lasttopic,
  454. table.listing tbody td.author,
  455. table.listing tbody td.founded,
  456. table.listing tbody td.lastreply {
  457. text-align: left;
  458. }
  459. table.listing thead th {
  460. text-align: center;
  461. }
  462. table.listing tbody td.topics,
  463. table.listing tbody td.new_topics,
  464. table.listing tbody td.replies,
  465. table.listing tbody td.new_replies {
  466. text-align: right;
  467. }
  468. .forum-list tr > td {
  469. padding: 0.2em 0.2em !important
  470. }
  471. .forum-list th.group, .topic-list th {
  472. background-color: #4E6A91;
  473. border: 1px solid #674E4E;
  474. padding: 5px;
  475. color: #fff;
  476. text-align: left;
  477. }
  478. .topic-list th :link, .topic-list th :visited {
  479. color: #2C1F1C;
  480. }
  481. .topic-list th :active, .topic-list th :hover {
  482. color: #fff;
  483. }
  484. .forum-list th.group .description {
  485. float: left;
  486. }
  487. .topic-list h1, .topic-list h2 {
  488. border-bottom: none;
  489. font-size:20px;
  490. font-weight: bold;
  491. margin-top:0;
  492. padding-top:0;
  493. }
  494. .topic-list h1 {
  495. float: left;
  496. text-align: right;
  497. width: 49%;
  498. color: #2C1F1C;
  499. }
  500. .topic-list h2 {
  501. float: right;
  502. text-align: left;
  503. width: 49%;
  504. color: #4E6A91;
  505. }
  506. .topic-list h1:after {
  507. content: ':';
  508. }
  509. .forum-list th.group div.name {
  510. float: left;
  511. text-align: right;
  512. width: 49%;
  513. }
  514. .forum-list th.group div.name:after {
  515. content: ':';
  516. }
  517. .forum-list th.group div.description {
  518. float: right;
  519. text-align: left;
  520. width: 49%;
  521. }
  522. /* admin */
  523. .admin #tabs li, .admin fieldset {
  524. background: #fff;
  525. }
  526. /* pastebin */
  527. div.sidebar {
  528. -moz-border-radius: 5px;
  529. -webkit-border-radius-bottomright: 5px;
  530. border-radius-topleft: 5px;
  531. background: #D7E6FF;
  532. border: 1px solid #2C1F1C;
  533. float: right;
  534. overflow: hidden;
  535. padding: 10px;
  536. width: 180px;
  537. }
  538. /* diff */
  539. .diff table tbody th {
  540. background: #D7E6FF;
  541. color: #674E4E;
  542. }
  543. /* */
  544. table#info li {
  545. background-image: none;
  546. }