Index: gc_lang/fr/webext/panel/main.css ================================================================== --- gc_lang/fr/webext/panel/main.css +++ gc_lang/fr/webext/panel/main.css @@ -46,24 +46,24 @@ .green { background-color: hsl(120, 50%, 40%); color: hsl(120, 10%, 96%); } .green:hover { background-color: hsl(120, 60%, 30%); color: hsl(120, 10%, 96%); } .blue { background-color: hsl(210, 50%, 50%); color: hsl(210, 10%, 96%); } .blue:hover { background-color: hsl(210, 60%, 40%); color: hsl(210, 10%, 96%); } +.border { border: 1px solid hsl(210, 20%, 80%); } + /* links */ -a:link, a:visited { +.link { color: hsl(210, 70%, 40%); text-decoration: none; + cursor: pointer; } -a:hover, a:active { +.link:hover { text-shadow: 0 0 2px hsl(210, 80%, 60%); } -a.extlink:hover:after { - content: " >"; -} /* Main classes */ html { Index: gc_lang/fr/webext/panel/main.html ================================================================== --- gc_lang/fr/webext/panel/main.html +++ gc_lang/fr/webext/panel/main.html @@ -32,34 +32,22 @@

Grammalecte remercie

-

- - La Mouette - -

-

- - Algoo - -

-

- - et tous ceux qui l’ont soutenu - +

La Mouette

+

Algoo

+
@@ -110,11 +98,11 @@

ZONE DE TEST

Section de contrôle pour le développement du logiciel…

-
Page de test
+
Tests complets
Analyser

         
Index: gc_lang/fr/webext/panel/main.js ================================================================== --- gc_lang/fr/webext/panel/main.js +++ gc_lang/fr/webext/panel/main.js @@ -43,10 +43,13 @@ sCommand: "setOption", dParam: {sOptName: xElem.dataset.option, bValue: xElem.checked}, dInfo: {} }); } + else if (xElem.id.startsWith("link_")) { + browser.tabs.create({url: xElem.dataset.url}); + } } else if (xElem.className.startsWith("select")) { showPage(xElem.dataset.page); }/* else if (xElem.tagName === "A") { openURL(xElem.getAttribute("href")); }*/