Merge lp:~mcpeter/ubuntu-fr-static/fix715133 into lp:ubuntu-fr-static

Proposed by McPeter
Status: Merged
Merged at revision: 38
Proposed branch: lp:~mcpeter/ubuntu-fr-static/fix715133
Merge into: lp:ubuntu-fr-static
Diff against target: 1811 lines (+625/-897)
6 files modified
theme2010/css/doc-general.css (+2/-8)
theme2010/css/forum-general.css (+602/-879)
theme2010/css/forum.css (+5/-0)
theme2010/css/header.css (+7/-0)
theme2010/css/init.css (+5/-6)
theme2010/js/common.js (+4/-4)
To merge this branch: bzr merge lp:~mcpeter/ubuntu-fr-static/fix715133
Reviewer Review Type Date Requested Status
Ubuntu-fr-webteam Pending
Review via email: mp+50504@code.launchpad.net

Description of the change

* Création de la page forum.css
  - Actuellement cette page contient par @import les différents styles communs et
    spécifiques. Cette page doit être utilisé en l'état pour la dev, à la fois
    comme fichier et en inclusion html. En prod elle sera (pour des raisons
    d'optimisation) le résultat d'un concat des différents styles.

* Modification de fichiers
  - theme2010/css/forum-general.css
    * Retrait des blocks :
        INIT.CSS / PAGE.CSS / HEADER.CSS / NAVIGATION.CSS
      Ces block se trouvent à présent dans la page forum.css sous forme d'import.
    * Retrait du block #accessibar qui fait partit de page.css
    * Retrait des styles sur 'hidemenu' devenus inutiles
    * Nettoyage/indentation du code

  - themes2010/css/doc-general.css
    * Retrait du block "hidemenu"

  - theme2010/css/header.css
    * Ajout du block "hidemenu"
    * Ajout du comportement input_focused (commun à tous les sites)
    * Ajout du cache des label de login/pass

  - theme2010/css/init.css
    * Réactivation des font-size de h1-2-3-4 en concordance avec le forum.
      (à noter que la doc en prod a une erreur de codage css sur la hauteur de
      ligne H2 : pas d'unité donné à la taille)

  - theme2010/js/common.js
    * Modification des cibles JS passation de 'name' à 'id' pour simplifier les
      appels.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'theme2010/css/doc-general.css'
2--- theme2010/css/doc-general.css 2011-02-19 01:18:38 +0000
3+++ theme2010/css/doc-general.css 2011-02-20 13:32:13 +0000
4@@ -19,12 +19,6 @@
5 h3{ font-size:1.25em; }
6 h4{ font-size:1em; }
7
8-/* Cacher / afficher menu Navigation */
9-html.hidemenu #navigation{ display:none; }
10-html.hidemenu #navbar, html.hidemenu #main, html.hidemenu #references, html.hidemenu #announce{ margin-left:0; }
11-html.hidemenu #hidemenu{ background-position:50% 27px; }
12-/* - - */
13-
14 #navbar{
15 margin:0 0 0 16em;
16 background:#f6f6f6 url('../images/commun/menu_c.png') bottom left repeat-x;
17@@ -575,6 +569,6 @@
18 }
19
20 /* Images */
21-.medialeft{ margin-right:0.5em; }
22-.mediaright{ margin-left:0.5em; }
23+img.medialeft{ margin-right:0.5em; }
24+img.mediaright{ margin-left:0.5em; }
25
26
27=== modified file 'theme2010/css/forum-general.css'
28--- theme2010/css/forum-general.css 2010-11-14 21:03:09 +0000
29+++ theme2010/css/forum-general.css 2011-02-20 13:32:13 +0000
30@@ -1,1094 +1,817 @@
31-/************************************* INIT.CSS ***********************************
32- Refonte des styles de base
33- - origine : http://www.alsacreations.com/astuce/lire/654-feuille-de-styles-de-base.html
34-*/
35-
36-html{font-size:100%}
37-body {padding:0;
38-margin-top:0;
39-background-repeat:repeat-x}
40-body, input, select, option, textarea{font-family:Arial, sans-serif; line-height:1.4em;
41-background-color:#FFF;color:#000}
42-body, option {font-size:0.85em;}
43-textarea, input, select {font-size:1em;}
44-h1, h2, h3, h4 {margin:1em 0 .5em 0;
45-line-height:1.2;
46-font-weight:bold; font-style:normal}
47-h1{font-size:1.75em}
48-h2{font-size:1.1em}
49-h3{font-size:1.1em}
50-h4{font-size:1em}
51-ul, ol{margin:0.75em 0 0.75em 12px; padding:0}
52-.alpha {list-style-type:lower-alpha}
53-p{margin:0.75em 0}
54-address{margin:0.75em 0; font-style:normal}
55-ol li p, ul li p{margin:0}
56-a{text-decoration:none;
57-color:#323232;}
58-a:hover, a:focus, a:active{text-decoration:underline}
59-a:active{outline:none}
60-a img{border:none}
61-em{font-style:italic}
62-strong{font-weight:bold}
63-form, fieldset{
64-margin:0; padding:0;
65-border:none}
66-input, button, select{vertical-align:middle; max-width:100%}
67-select{padding-right:5px}
68-/*************************** PAGE.CSS ********************************/
69-#page{
70-margin:1em; padding:0.4em 1.8em 0;
71-min-width:925px;
72-min-height:42em;
73-background-image:url('../images/commun/ground_page.png');
74-background-color:#F6F6F6;
75-background-position:top left; background-repeat:repeat-x;
76-border:1px outset #D2D2D2;
77-border-right:2px outset #D2D2D2;
78-border-bottom:3px outset #D2D2D2;
79-border-radius:8px;
80--moz-border-radius:8px;
81--o-border-radius:8px;
82--khtml-border-radius:8px;
83-position:relative;
84-}
85-/*********************************** HEADER.CSS ********************************
86- v0.1 - 13/06/2010 - McPeter
87-*/
88-#header{
89-height:7.5em;
90-margin-bottom:0px;
91-}
92-#header:after{content:''; display:block; clear:both}
93-#logo{
94-float:left;
95-background-repeat:no-repeat;
96-}
97-#logo h1{
98-margin:0;
99- /* 325px au lieu de 256px pour le logo 'edubuntu' - McPeter - 27/07/2010 */
100-min-width:325px; min-height:65px;
101-text-indent:-9000px;
102-}
103-#logo a{font-size:0.85em}
104-#search {
105-float:none;
106-margin-left:auto;
107-width:340px; height:23px;
108-background-color:#FFF;
109--o-border-radius:11px;
110--khtml-border-radius:11px;
111--moz-border-radius:11px;
112-border-radius:11px;
113-border-width:1px;
114-border-style:inset;
115-border-color:#AAA #FFF #FFF #AAA;
116-vertical-align:bottom;
117-}
118-#search input[type=text]{
119-float:left;
120-margin:3px 0 0 4px; padding:0 0 2px 20px;
121-width:170px;
122-background-color:transparent; background-position:1px 1px; background-repeat:no-repeat;
123-border:none;
124-}
125-#search select{
126-position:relative; z-index:1;
127-margin-top:1px;
128-width:110px;
129-background-color:transparent;
130-border:none;
131-border-left:1px solid #B3B3B3;
132-}
133-#search input[type=submit]{
134-position:relative; z-index:1;
135-margin-top:1px; padding:0.1em 0 0.3em;
136-width:30px;
137-background-color:transparent;
138-border:none;
139-border-left:1px solid #B3B3B3;
140-cursor:pointer;
141-}
142-#search select option{background-color:#FFF; font-size:1.2em; }
143-#brdwelcome p{padding:0}
144-#brdwelcome a{padding:0 0 -5px; color:#3C3B37}
145-#brdwelcome{
146-clear:none;
147-float:right;
148-text-align:right;
149-}
150-#brdwelcome ul.conl li span strong {margin-right:50px}
151-#login_top{
152-margin:5px 0 0 auto;
153-width:350px;
154-text-align:right;
155-}
156-/*#login_top input, #login_top a{font-size:0.9em;}*/
157-#login_top input[type=text], #login_top input[type=password]{
158-margin-right:10px; padding:2px 5px;
159-width:80px;
160-background-color:#FFF;
161-border-width:1px;
162-border-style:inset;
163-border-color:#AAA #FFF #FFF #AAA;
164--o-border-radius:11px;
165--khtml-border-radius:11px;
166--moz-border-radius:11px;
167-border-radius:1em;
168-}
169-#login_top input[type=submit]{
170-padding:0;
171-background-color:transparent;
172-border:none;
173-cursor:pointer;
174-}
175-#login .btn_logout{float:right}
176-#login a{text-decoration:none}
177-#login h2{font-size:1.2em}
178-#login_top input, #search input{color:grey}
179-.input_focused{
180-color:black !important;
181-}
182-
183-/****************** NAVIGATION.CSS *************************
184- v0.1 - 12/06/2010 - McPeter */
185-#navigation{
186-position:absolute; /*top:11.7em; left:4em; */
187-width:16em;
188-}
189-#navigation ul{margin:0}
190-#navigation li{list-style:none}
191-#navigation li.menu{
192-margin:0 0 8px; padding-top:1px;
193-background:#f6f6f6 url('../images/commun/menu_c.png') bottom left repeat-x;
194-border:1px solid #BEC0C0;
195-border-radius:5px 5px;
196--moz-border-radius:5px 5px;
197--o-border-radius:5px 5px;
198--khtml-border-radius:5px 5px;
199-}
200-#navigation a{
201-display:block;
202-text-decoration:none;
203-color:#000;
204-}
205-#navigation a.title{
206-height:1.4em;
207-min-height:20px;
208-text-decoration:none;
209-padding-bottom:0;
210-}
211-#navigation a.title:hover{font-weight:bold}
212- /* Icones des sections */
213-#menu-accueil, #menu-doc, #menu-forum, #menu-planet{
214-background-image:url('../images/commun/list_menu.png');
215-background-repeat:repeat-y;
216-}
217- /* positionnement des icones au repos/au survol/sélectionné */
218-a#menu-accueil{background-position:5px 0}
219-a#menu-accueil:hover{background-position:5px -20px}
220-a#menu-doc{background-position:5px -40px}
221-a#menu-doc:hover{background-position:5px -60px}
222-a#menu-forum{background-position:5px -100px; }
223-a#menu-planet{background-position:5px -120px; }
224-a#menu-planet:hover{background-position:5px -140px}
225-
226-#navigation .title, #navigation h2{font-size:1.1em}
227-
228-#navigation h2{
229-margin:5px 2px 0; padding:2px;
230-background-repeat:repeat-x;
231-border:1px outset #BEC0C0;
232-border-bottom-width:0px;
233-border-radius:5px 5px 0 0;
234--moz-border-radius:5px 5px 0 0;
235--o-border-radius:5px 5px 0 0;
236--khtml-border-radius:5px 5px 0 0;
237--webkit-border-top-right-radius:5px;
238--webkit-border-top-left-radius:5px;
239-}
240-#navigation h2:before{
241-padding-right:8px;
242-content:url('../images/commun/icon/newcoment.png');
243-vertical-align:middle;
244-}
245-#navigation #active{
246-background-position:top left;
247-border:1px solid #BEC0C0;
248-border-radius:5px 5px;
249--moz-border-radius:5px 5px;
250--o-border-radius:5px 5px;
251--khtml-border-radius:5px 5px;
252-}
253-#navigation #active .title{
254-border-bottom:2px groove #9D9E9E;
255-font-weight:bold;
256-}
257-.cat a{padding-bottom:0.3em}
258-#navigation .isactive a {font-weight:bold}
259-/** ajouté par Xabilon pour un bug d'affichage KHTML : menu_c.png est affiché sous le titre actif, donc bande grise sous le titre du menu **/
260-#navigation #active{background-image:none;}
261-
262-.cat a:before{padding:0 4px; content:'-';}
263-.cat a:hover{font-weight:bold; /*color:red;*/}
264-.cat a:hover:before{
265-padding:0 0 0 3px;
266-content:'\2192'
267-/* content:url('../images/commun/icon/row-red.png');*/
268-}
269-
270- /* Effet hallo rouge */
271-a.title span{
272-display:block;
273-position:absolute;
274-margin-top:-0.42em;padding-top:0.46em;
275-padding-left:30px; /* emplacement réservé pour l'icone de section */
276-width:12em;
277-}
278-a.title:hover span{
279-background-position:center top;
280-background-repeat:no-repeat;
281-}
282-#navigation{
283-top:7.8em;
284-left:1em;
285-/*font-size:1em;*/
286-}
287-
288 /* Retrait de profil, inscription, déconnexion et connexion du menu forum */
289-#navprofile, #navlogin, #navlogout, #navregister {display:none}
290+#navprofile, #navlogin, #navlogout, #navregister{ display:none; }
291
292 /* -- Base commune aux FORUMS -- */
293
294 /* page d'accueil : icones des categories*/
295-#idx1 h2{background-position:0 -408px}
296-#idx2 h2{background-position:0 -255px}
297-#idx3 h2{background-position:0 -153px}
298-#idx4 h2{background-position:0 -357px}
299-#idx5 h2{background-position:0 -204px}
300-#idx6 h2{background-position:0 -102px}
301-#idx7 h2{background-position:0 -306px}
302+#idx1 h2{ background-position:0 -408px; }
303+#idx2 h2{ background-position:0 -255px; }
304+#idx3 h2{ background-position:0 -153px; }
305+#idx4 h2{ background-position:0 -357px; }
306+#idx5 h2{ background-position:0 -204px; }
307+#idx6 h2{ background-position:0 -102px; }
308+#idx7 h2{ background-position:0 -306px; }
309
310-.stickytext, .closedtext, .movedtext, .reportlink a/*, #brdwelcome .conr li span*/ {background:url('../images/forum/icones.png') transparent no-repeat; max-height:16px;}
311-#pundelete form{padding-bottom:15px}
312-/* Mise en forme page */
313-#accessibar{
314-margin:0px;
315-margin-top:0;
316-padding-top:0;
317-height:1em;
318+.stickytext, .closedtext, .movedtext, .reportlink a/*, #brdwelcome .conr li span*/{
319+ background:transparent url('../images/forum/icones.png') no-repeat;
320+ max-height:16px;
321 }
322+#pundelete form{ padding-bottom:15px; }
323
324 /* Annonce importante */
325-#announce {
326-margin:0 0 15px 16em;
327-border:1px solid #B0C0C0;
328--o-border-radius:5px;
329-border-radius:5px;
330--moz-border-radius:5px;
331--khtml-border-radius:5px;
332+#announce{
333+ margin:0 0 15px 16em;
334+ border:1px solid #B0C0C0;
335+ border-radius:5px;
336+ -o-border-radius:5px;
337+ -moz-border-radius:5px;
338+ -khtml-border-radius:5px;
339 }
340-#announce{margin-top:-1px !important}
341+#announce{ margin-top:-1px !important; }
342
343-#announce .hd {
344-border-bottom:2px groove #ADAEAE;
345-background-position:left top;
346-background-repeat:repeat-x;
347-padding-left:10px;
348-}
349-#announce h2 {
350-margin:0px;
351-font-weight:bold;
352-font-size:1.1em;
353-text-align:left;
354-}
355-#announce-block {margin:10px}
356+#announce .hd{
357+ padding-left:10px;
358+ background-position:left top;
359+ background-repeat:repeat-x;
360+ border-bottom:2px groove #ADAEAE;
361+}
362+#announce h2{
363+ margin:0px;
364+ font-weight:bold;
365+ font-size:1.1em;
366+ text-align:left;
367+}
368+#announce-block{margin:10px}
369
370 /* Annonce par forum */
371
372-#announce-forum {
373-margin:0;
374-border-color:#B0C0C0;
375-border-style:solid;
376-border-width :1px 1px 0 1px;
377--moz-border-radius:5px 5px 0 0;
378--o-border-radius:5px 5px 0 0;
379-border-radius:5px 5px 0 0;
380--khtml-border-radius:5px 5px 0 0;
381--webkit-border-top-left-radius:5px;
382--webkit-border-top-right-radius:5px;
383-background-color:#F3F2F2;
384-padding:10px;
385+#announce-forum{
386+ margin:0; padding:10px;
387+ background-color:#F3F2F2;
388+ border-color:#B0C0C0;
389+ border-style:solid;
390+ border-width :1px 1px 0 1px;
391+ border-radius:5px 5px 0 0;
392+ -moz-border-radius:5px 5px 0 0;
393+ -o-border-radius:5px 5px 0 0;
394+ -khtml-border-radius:5px 5px 0 0;
395+ -webkit-border-top-left-radius:5px;
396+ -webkit-border-top-right-radius:5px;
397 }
398
399 /* Cadre principal */
400 /* pour decaler le contenu des menus */
401
402-#mainindex, #main, #mainviewforum , #mainviewindex {
403-clear:left;
404-background-color:#FFFFFF;
405-border-color:#BEC0C0;
406-border-style:solid;
407-border-width:0 1px 0 1px;
408-margin-left:16em;
409-padding:0.5em;
410-padding-top:0px;
411-padding-bottom:0px;
412+#mainindex, #main, #mainviewforum , #mainviewindex{
413+ clear:left;
414+ margin-left:16em; padding:0.5em; padding-top:0px; padding-bottom:0px;
415+ background-color:#FFFFFF;
416+ border-color:#BEC0C0;
417+ border-style:solid;
418+ border-width:0 1px 0 1px;
419 }
420
421 /* Pied de page avec les stats*/
422
423-#brdstats {
424-border-radius:0 0 5px 5px;
425--moz-border-radius:0 0 5px 5px;
426--o-border-radius:0 0 5px 5px;
427--khtml-border-radius:0 0 5px 5px;
428-background:#EDEDED url('../images/forum/Pied_gauche.png') repeat-y scroll left bottom;
429-padding-left:30px;
430-padding-right:30px;
431-padding-top:10px;
432-border-color:#BEC0C0;
433-border-style:solid;
434-border-width:0 1px 1px;
435-margin:0;
436+#brdstats{
437+ margin:0; padding-left:30px; padding-right:30px; padding-top:10px;
438+ background:#EDEDED url('../images/forum/Pied_gauche.png') repeat-y scroll left bottom;
439+ border-radius:0 0 5px 5px;
440+ -moz-border-radius:0 0 5px 5px;
441+ -o-border-radius:0 0 5px 5px;
442+ -khtml-border-radius:0 0 5px 5px;
443+ border-color:#BEC0C0;
444+ border-style:solid;
445+ border-width:0 1px 1px;
446 }
447-#brdstats h2 {display:none}
448+#brdstats h2{display:none}
449
450 #footer #brdfooter{
451-padding-top:1px;
452-border-color:#BEC0C0;
453-border-style:solid;
454-border-width:0 1px 1px;
455-background-color:white;
456-border-bottom:0px;
457+ padding-top:1px;
458+ background-color:white;
459+ border-color:#BEC0C0;
460+ border-style:solid;
461+ border-width:0 1px 1px;
462+ border-bottom:0;
463 }
464 #punlogin #brdfooter{margin-top:-20px}
465
466 /********* STYLE DE BASE **************/
467
468-table {margin:0 auto}
469+table{ margin:0 auto; }
470
471 /** STYLES SPECIFIQUES DE L INTERIEUR DE LA PAGE **/
472
473 /*** pour palier a des bugs avec les float:left; **/
474
475-.clear, .clearer {clear:both}
476+.clear, .clearer{ clear:both; }
477
478 /* block de base FIXME :est-il utilise ?*/
479
480-.block {margin:1em}
481+.block{ margin:1em; }
482
483 /* fil d ariane */
484
485-#navbar {
486-margin:-14px 0 0 12px;
487--o-border-radius:5px 5px 0 0;
488-border-radius:5px 5px 0 0;
489--moz-border-radius:5px 5px 0 0;
490--khtml-border-radius:5px 5px 0 0;
491--webkit-border-top-left-radius:5px;
492--webkit-border-top-right-radius:5px;
493-padding-left:0.5em;
494-padding-right:0.5em;
495-}
496-#navbar p {
497-margin:0px;
498-padding:1px 0 1px 20px;
499-}
500-.linksb .crumbs, .linksb .postlink {display:none}
501-.linkst {
502-margin-top:0px;
503-margin-bottom:0.5em;
504-}
505-.linkst, .linksb {margin-left:20px}
506-.crumbs {margin:0;clear:both}
507+#navbar{
508+ margin:-17px 0 0 12px; padding-left:0.5em; padding-right:0.5em;
509+ border-radius:5px 5px 0 0;
510+ -o-border-radius:5px 5px 0 0;
511+ -moz-border-radius:5px 5px 0 0;
512+ -khtml-border-radius:5px 5px 0 0;
513+ -webkit-border-top-left-radius:5px;
514+ -webkit-border-top-right-radius:5px;
515+}
516+#navbar p{
517+ margin:0px; padding:1px 0 1px 20px;
518+}
519+.linksb .crumbs, .linksb .postlink{ display:none; }
520+.linkst{
521+ margin-top:0px;
522+ margin-bottom:0.5em;
523+}
524+.linkst, .linksb{ margin-left:20px; }
525+.crumbs{ margin:0; clear:both; }
526
527 /* bouton pour cacher la colonne de liens*/
528
529-#hidemenu {
530-background:transparent url('../images/commun/bt_open_close.png');
531-background-position:0 14px;
532-cursor:pointer;
533-height:14px;
534-margin:-8px 0 0 -4px;
535-position:relative;
536-width:12px;
537-padding:0;
538+#hidemenu{
539+ position:relative;
540+ margin:4px 0 0 -4px; padding:0;
541+ width:12px; height:14px;
542+ background:transparent url('../images/commun/bt_open_close.png');
543+ background-position:0 14px;
544+ cursor:pointer;
545 }
546-#hidemenu span {margin:0.75em 0;
547-height:14px;
548-display:block; }
549-#hidemenu a {text-decoration:none;}
550
551 /*******redirection**********/
552-#punredirect .top-box, #punredirect .end-box {height:20px}
553-#punredirect {margin:1em}
554-#punredirect #brdmain {
555-margin-top:-30px;
556-margin-bottom:-15px;
557+#punredirect .top-box, #punredirect .end-box{ height:20px; }
558+#punredirect{ margin:1em; }
559+#punredirect #brdmain{
560+ margin-top:-30px; margin-bottom:-15px;
561 }
562
563 /* mise en forme des tableaux des messages et des categories et des listes de posts */
564
565-.blocktable h2, .blockpost h2, #quickpost h2 {
566-height:44px;
567-background-repeat:no-repeat;
568-background-position:0px 0px;
569-text-indent:55px;
570-padding-top:7px;
571-margin-left:-2px;
572-/*font-size:1.1em;*/
573-}
574-.blockpost h2, #quickpost h2, #postreview .blockpost .postleft dt {background-position:0 -51px}
575-.blockpost h2, #quickpost h2 {
576-background-repeat:no-repeat;
577-margin:0;
578-margin-left:-6px;
579-padding-right:6px;
580-}
581-.blockpost, #quickpost, .blocktable {
582-background-repeat:repeat-x;
583-}
584-.blocktable .box {
585-margin-top:-30px;
586+.blocktable h2, .blockpost h2, #quickpost h2{
587+ margin-left:-2px; padding-top:7px;
588+ height:44px;
589+ background-repeat:no-repeat;
590+ background-position:0px 0px;
591+ text-indent:55px;
592+ /*font-size:1.1em;*/
593+}
594+.blockpost h2, #quickpost h2, #postreview .blockpost .postleft dt{background-position:0 -51px}
595+.blockpost h2, #quickpost h2{
596+ background-repeat:no-repeat;
597+ margin:0;
598+ margin-left:-6px;
599+ padding-right:6px;
600+}
601+.blockpost, #quickpost, .blocktable{
602+ background-repeat:repeat-x;
603+}
604+.blocktable .box{
605+ margin-top:-30px;
606 }
607 .blocktable h2 span{
608-width:100%;
609-display:block;
610-background-repeat:no-repeat;
611-background-position:top right;
612-margin-top:-7px;
613-height:17px;
614-margin-right:-2px;
615-padding-top:7px;
616-}
617-#quickpost h2 span {
618-padding-right:7px;
619-}
620-.blockpost h2 span.conr, #quickpost h2 span.conr {
621-background-repeat:no-repeat;
622-background-position:top right;
623-margin-top:-7px;
624-height:17px;
625-padding-top:7px;
626-margin-right:-7px;
627-padding-right:7px;
628+ width:100%;
629+ display:block;
630+ background-repeat:no-repeat;
631+ background-position:top right;
632+ margin-top:-7px;
633+ height:17px;
634+ margin-right:-2px;
635+ padding-top:7px;
636+}
637+#quickpost h2 span{
638+ padding-right:7px;
639+}
640+.blockpost h2 span.conr, #quickpost h2 span.conr{
641+ background-repeat:no-repeat;
642+ background-position:top right;
643+ margin-top:-7px;
644+ height:17px;
645+ padding-top:7px;
646+ margin-right:-7px;
647+ padding-right:7px;
648 }
649
650 /* pour ne pas afficher : Pied de page des forums */
651
652-#brdfooter h2 {display:none}
653+#brdfooter h2{display:none}
654
655 /******* cache les info "en ligne" et co. ******/
656 .postfootleft{display:none}
657 .postfoot{text-align:right}
658 .postfoot li{
659-border-left-width:1px;
660-border-left-style:solid;
661-padding-left:6px;
662-padding-right:5px;
663+ border-left-width:1px;
664+ border-left-style:solid;
665+ padding-left:6px;
666+ padding-right:5px;
667 }
668 .postreport{border-left-width:0px !important;}
669 /************* pour ne pas que les sujets soit colles a gauche **************/
670 .tclcon{
671-float:left;
672-width:96%;
673+ float:left;
674+ width:96%;
675 }
676 /********* numero des forums *******/
677 .tcl .icon{
678-width:4%;
679-float:left;
680-min-height:20px;
681-height:1em;
682+ width:4%;
683+ float:left;
684+ min-height:20px;
685+ height:1em;
686 }
687 .tcl .icon .nosize{display:none}
688 #punindex .tcl .icon-new{
689-background-image:url('../images/forum/imgNewPost.png');
690-background-repeat:no-repeat;
691-background-position:center center;
692+ background-image:url('../images/forum/imgNewPost.png');
693+ background-repeat:no-repeat;
694+ background-position:center center;
695 }
696
697 /********** icone d'épinglé ******************/
698-.stickytext {
699-width:20px;
700-background-position:0 -73px;
701-font-size:0px;
702-height:16px;
703-display:block;
704-float:left;
705-color:transparent;
706+.stickytext{
707+ width:20px;
708+ background-position:0 -73px;
709+ font-size:0px;
710+ height:16px;
711+ display:block;
712+ float:left;
713+ color:transparent;
714 }
715 .istick strong{
716-display:block;
717-float:left;
718+ display:block;
719+ float:left;
720 }
721-.closedtext {
722-width:20px;
723-background-position:0 -19px;
724-font-size:0px;
725-height:16px;
726-display:block;
727-float:left;
728-color:transparent;
729+.closedtext{
730+ width:20px;
731+ background-position:0 -19px;
732+ font-size:0px;
733+ height:16px;
734+ display:block;
735+ float:left;
736+ color:transparent;
737 }
738 .iclosed{font-style:italic}
739-.movedtext {
740-width:20px;
741-background-position:0 -37px;
742-font-size:0px;
743-height:16px;
744-display:block;
745-float:left;
746-color:transparent;
747+.movedtext{
748+ width:20px;
749+ background-position:0 -37px;
750+ font-size:0px;
751+ height:16px;
752+ display:block;
753+ float:left;
754+ color:transparent;
755 }
756
757 /******** nom des forums ********/
758 .tclcon h3
759 {/*font-size:1em;*/
760-font-weight:bold;
761-margin-top:0;
762-margin-bottom:0.5em;
763+ font-weight:bold;
764+ margin-top:0;
765+ margin-bottom:0.5em;
766 }
767 .tclcon h3 a{text-decoration:underline}
768 /******* description des forums ******/
769-.forumdesc {
770-line-height:1.2em;
771-margin-bottom:3px;
772-}
773-.inbox table {width:100%}
774-#brdstats .clearb {clear:both;}
775-th {
776-text-align:left;
777-font-size:0.91em;
778-font-weight:normal;
779-color:#353535;
780-}
781-#users1 th {
782-font-weight:bold;
783-color:black;
784-padding-top:5px;
785-font-size:1em;
786-}
787-th.tcl {padding:0 0 0.5em 2em}
788-.postlink {
789-text-align:right;
790-display:block;
791+.forumdesc{
792+ line-height:1.2em;
793+ margin-bottom:3px;
794+}
795+.inbox table{width:100%}
796+#brdstats .clearb{clear:both;}
797+th{
798+ text-align:left;
799+ font-size:0.91em;
800+ font-weight:normal;
801+ color:#353535;
802+}
803+#users1 th{
804+ font-weight:bold;
805+ color:black;
806+ padding-top:5px;
807+ font-size:1em;
808+}
809+th.tcl{padding:0 0 0.5em 2em}
810+.postlink{
811+ text-align:right;
812+ display:block;
813 }
814 #page_up{
815-text-align:right;
816-margin-top:-2em;}
817+ text-align:right;
818+ margin-top:-2em;
819+}
820
821 /** signature **/
822
823-#punviewtopic .postsignature {
824-margin-bottom:5px;
825+#punviewtopic .postsignature{
826+ margin-bottom:5px;
827 }
828
829 /* cache les sujets des messages qui ne servent a rien*/
830-.postright h3 {display:none}
831+.postright h3{display:none}
832 /* reponse rapide */
833-.bblinks li {
834-display:inline;
835-margin-right:20px;
836+.bblinks li{
837+ display:inline;
838+ margin-right:20px;
839 }
840 /* resume message*/
841-#postreview .postleft, #punmoderate .postleft {
842-margin:-20px 0 0 0;
843-float:none;
844-width:auto;
845-padding:0;
846-}
847-#postreview h2 {margin-bottom:75px}
848-#postreview .postmsg {padding-top:0}
849-#punmoderate .postmsg {padding:0}
850-#postreview .blockpost {margin-top:30px}
851-#postreview .blockpost .postleft dl, #punmoderate .blockpost .postleft dl {
852-margin:0;
853-padding:0;
854-}
855-.blockpost .postleft dt {padding-left:50px}
856-#postreview .blockpost .postleft dt, #punmoderate .blockpost .postleft dt {
857-width:100%;
858-height:44px;
859-padding:4px 6px 31px 50px;
860-background-repeat:no-repeat;
861-margin:-3px -30px 0 -6px;
862-}
863-/*.postleft dt span {font-size:0.9em}*/
864-#postreview .blockpost {background-repeat:repeat-x}
865-#postreview .blockpost h2 span {
866-width:100%;
867-display:block;
868-background-repeat:no-repeat;
869-background-position:top right;
870-margin-top:-7px;
871-height:17px;
872-padding-top:7px;
873-margin-right:-7px;
874-padding-right:7px;
875-}
876-/*#postreview .postleft dd, #punmoderate .postleft dd {font-size:0.9em}*/
877+#postreview .postleft, #punmoderate .postleft{
878+ margin:-20px 0 0 0;
879+ float:none;
880+ width:auto;
881+ padding:0;
882+}
883+#postreview h2{margin-bottom:75px}
884+#postreview .postmsg{padding-top:0}
885+#punmoderate .postmsg{padding:0}
886+#postreview .blockpost{margin-top:30px}
887+#postreview .blockpost .postleft dl, #punmoderate .blockpost .postleft dl{
888+ margin:0;
889+ padding:0;
890+}
891+.blockpost .postleft dt{padding-left:50px}
892+#postreview .blockpost .postleft dt, #punmoderate .blockpost .postleft dt{
893+ width:100%;
894+ height:44px;
895+ padding:4px 6px 31px 50px;
896+ background-repeat:no-repeat;
897+ margin:-3px -30px 0 -6px;
898+}
899+/*.postleft dt span{font-size:0.9em}*/
900+#postreview .blockpost{background-repeat:repeat-x}
901+#postreview .blockpost h2 span{
902+ width:100%;
903+ display:block;
904+ background-repeat:no-repeat;
905+ background-position:top right;
906+ margin-top:-7px;
907+ height:17px;
908+ padding-top:7px;
909+ margin-right:-7px;
910+ padding-right:7px;
911+}
912+/*#postreview .postleft dd, #punmoderate .postleft dd{font-size:0.9em}*/
913 #postpreview .postmsg{margin-top:10px}
914 /*Alignement horizontal des champs de recherche dans userlist*/
915 #userlist .conl{
916-margin-right:10px;
917-white-space:nowrap;
918+ margin-right:10px;
919+ white-space:nowrap;
920 }
921
922 /* passage à la ligne pour les explications dans la page userlist*/
923 #userlist .clearb{padding-left:5px; clear:both; }
924
925-.blockpost .conr {font-weight:normal}
926+.blockpost .conr{font-weight:normal}
927
928 /************** PROFIL **************/
929-#profile li {
930-display:inline;
931-margin-right:50px;
932+#profile li{
933+ display:inline;
934+ margin-right:50px;
935 }
936-#profile li.isactive {text-decoration:none}
937+#profile li.isactive{text-decoration:none}
938
939 /************ Tableau principal **************/
940-#mainindex table {width:100%}
941-.tcl {width:61%;}
942-.tc1, .tc2, .tc3 {width:7%; text-align:center;}
943-.tcr {width:25%; padding-left:1em;}
944-tbody .tcl, tbody .tc1, tbody .tc2, tbody .tc3, tbody .tc4, tbody .tc5, tbody .tcr {
945-border-bottom:1px solid lightgrey;
946-padding:0.3em 0.15em 0.3em 0;
947+#mainindex table{width:100%}
948+.tcl{width:61%;}
949+.tc1, .tc2, .tc3{width:7%; text-align:center;}
950+.tcr{width:25%; padding-left:1em;}
951+tbody .tcl, tbody .tc1, tbody .tc2, tbody .tc3, tbody .tc4, tbody .tc5, tbody .tcr{
952+ border-bottom:1px solid lightgrey;
953+ padding:0.3em 0.15em 0.3em 0;
954 }
955 tbody .tcl{padding-right:0.5em}
956-#punindex .roweven, #punsearch .roweven, #vf .roweven {background-color:#F7F7F7}
957-#vf tbody tr:hover, #punindex tbody tr:hover, #punuserlist tbody tr:hover, #punsearch tbody tr:hover {background-color:#E7E7E7}
958-#vf tbody a:hover, #punsearch tbody a:hover, #punuserlist tbody a:hover {text-decoration:none}
959-.byuser {font-size:0.91em}
960+#punindex .roweven, #punsearch .roweven, #vf .roweven{background-color:#F7F7F7}
961+#vf tbody tr:hover, #punindex tbody tr:hover, #punuserlist tbody tr:hover, #punsearch tbody tr:hover{background-color:#E7E7E7}
962+#vf tbody a:hover, #punsearch tbody a:hover, #punuserlist tbody a:hover{text-decoration:none}
963+.byuser{font-size:0.91em}
964
965 /* XABILON : mise en forme des colonnes dans punsearch */
966
967-#punsearch .tcl {width:50%}
968-#punsearch .tc2 {width:23%; text-align:left;}
969+#punsearch .tcl{width:50%}
970+#punsearch .tc2{width:23%; text-align:left;}
971 /*#punviewtopic .postleft{
972 margin:0 10px 0 10px;
973 height:20px;
974 }*/
975 #punviewtopic .postleft dd{
976-margin:0 10px;
977-width:0px;
978+ margin:0 10px;
979+ width:0px;
980 }
981
982 /* IP pas en gras, et espace avec le pseudo*/
983-#punviewtopic .postleft dt span {
984-margin-left:10px;
985-font-weight:normal;
986-width:0px;
987-height:0px;
988-}
989-.postleft dl {margin-top:-20px}
990-.postright {
991-padding-left:75px;
992-padding-top:6px;
993-}
994-.postleft a {color:black !important}
995-.postmsg {
996-padding:5px;
997-min-height:75px;
998+#punviewtopic .postleft dt span{
999+ margin-left:10px;
1000+ font-weight:normal;
1001+ width:0px;
1002+ height:0px;
1003+}
1004+.postleft dl{margin-top:-20px}
1005+.postright{
1006+ padding-left:75px;
1007+ padding-top:6px;
1008+}
1009+.postleft a{color:black !important}
1010+.postmsg{
1011+ padding:5px;
1012+ min-height:75px;
1013 }
1014 .blockpost, .quotebox{
1015--o-border-radius:10px 0 10px 0;
1016--moz-border-radius:10px 0px 10px 0px;
1017--webkit-border-radius:10px 0px 10px 0px;
1018--khtml-border-radius:10px 0px 10px 0px;
1019-border-radius:10px 0px 10px 0px;
1020+ border-radius:10px 0px 10px 0px;
1021+ -o-border-radius:10px 0 10px 0;
1022+ -moz-border-radius:10px 0px 10px 0px;
1023+ -webkit-border-radius:10px 0px 10px 0px;
1024+ -khtml-border-radius:10px 0px 10px 0px;
1025 }
1026 .blockpost{
1027-position:relative;
1028-background-color:#E8E8E8;
1029-margin-left:6px;
1030-border-color:#B0C0C0;
1031-border-style:solid;
1032-border-width:0px 0.5px 1px 0px;
1033-margin-top:5px;
1034-clear:both;
1035+ position:relative;
1036+ background-color:#E8E8E8;
1037+ margin-left:6px;
1038+ border-color:#B0C0C0;
1039+ border-style:solid;
1040+ border-width:0px 0.5px 1px 0px;
1041+ margin-top:5px;
1042+ clear:both;
1043 }
1044-#quickpost {background-color:#edebeb}
1045-.blockform .buttons {margin-left:15px}
1046+#quickpost{ background-color:#edebeb; }
1047+.blockform .buttons{ margin-left:15px; }
1048
1049 /* XABILON :Cadre information + fieldset (l'ancien est ci-dessus)*/
1050-.inform {
1051-margin:10px;
1052-padding-bottom:10px;
1053-clear:both;
1054+.inform{
1055+ margin:10px;
1056+ padding-bottom:10px;
1057+ clear:both;
1058 }
1059-#profile .inform {padding-top:10px;}
1060+#profile .inform{padding-top:10px;}
1061 #profile fieldset, #adminconsole fieldset, #viewprofile fieldset{
1062-border:1px solid #606060;
1063--o-border-radius:5px;
1064--khtml-border-radius:5px;
1065--moz-border-radius:5px;
1066-border-radius:5px;
1067-background-color:#E8E8E8
1068-}
1069-legend {
1070-font-weight:bold;
1071-padding:0 5px;
1072-margin-left:15px;
1073-}
1074-label {
1075-margin-right:0.5em;
1076-padding-top:0.2em;
1077+ background-color:#E8E8E8;
1078+ border:1px solid #606060;
1079+ border-radius:5px;
1080+ -o-border-radius:5px;
1081+ -khtml-border-radius:5px;
1082+ -moz-border-radius:5px;
1083+}
1084+legend{
1085+ font-weight:bold;
1086+ padding:0 5px;
1087+ margin-left:15px;
1088+}
1089+label{
1090+ margin-right:0.5em;
1091+ padding-top:0.2em;
1092 }
1093
1094 /* XABILON : Propriété infldset (liste des signalements) */
1095
1096-.infldset {
1097-padding:6px 10px;
1098-text-align:left;
1099-}
1100-#adminconsole .aligntop {width:100%}
1101-#adminconsole td span {margin-left:1em}
1102-#edforum .infldset TD {border-top:1px solid #C0C0C0}
1103-#censoring .tcl {width:auto}
1104-#punadmin_reports TH {width:15em;}
1105-.blockpost h2 span span, .blockpost h2 span a {
1106-display:block;
1107-float:right;
1108-font-size:0.9em;
1109-}
1110-.blockpost h2 span span {text-align:right}
1111-.blockpost h2 span a {
1112-color:black !important;
1113-font-weight:normal;
1114-}
1115-.blockpost h2 span a:hover {text-decoration:none}
1116+.infldset{
1117+ padding:6px 10px;
1118+ text-align:left;
1119+}
1120+#adminconsole .aligntop{width:100%}
1121+#adminconsole td span{margin-left:1em}
1122+#edforum .infldset TD{border-top:1px solid #C0C0C0}
1123+#censoring .tcl{width:auto}
1124+#punadmin_reports TH{width:15em;}
1125+.blockpost h2 span span, .blockpost h2 span a{
1126+ display:block;
1127+ float:right;
1128+ font-size:0.9em;
1129+}
1130+.blockpost h2 span span{text-align:right}
1131+.blockpost h2 span a{
1132+ color:black !important;
1133+ font-weight:normal;
1134+}
1135+.blockpost h2 span a:hover{text-decoration:none}
1136
1137-/*#mainindex .inbox, mainview* .inbox {clear:both}*/
1138-#mainindex .inbox, #mainviewforum .inbox, #mainviewindex .inbox {clear:both}
1139-.inbox li {display:inline}
1140-.postmsg li {display:list-item}
1141-.blockpost .box {
1142-margin-top:-50px;
1143-padding-bottom:10px;
1144-min-height:140px;
1145-}
1146-.inbox {clear:both}
1147-.top_links {
1148-margin-right:5px;
1149-margin-left:5px;
1150-}
1151-.blockpost .box .inbox .postbody .postright {float:none}
1152-#postreview .postright {float:none}
1153-#postreview .postleft {
1154-margin:-20px 0 0 0;
1155-padding:0px;
1156-float:none;
1157-width:auto;
1158+/*#mainindex .inbox, mainview* .inbox{clear:both}*/
1159+#mainindex .inbox, #mainviewforum .inbox, #mainviewindex .inbox{clear:both}
1160+.inbox li{display:inline}
1161+.postmsg li{display:list-item}
1162+.blockpost .box{
1163+ margin-top:-50px;
1164+ padding-bottom:10px;
1165+ min-height:140px;
1166+}
1167+.inbox{clear:both}
1168+.top_links{
1169+ margin-right:5px;
1170+ margin-left:5px;
1171+}
1172+.blockpost .box .inbox .postbody .postright{float:none}
1173+#postreview .postright{float:none}
1174+#postreview .postleft{
1175+ margin:-20px 0 0 0;
1176+ padding:0px;
1177+ float:none;
1178+ width:auto;
1179 }
1180 /* quote */
1181-.quotebox {
1182-background:#fdfcfd url('../images/forum/quote.png') no-repeat;
1183-background-position:top left;
1184-min-height:70px;
1185-border-color:#A8A8A8 #C8C8C8 #C8C8C8 #A8A8A8;
1186-border-style:solid;
1187-border-width:1px;
1188-margin:9px 0.2em 1em;
1189-padding-top:0.2em;
1190-overflow:hidden;
1191+.quotebox{
1192+ background:#fdfcfd url('../images/forum/quote.png') no-repeat;
1193+ background-position:top left;
1194+ min-height:70px;
1195+ border-color:#A8A8A8 #C8C8C8 #C8C8C8 #A8A8A8;
1196+ border-style:solid;
1197+ border-width:1px;
1198+ margin:9px 0.2em 1em;
1199+ padding-top:0.2em;
1200+ overflow:hidden;
1201 }
1202 /* codebox */
1203-.codebox {
1204-font-family:Consolas,'Lucida Console','Bitstream Vera Sans Mono','DejaVu Sans Mono',monospace;
1205-font-size:1.1em;
1206-max-height:26em;
1207-border:1px solid;
1208-color:white;
1209-background-color:#333;
1210-overflow:auto;
1211-margin:9px 0.2em 1em;
1212-padding:0.3em 0.5em;
1213--moz-border-radius:5px;
1214-border-radius:5px;
1215+.codebox{
1216+ font-family:Consolas,'Lucida Console','Bitstream Vera Sans Mono','DejaVu Sans Mono',monospace;
1217+ font-size:1.1em;
1218+ max-height:26em;
1219+ border:1px solid;
1220+ color:white;
1221+ background-color:#333;
1222+ overflow:auto;
1223+ margin:9px 0.2em 1em;
1224+ padding:0.3em 0.5em;
1225+ -moz-border-radius:5px;
1226+ border-radius:5px;
1227 }
1228-.codebox pre {margin:0; white-space:pre-wrap;}
1229+.codebox pre{margin:0; white-space:pre-wrap;}
1230 /* liste dans message*/
1231-.postmsg ul {list-style-type:square}
1232+.postmsg ul{list-style-type:square}
1233
1234 /* cache les titres des pages du profil */
1235-#profile h2 {display:none}
1236+#profile h2{display:none}
1237
1238 /* Blocs de formulaires*/
1239
1240-.blockform h2 {
1241-font-size:1.1em;
1242-padding-top:10px;
1243-padding-left:40px;
1244-margin-right:10px;
1245-padding-right:6px;
1246+.blockform h2{
1247+ font-size:1.1em;
1248+ padding-top:10px;
1249+ padding-left:40px;
1250+ margin-right:10px;
1251+ padding-right:6px;
1252 }
1253-.fakeform, .blockform {
1254--o-border-radius:10px;
1255--khtml-border-radius:10px;
1256--moz-border-radius:10px;
1257-border-radius:10px;
1258-border-bottom:1px solid grey;
1259-border-right:1px solid grey;
1260-background-color:lightgrey
1261+.fakeform, .blockform{
1262+ -o-border-radius:10px;
1263+ -khtml-border-radius:10px;
1264+ -moz-border-radius:10px;
1265+ border-radius:10px;
1266+ border-bottom:1px solid grey;
1267+ border-right:1px solid grey;
1268+ background-color:lightgrey
1269 }
1270 .postedit{text-align:right}
1271 .postfootright ul{
1272-margin:0px;
1273-font-size:0.90em;
1274+ margin:0px;
1275+ font-size:0.90em;
1276 }
1277 .postsignature p{margin:0}
1278 textarea{
1279-width:99%;
1280-padding:3px;
1281+ width:99%;
1282+ padding:3px;
1283 }
1284 #punuserlist .linkst{margin:0 0 30px 0}
1285 cite{margin-left:10px; font-size:0.9em;}
1286 .modlist{display:none}
1287 #onlinelist dd, #onlinelist dl, #onlinelist dt{
1288-display:inline;
1289-margin:0px
1290+ display:inline;
1291+ margin:0px
1292 }
1293 #footer{margin-left:16em}
1294
1295 /* Menu onglets profil */
1296
1297-#profile .blockmenu {
1298-width:100%;
1299-height:4em;
1300-margin-top:8px;
1301-padding-top:1em;
1302-padding-left:0;
1303--o-border-radius:5px;
1304--moz-border-radius:5px;
1305--khtml-border-radius:5px;
1306-border-radius:5px;
1307-border-bottom:1px solid grey;
1308-border-right:1px solid grey;
1309-}
1310-#profile .blockmenu ul {
1311-margin-left:0;
1312-border-bottom:1px solid #8E9090;
1313-text-align:center;
1314-}
1315-#profile .blockmenu li {
1316--o-border-radius:5px 5px 0 0;
1317--khtml-border-radius:5px 5px 0 0;
1318--moz-border-radius:5px 5px 0 0;
1319--webkit-border-top-left-radius:5px;
1320--webkit-border-top-right-radius:5px;
1321-background-repeat:repeat-x;
1322-border-color:#BEC0C0;
1323-border-style:outset;
1324-border-width:1px 1px 0;
1325-margin-right:-3px;
1326-padding:0.5em 0.8em 0em 0.8em;
1327-font-weight:bold;
1328+#profile .blockmenu{
1329+ width:100%;
1330+ height:4em;
1331+ margin-top:8px;
1332+ padding-top:1em;
1333+ padding-left:0;
1334+ -o-border-radius:5px;
1335+ -moz-border-radius:5px;
1336+ -khtml-border-radius:5px;
1337+ border-radius:5px;
1338+ border-bottom:1px solid grey;
1339+ border-right:1px solid grey;
1340+}
1341+#profile .blockmenu ul{
1342+ margin-left:0;
1343+ border-bottom:1px solid #8E9090;
1344+ text-align:center;
1345+}
1346+#profile .blockmenu li{
1347+ -o-border-radius:5px 5px 0 0;
1348+ -khtml-border-radius:5px 5px 0 0;
1349+ -moz-border-radius:5px 5px 0 0;
1350+ -webkit-border-top-left-radius:5px;
1351+ -webkit-border-top-right-radius:5px;
1352+ background-repeat:repeat-x;
1353+ border-color:#BEC0C0;
1354+ border-style:outset;
1355+ border-width:1px 1px 0;
1356+ margin-right:-3px;
1357+ padding:0.5em 0.8em 0em 0.8em;
1358+ font-weight:bold;
1359 }
1360 #profile .blockmenu li.isactive{
1361-border-bottom-width:3px;
1362-border-bottom-style:solid;
1363-text-decoration:none;}
1364-#profile .blockmenu a {color:black}
1365-#profile .blockmenu a:hover {text-decoration:none}
1366+ border-bottom-width:3px;
1367+ border-bottom-style:solid;
1368+ text-decoration:none;
1369+}
1370+#profile .blockmenu a{color:black}
1371+#profile .blockmenu a:hover{text-decoration:none}
1372 #searchlinks{display:none}
1373
1374 /* zone pied de fil pour modérateurs*/
1375
1376-#brdfooter {
1377-margin:0;
1378-padding:0 8px 1px 8px;
1379-display:block;
1380-}
1381-#brdfooter dt {display:none}
1382-.end-box {
1383-height:5px;
1384-margin-bottom:20px;
1385-margin-top:0;
1386--o-border-radius:0 0 5px 5px;
1387--moz-border-radius:0 0 5px 5px;
1388--khtml-border-radius:0 0 5px 5px;
1389--webkit-border-bottom-left-radius:5px;
1390--webkit-border-bottom-right-radius:5px;
1391-border-radius:0 0 5px 5px;
1392-border-style:solid;
1393-border-color:#BEC0C0;
1394-border-width:0 1px 1px 1px;
1395-background-color:white;
1396-}
1397-.top-box {height:5px}
1398-#main, .top-box {
1399-margin-bottom:0;
1400--moz-border-radius:5px 5px 0 0;
1401--khtml-border-radius:5px 5px 0 0;
1402--webkit-border-top-left-radius:5px;
1403--webkit-border-top-right-radius:5px;
1404--o-border-radius:5px 5px 0 0;
1405-border-radius:5px 5px 0 0;
1406-border-style:solid;
1407-border-color:#BEC0C0;
1408-border-width:1px 1px 0 1px;
1409-background-color:white;
1410-}
1411-#brdmain {
1412-margin:0;
1413-border-style:solid;
1414-border-color:#BEC0C0;
1415-border-width:0 1px 0 1px;
1416-background-color:white;
1417-}
1418-#poweredby {text-align:right}
1419+#brdfooter{
1420+ margin:0;
1421+ padding:0 8px 1px 8px;
1422+ display:block;
1423+}
1424+#brdfooter dt{display:none}
1425+.end-box{
1426+ height:5px;
1427+ margin-bottom:20px;
1428+ margin-top:0;
1429+ -o-border-radius:0 0 5px 5px;
1430+ -moz-border-radius:0 0 5px 5px;
1431+ -khtml-border-radius:0 0 5px 5px;
1432+ -webkit-border-bottom-left-radius:5px;
1433+ -webkit-border-bottom-right-radius:5px;
1434+ border-radius:0 0 5px 5px;
1435+ border-style:solid;
1436+ border-color:#BEC0C0;
1437+ border-width:0 1px 1px 1px;
1438+ background-color:white;
1439+}
1440+.top-box{height:5px}
1441+#main, .top-box{
1442+ margin-bottom:0;
1443+ -moz-border-radius:5px 5px 0 0;
1444+ -khtml-border-radius:5px 5px 0 0;
1445+ -webkit-border-top-left-radius:5px;
1446+ -webkit-border-top-right-radius:5px;
1447+ -o-border-radius:5px 5px 0 0;
1448+ border-radius:5px 5px 0 0;
1449+ border-style:solid;
1450+ border-color:#BEC0C0;
1451+ border-width:1px 1px 0 1px;
1452+ background-color:white;
1453+}
1454+#brdmain{
1455+ margin:0;
1456+ border-style:solid;
1457+ border-color:#BEC0C0;
1458+ border-width:0 1px 0 1px;
1459+ background-color:white;
1460+}
1461+#poweredby{text-align:right}
1462 #brdwelcome{
1463-clear:none;
1464-float:right;
1465-text-align:right;
1466+ clear:none;
1467+ float:right;
1468+ text-align:right;
1469 }
1470
1471-.pagelink, #punsearch #msg .inbox p, #punsearch #msg, #rules {margin-bottom:0px}
1472+.pagelink, #punsearch #msg .inbox p, #punsearch #msg, #rules{margin-bottom:0px}
1473 /* redirection*/
1474
1475
1476 p.pagelink{padding:0px}
1477 .reportlink{
1478-clear:both;
1479-display:block !important;
1480-margin-right:-45px;
1481-margin-bottom:-20px;
1482+ clear:both;
1483+ display:block !important;
1484+ margin-right:-45px;
1485+ margin-bottom:-20px;
1486 }
1487-.reportlink a {
1488-color:red !important;
1489-background-position:0 -55px;
1490-padding-left:25px;
1491+.reportlink a{
1492+ color:red !important;
1493+ background-position:0 -55px;
1494+ padding-left:25px;
1495 }
1496
1497-#brdfooternav .clearer {clear:both}
1498-#brdfooternav p {
1499-margin:0px;
1500-padding:0px;
1501-}
1502-#postreview .postleft dd span {padding-left:2em}
1503-.usertitle {
1504-color:#353535;
1505-white-space:nowrap;
1506-}
1507-.usertitle strong {font-weight:normal}
1508-.postmsg p {word-wrap:break-word}
1509-#main {overflow:hidden}
1510-.postavatar {
1511-position:absolute;
1512-top:42px;
1513-left:0;
1514-}
1515-.blockpost {min-height:140px}
1516+#brdfooternav .clearer{clear:both}
1517+#brdfooternav p{
1518+ margin:0px;
1519+ padding:0px;
1520+}
1521+#postreview .postleft dd span{padding-left:2em}
1522+.usertitle{
1523+ color:#353535;
1524+ white-space:nowrap;
1525+}
1526+.usertitle strong{font-weight:normal}
1527+.postmsg p{word-wrap:break-word}
1528+#main{overflow:hidden}
1529+.postavatar{
1530+ position:absolute;
1531+ top:42px;
1532+ left:0;
1533+}
1534+.blockpost{min-height:140px}
1535
1536 span.bbs{text-decoration:line-through}
1537 span.bbu{text-decoration:underline}
1538-.postsignature {min-height:0px; font-size:0.9em;}
1539+.postsignature{min-height:0px; font-size:0.9em;}
1540
1541 /* Mise en forme de l'affichage des règles*/
1542-#regles li {
1543-list-style-type:decimal;
1544-display:list-item;
1545+#regles li{
1546+ list-style-type:decimal;
1547+ display:list-item;
1548 }
1549
1550 /** Cadres Accueil et gagnant du Mois **/
1551
1552-#announce-welcome {min-height:101px}
1553-#announce-welcome table {
1554-min-height:101px;
1555-width:100%;
1556-}
1557-#announce-welcome tbody {
1558-height:100%;
1559-min-height:101px;
1560-}
1561-.welcome {
1562-width:75%;
1563-height:100%;
1564--o-border-radius:8px;
1565--moz-border-radius:8px;
1566--khtml-border-radius:8px;
1567-border-radius:8px;
1568-background-repeat:repeat-y;
1569-border:1px solid #B0C0C0;
1570-}
1571-.welcome p {margin:0.6em}
1572-.winner {
1573-height:100%;
1574-border:1px solid lightgrey;
1575--o-border-radius:8px;
1576--moz-border-radius:8px;
1577--khtml-border-radius:8px;
1578-border-radius:8px;
1579-background-color:#F0F0F0;
1580-vertical-align:top;
1581-}
1582-#winner_inbox {
1583-padding-right:5px;
1584-width:100%;
1585-min-height:101px;
1586-background-repeat:no-repeat;
1587-background-position:top right;
1588-}
1589-#winner_inbox p {margin:0; margin-top:-5px; margin-left:-5px; padding:1em 54px 0.6em 0.6em; vertical-align:middle;
1590+#announce-welcome{min-height:101px}
1591+#announce-welcome table{
1592+ min-height:101px;
1593+ width:100%;
1594+}
1595+#announce-welcome tbody{
1596+ height:100%;
1597+ min-height:101px;
1598+}
1599+.welcome{
1600+ width:75%;
1601+ height:100%;
1602+ background-repeat:repeat-y;
1603+ border:1px solid #B0C0C0;
1604+ border-radius:8px;
1605+ -o-border-radius:8px;
1606+ -moz-border-radius:8px;
1607+ -khtml-border-radius:8px;
1608+}
1609+.welcome p{margin:0.6em}
1610+.winner{
1611+ height:100%;
1612+ border:1px solid lightgrey;
1613+ -o-border-radius:8px;
1614+ -moz-border-radius:8px;
1615+ -khtml-border-radius:8px;
1616+ border-radius:8px;
1617+ background-color:#F0F0F0;
1618+ vertical-align:top;
1619+}
1620+#winner_inbox{
1621+ padding-right:5px;
1622+ width:100%;
1623+ min-height:101px;
1624+ background-repeat:no-repeat;
1625+ background-position:top right;
1626+}
1627+#winner_inbox p{margin:0; margin-top:-5px; margin-left:-5px; padding:1em 54px 0.6em 0.6em; vertical-align:middle;
1628
1629 }
1630-.linux_pratique {
1631-font-weight:bold;
1632-font-size:1.2em;
1633+.linux_pratique{
1634+ font-weight:bold;
1635+ font-size:1.2em;
1636 }
1637-.winner_name {
1638+.winner_name{
1639 font-style:italic;
1640 font-size:1.1em;
1641 }
1642-video {max-width:50%}
1643-#postpreview .postmsg h5 {margin-top:2em}
1644-.postlinkst .subscribelink {display:none}
1645-#punadmin_users .tc2, #punuserlist .tc4 {width:15%}
1646-#punadmin_users .tcl {
1647-width:20%;
1648-padding-left:20px;
1649+video{max-width:50%}
1650+#postpreview .postmsg h5{margin-top:2em}
1651+.postlinkst .subscribelink{display:none}
1652+#punadmin_users .tc2, #punuserlist .tc4{width:15%}
1653+#punadmin_users .tcl{
1654+ width:20%;
1655+ padding-left:20px;
1656 }
1657-#punadmin_users .tc3 {
1658-width:15%;
1659-font-size:0.9em;
1660+#punadmin_users .tc3{
1661+ width:15%;
1662+ font-size:0.9em;
1663 }
1664 .block-inner{position:absolute;bottom:0}
1665-.block-inner li {
1666-display:inline;
1667-list-style:none outside none;
1668-padding:0;
1669-}
1670-.block-inner li.first {
1671-border-right:1px solid #000000;
1672-padding-right:1em;
1673-}
1674-.block-inner li.last {
1675-border-left:1px solid #000000;
1676-padding-left:1em;
1677+.block-inner li{
1678+ display:inline;
1679+ list-style:none outside none;
1680+ padding:0;
1681+}
1682+.block-inner li.first{
1683+ border-right:1px solid #000000;
1684+ padding-right:1em;
1685+}
1686+.block-inner li.last{
1687+ border-left:1px solid #000000;
1688+ padding-left:1em;
1689 }
1690 .block-inner ul{
1691-margin:0 0 2px 0;
1692+ margin:0 0 2px 0;
1693 }
1694-.block-inner a {color:#323232}
1695+.block-inner a{color:#323232}
1696
1697-img {vertical-align:middle}
1698-.postimg img {max-width:100%}
1699-button {cursor:pointer}
1700-#toolbar img {cursor:pointer}
1701-li.postedit {font-size:1em}
1702-div.postright a {text-decoration:underline}
1703+img{vertical-align:middle}
1704+.postimg img{max-width:100%}
1705+button{cursor:pointer}
1706+#toolbar img{cursor:pointer}
1707+li.postedit{font-size:1em}
1708+div.postright a{text-decoration:underline}
1709 .postright a:visited{color:#551A8B}
1710-p.postedit {font-size:0.9em; color:#666;}
1711+p.postedit{font-size:0.9em; color:#666;}
1712
1713 /********************************************* DEBUT OPTIMISATION *******************************/
1714 .conr{float:right;text-align:right}
1715 .conl{float:left}
1716 .conr, .conl{display:block}
1717 .postbody{padding:2px 0 0 0}
1718-.postleft, .postleft dl, .postleft dl dt, .postleft dl dd {display:inline}
1719-.postleft dl dt span a {margin-right:10px}
1720-.postleft {width:auto; vertical-align:middle}
1721+.postleft, .postleft dl, .postleft dl dt, .postleft dl dd{display:inline}
1722+.postleft dl dt span a{margin-right:10px}
1723+.postleft{width:auto; vertical-align:middle}
1724 .blockpost .inbox{clear:none}
1725-.postleft dl {margin:0; padding:0}
1726+.postleft dl{margin:0; padding:0}
1727
1728=== added file 'theme2010/css/forum.css'
1729--- theme2010/css/forum.css 1970-01-01 00:00:00 +0000
1730+++ theme2010/css/forum.css 2011-02-20 13:32:13 +0000
1731@@ -0,0 +1,5 @@
1732+@import url('init.css');
1733+@import url('page.css');
1734+@import url('header.css');
1735+@import url('navigation.css');
1736+@import url('forum-general.css');
1737\ No newline at end of file
1738
1739=== modified file 'theme2010/css/header.css'
1740--- theme2010/css/header.css 2011-02-19 01:08:15 +0000
1741+++ theme2010/css/header.css 2011-02-20 13:32:13 +0000
1742@@ -139,3 +139,10 @@
1743 background-color:#FFF !important;
1744 color:#000 !important;
1745 }
1746+
1747+/* Cacher / afficher menu Navigation */
1748+html.hidemenu #navigation{ display:none; }
1749+html.hidemenu #main, html.hidemenu #references, html.hidemenu #announce{ margin-left:0; }
1750+html.hidemenu #hidemenu{ background-position:50% 27px; }
1751+/* - - */
1752+
1753
1754=== modified file 'theme2010/css/init.css'
1755--- theme2010/css/init.css 2010-12-07 02:09:37 +0000
1756+++ theme2010/css/init.css 2011-02-20 13:32:13 +0000
1757@@ -11,7 +11,7 @@
1758 margin:0; padding:0;
1759 }
1760 body, input, select, option, textarea{
1761- font-family:sans-serif;
1762+ font-family:Arial,sans-serif;
1763 line-height:1.4em;
1764 color:black;
1765 background-color:white;
1766@@ -23,13 +23,12 @@
1767 line-height:1.2em;
1768 font-weight:bold; font-style:normal;
1769 }
1770-/* modifié par rapport au forum */
1771-/*
1772+
1773 h1{ font-size:1.75em; }
1774-h2{ font-size:1.5em; }
1775-h3{ font-size:1.25em; }
1776+h2{ font-size:1.1em; }
1777+h3{ font-size:1.1em; }
1778 h4{ font-size:1em; }
1779-*/
1780+
1781 ul, ol{ margin:0.75em 0 0.75em 12px; padding:0; }
1782 ol li p, ul li p{margin:0}
1783
1784
1785=== modified file 'theme2010/js/common.js'
1786--- theme2010/js/common.js 2011-02-07 20:43:41 +0000
1787+++ theme2010/js/common.js 2011-02-20 13:32:13 +0000
1788@@ -74,9 +74,9 @@
1789 /*inputElement.className='input_focused';*/
1790 if (inputElement.id=='qsearch__in') {
1791 if (inputElement.value == 'Recherche rapide....') inputElement.value = '';
1792- }else if(inputElement.name=='u') {
1793+ }else if(inputElement.id=='u_field') {
1794 if (inputElement.value == 'Identifiant') inputElement.value = '';
1795- }else if(inputElement.name=='p') {
1796+ }else if(inputElement.id=='p_field') {
1797 if (inputElement.value == 'Mot de passe') inputElement.value = '';
1798 }
1799 }
1800@@ -89,9 +89,9 @@
1801 /*inputElement.className='';*/
1802 if (inputElement.id=='qsearch__in') {
1803 if (inputElement.value.length<1) inputElement.value = 'Recherche rapide....';
1804- }else if(inputElement.name=='u') {
1805+ }else if(inputElement.id=='u_field') {
1806 if (inputElement.value.length<1) inputElement.value = 'Identifiant';
1807- }else if(inputElement.name=='p') {
1808+ }else if(inputElement.id=='p_field') {
1809 if (inputElement.value.length<1) inputElement.value = 'Mot de passe';
1810 }
1811 }

Subscribers

People subscribed via source and target branches

to all changes: