Overview
| Comment: | [fx] GC panel: small UI update |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | fx |
| Files: | files | file ages | folders |
| SHA3-256: |
c2317dc2f958b02f1215bf25a2657fc7 |
| User & Date: | olr on 2020-02-03 11:03:49 |
| Other Links: | manifest | tags |
Context
|
2020-02-03
| ||
| 14:02 | [fr] version 1.7 check-in: a6bb1204ab user: olr tags: trunk, fr | |
| 11:03 | [fx] GC panel: small UI update check-in: c2317dc2f9 user: olr tags: trunk, fx | |
| 09:40 | [tb] spelling dictionary selection check-in: 8a0279f8fd user: olr tags: trunk, tb | |
Changes
Modified gc_lang/fr/webext/content_scripts/panel.css from [20920fbe90] to [27a355fd67].
| ︙ | |||
142 143 144 145 146 147 148 | 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 | - + + - + |
font-variant: small-caps;
cursor: pointer;
border-radius: 3px;
}
div.grammalecte_menu_button:hover {
background-color: hsl(210, 80%, 40%);
}
|
| ︙ |
Modified gc_lang/fr/webext/content_scripts/panel_gc.js from [ed054ff2cf] to [38a6beab10].
| ︙ | |||
72 73 74 75 76 77 78 79 80 81 82 | 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | + + - - + + + |
this.xPanelContent.appendChild(this.xConjPanelContent);
this.sVerb = "";
this.bListenConj = false;
}
createMenu () {
this.xMenu = oGrammalecte.createNode("div", {className: "grammalecte_panel_menu"});
// tabs
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"});
// buttons
|
| ︙ | |||
121 122 123 124 125 126 127 | 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | - + - + - |
}
};
this.xConjButton.onclick = () => {
if (!this.bWorking) {
this.showConjugueur();
}
};
|
| ︙ |