Overview
| Comment: | [fx] more discrete buttons for paragraph actions |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | fx |
| Files: | files | file ages | folders |
| SHA3-256: |
4db3740105cba5020d98053d305ce1bc |
| User & Date: | olr on 2019-04-18 22:26:06 |
| Other Links: | manifest | tags |
Context
|
2019-04-19
| ||
| 08:27 | [fr] ajustement check-in: 74c9efdaf5 user: olr tags: trunk, fr | |
|
2019-04-18
| ||
| 22:26 | [fx] more discrete buttons for paragraph actions check-in: 4db3740105 user: olr tags: trunk, fx | |
| 22:25 | [fr] faux positif check-in: a5874e4261 user: olr tags: trunk, fr | |
Changes
Modified gc_lang/fr/webext/content_scripts/panel_gc.css from [6a5b66f6d8] to [2e15bdec95].
| ︙ | |||
30 31 32 33 34 35 36 | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | - - - - - + - - - + - - + + - + |
div.grammalecte_paragraph_actions {
float: right;
margin: 0 0 5px 10px;
}
div.grammalecte_paragraph_button {
display: inline-block;
|
| ︙ |
Modified gc_lang/fr/webext/content_scripts/panel_gc.js from [c6dbad5da3] to [0a1421fd2a].
| ︙ | |||
214 215 216 217 218 219 220 | 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 | - + - + |
freeParagraph (xParagraph) {
xParagraph.contentEditable = "true";
let nStart = parseInt(xParagraph.dataset.caret_position_start);
let nEnd = parseInt(xParagraph.dataset.caret_position_end);
oGrammalecte.setCaretPosition(xParagraph, nStart, nEnd);
this.xParent.getElementById("grammalecte_check"+xParagraph.dataset.para_num).textContent = "A";
|
| ︙ |