Overview
Comment: | [fx] gc panel: button highlighting |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fx |
Files: | files | file ages | folders |
SHA3-256: |
463f0fb6fe98202408fd35411bcea925 |
User & Date: | olr on 2019-05-04 08:30:41 |
Other Links: | manifest | tags |
Context
2019-05-04
| ||
09:02 | [fx] new shortcuts again (numbers only for opening tabs) check-in: 2f39cf3999 user: olr tags: trunk, fx | |
08:30 | [fx] gc panel: button highlighting check-in: 463f0fb6fe user: olr tags: trunk, fx | |
2019-05-03
| ||
17:51 | [fx] update doc about shortcuts check-in: 7920018957 user: olr tags: trunk, fx | |
Changes
Modified gc_lang/fr/webext/content_scripts/panel_gc.js from [1e7d2ef41c] to [f811c99bef].
︙ | ︙ | |||
65 66 67 68 69 70 71 | this.xLxgPanelContent = oGrammalecte.createNode("div", {id: "grammalecte_lxg_panel_content"}); this.xPanelContent.appendChild(this.xLxgPanelContent); } createMenu () { this.xMenu = oGrammalecte.createNode("div", {className: "grammalecte_panel_menu"}); this.xTFButton = oGrammalecte.createNode("div", {className: "grammalecte_menu_button", textContent: "Formateur de texte"}); | | | 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | this.xLxgPanelContent = oGrammalecte.createNode("div", {id: "grammalecte_lxg_panel_content"}); this.xPanelContent.appendChild(this.xLxgPanelContent); } createMenu () { this.xMenu = oGrammalecte.createNode("div", {className: "grammalecte_panel_menu"}); this.xTFButton = oGrammalecte.createNode("div", {className: "grammalecte_menu_button", textContent: "Formateur de texte"}); this.xEditorButton = oGrammalecte.createNode("div", {className: "grammalecte_menu_button", textContent: "Éditeur"}); this.xLxgButton = oGrammalecte.createNode("div", {className: "grammalecte_menu_button", textContent: "Lexicographe"}); this.xConjButton = oGrammalecte.createNode("div", {className: "grammalecte_menu_button", textContent: "Conjugueur "}); this.xLEButton = oGrammalecte.createNode("div", {className: "grammalecte_menu_button", textContent: "Éditeur lexical "}); this.xTFButton.onclick = () => { oGrammalecte.createTFPanel(); if (this.xNode) { oGrammalecte.oTFPanel.start(this.xNode); |
︙ | ︙ | |||
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | return oGrammalecte.getPageText(); } } showEditor () { this.xGCPanelContent.style.display = "block"; this.xLxgPanelContent.style.display = "none"; } showLexicographer () { this.xGCPanelContent.style.display = "none"; this.xLxgPanelContent.style.display = "block"; } clear () { while (this.xParagraphList.firstChild) { this.xParagraphList.removeChild(this.xParagraphList.firstChild); } this.aIgnoredErrors.clear(); | > > > > > > > > | 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 | return oGrammalecte.getPageText(); } } showEditor () { this.xGCPanelContent.style.display = "block"; this.xLxgPanelContent.style.display = "none"; this.xEditorButton.style.textShadow = "2px 0 0 hsla(210, 40%, 35%, .5), -2px 0 0 hsla(210, 40%, 35%, .5), 0 2px 0 hsla(210, 40%, 35%, .5), 0 -2px 0 hsla(210, 40%, 35%, .5), 1px 1px hsla(210, 40%, 35%, .5), -1px -1px 0 hsla(210, 40%, 35%, .5), 1px -1px 0 hsla(210, 40%, 35%, .5), -1px 1px 0 hsla(210, 40%, 35%, .5)"; this.xLxgButton.style.textShadow = ""; this.xEditorButton.style.backgroundColor = "hsl(210, 60%, 40%)"; this.xLxgButton.style.backgroundColor = ""; } showLexicographer () { this.xGCPanelContent.style.display = "none"; this.xLxgPanelContent.style.display = "block"; this.xEditorButton.style.textShadow = ""; this.xLxgButton.style.textShadow = "2px 0 0 hsla(210, 40%, 35%, .5), -2px 0 0 hsla(210, 40%, 35%, .5), 0 2px 0 hsla(210, 40%, 35%, .5), 0 -2px 0 hsla(210, 40%, 35%, .5), 1px 1px hsla(210, 40%, 35%, .5), -1px -1px 0 hsla(210, 40%, 35%, .5), 1px -1px 0 hsla(210, 40%, 35%, .5), -1px 1px 0 hsla(210, 30%, 35%, .5)"; this.xEditorButton.style.backgroundColor = ""; this.xLxgButton.style.backgroundColor = "hsl(210, 60%, 40%)"; } clear () { while (this.xParagraphList.firstChild) { this.xParagraphList.removeChild(this.xParagraphList.firstChild); } this.aIgnoredErrors.clear(); |
︙ | ︙ |