Overview
| Comment: | [fx] use flow message for gc messages, and CSS update |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | fx |
| Files: | files | file ages | folders |
| SHA3-256: |
a8ce95d9cc0bea2552f748206d6a2a8a |
| User & Date: | olr on 2019-05-18 11:34:36 |
| Other Links: | manifest | tags |
Context
|
2019-05-18
| ||
| 11:47 | [fx] tf panel: CSS adjustment check-in: e3a06dd49b user: olr tags: trunk, fx | |
| 11:34 | [fx] use flow message for gc messages, and CSS update check-in: a8ce95d9cc user: olr tags: trunk, fx | |
| 11:01 | [fx] CSS: double transparency useless check-in: b4b917baff user: olr tags: trunk, fx | |
Changes
Modified gc_lang/fr/webext/content_scripts/panel.css from [92d8a01600] to [a58a553101].
| ︙ | ︙ | |||
170 171 172 173 174 175 176 |
color: hsl(0, 50%, 100%);
}
div.grammalecte_panel_flow_message {
margin: 10px;
padding: 10px;
border-radius: 5px;
| | | | 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 |
color: hsl(0, 50%, 100%);
}
div.grammalecte_panel_flow_message {
margin: 10px;
padding: 10px;
border-radius: 5px;
background-color: hsl(300, 20%, 50%);
color: hsl(300, 20%, 96%);
font-family: "Trebuchet MS", "Fira Sans", "Ubuntu Condensed", "Liberation Sans", sans-serif;
font-size: 16px;
}
|
| ︙ | ︙ |
Modified gc_lang/fr/webext/content_scripts/panel_gc.js from [72d2d1fb85] to [77a59c8edf].
| ︙ | ︙ | |||
899 900 901 902 903 904 905 |
}
setNode (xNode) {
this.clear();
this.xNode = xNode;
this.bTextArea = (xNode.tagName == "TEXTAREA" || xNode.tagName == "INPUT");
if (!this.bTextArea) {
| | | | 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 |
}
setNode (xNode) {
this.clear();
this.xNode = xNode;
this.bTextArea = (xNode.tagName == "TEXTAREA" || xNode.tagName == "INPUT");
if (!this.bTextArea) {
oGrammalecte.oGCPanel.addMessageToGCPanel("Attention : La zone de texte analysée est un champ textuel enrichi susceptible de contenir des éléments non textuels qui seront effacés lors de la correction.");
}
this.xNode.disabled = true;
this.loadText((this.bTextArea) ? this.xNode.value : this.xNode.innerText);
}
setText (sText) {
this.clear();
oGrammalecte.oGCPanel.addMessageToGCPanel("Note : Aucun champ textuel défini. Les changements ne seront pas répercutés sur la zone d’où le texte a été extrait.");
this.loadText(sText);
}
clear () {
if (this.xNode !== null) {
this.xNode.disabled = false;
this.bTextArea = false;
|
| ︙ | ︙ |