From 4a510de0c99d080cdd3ecc837307ac8ee3509e87 Mon Sep 17 00:00:00 2001 From: Greg Burri Date: Tue, 20 May 2008 20:48:33 +0000 Subject: [PATCH] MOD le logo devient un protoype pour le design officiel FIX minibugs --- doc/graphiques/logo.svg | 304 +++++++++++++++++++++++++++++++++++++--- js/euphorik.js | 6 +- js/pageMinichat.js | 5 +- 3 files changed, 287 insertions(+), 28 deletions(-) diff --git a/doc/graphiques/logo.svg b/doc/graphiques/logo.svg index 3c42ec8..1967e7c 100644 --- a/doc/graphiques/logo.svg +++ b/doc/graphiques/logo.svg @@ -17,6 +17,39 @@ inkscape:output_extension="org.inkscape.output.svg.inkscape"> + + + + + + + + + + + + + + + + inkscape:window-y="0" + showguides="true" + inkscape:guide-bbox="true" /> @@ -72,18 +115,46 @@ inkscape:groupmode="layer" id="layer1"> + style="fill:#f6dfc2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect3458" + width="453.62442" + height="492.34741" + x="46.644756" + y="32.944107" + ry="0" /> + + + + + + inkscape:export-ydpi="4.7199998" + transform="matrix(0.2872886,0,0,0.2872886,-7.7117438,-40.627481)" /> + euphorik + troll de la semaine : + + + + + [16:57:11] Pifou + + What is you favourite colour ? + chat + profile + about + + + [16:57:11] Pifou + What is you favourite colour ? + + + [16:57:11] Pifou + What is you favourite colour ? + + + diff --git a/js/euphorik.js b/js/euphorik.js index 36a2f06..86982db 100755 --- a/js/euphorik.js +++ b/js/euphorik.js @@ -247,8 +247,8 @@ Pages.prototype.afficherPage = function(nomPage, forcerChargement) if (this.pageCourante != null && this.pageCourante.decharger) this.pageCourante.decharger() - $("#menu div").removeClass("courante") - $("#menu div." + nomPage).addClass("courante") + $("#menu li").removeClass("courante") + $("#menu li." + nomPage).addClass("courante") this.pageCourante = page $("#page").html(this.pageCourante.contenu()).removeClass().addClass(this.pageCourante.nom) @@ -1003,4 +1003,4 @@ $(document).ready( pages.ajouterPage(new PageAbout(client, formateur, util)) pages.afficherPage("minichat") } -) \ No newline at end of file +) diff --git a/js/pageMinichat.js b/js/pageMinichat.js index e006f3c..678dac3 100755 --- a/js/pageMinichat.js +++ b/js/pageMinichat.js @@ -840,8 +840,9 @@ Messages.prototype.supprimerConversation = function(num) * Ajuste la largeur des conversations en fonction de leur nombre. modifie l'attribut CSS 'width'. */ Messages.prototype.ajusterLargeurConversations = function() -{ - $("#conversations .conversation").css("width", 100 / this.conversations.length + "%") +{ + // le "- 0.01" evite que IE se chie dessus lamentablement et affiche les conversations les unes au dessus des autres + $("#conversations .conversation").css("width", (100 / this.conversations.length) - 0.01 + "%") } /** -- 2.43.0