Overview
Comment: | [fx] lexicon editor |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fx |
Files: | files | file ages | folders |
SHA3-256: |
9cf43b3e45270bdaf03da70a60301624 |
User & Date: | olr on 2018-01-22 13:53:00 |
Other Links: | manifest | tags |
Context
2018-01-22
| ||
15:47 | [fx] update: lexicon editor check-in: 89947a9517 user: olr tags: trunk, fx | |
13:53 | [fx] lexicon editor check-in: 9cf43b3e45 user: olr tags: trunk, fx | |
2018-01-17
| ||
17:37 | [fx] update: lexicon editor check-in: 8396b80e31 user: olr tags: trunk, fx | |
Changes
Modified gc_lang/fr/webext/panel/lex_editor.css from [5dc566c63a] to [c26a7cee32].
︙ | |||
22 23 24 25 26 27 28 | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | - - - | body { background: hsl(0, 0%, 100%) url(../img/lines.png); font: normal 16px "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif; color: #505050; } |
︙ | |||
57 58 59 60 61 62 63 | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | - + | #categories { display: flex; padding: 10px 0; } #another_word_section { |
︙ | |||
132 133 134 135 136 137 138 | 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | - + - + + | margin-left: 5px; padding: 5px 10px; border: 2px solid hsl(0, 0%, 80%); border-radius: 3px; height: 24px; background: transparent; font: normal 20px Tahoma, "Ubuntu Condensed"; |
︙ |
Modified gc_lang/fr/webext/panel/lex_editor.html from [14764f0eb2] to [e847e96074].
︙ | |||
23 24 25 26 27 28 29 | 23 24 25 26 27 28 29 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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 | - + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - + + - - - - + + + + + - + + - - - - + + + + + - + + - - - - + + + + + - + + - - - - + + + + + - + + - - - - + + + + + - - - - - - + + + + + + + + - - - - - - + + + + + + + + - - - + + + - - - + + + - - - + + + - + - + - - + + + - - - - - + + + + + + | <div class="category" id="select_prenom" data-tag="M1">Prénom</div> <div class="category" id="select_patronyme" data-tag="M2">Patronyme</div> <div class="category" id="select_nom_propre" data-tag="MP">Nom propre</div> <div class="separator"></div> |
︙ |
Modified gc_lang/fr/webext/panel/lex_editor.js from [19387800f2] to [1b700c4d5d].
︙ | |||
10 11 12 13 14 15 16 | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | + + + - - + + + | function onSelectionClick (xEvent) { try { let xElem = xEvent.target; if (xElem.id) { if (xElem.id.startsWith("select_")) { oPage.showSection("section_" + xElem.id.slice(7)); oFlex.getLemma(); oFlex.setMainTag(xElem.dataset.tag); oFlex.update(); |
︙ | |||
65 66 67 68 69 70 71 72 | 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 | + + + + + + - - - - - - - + + + + + + + - - + + - + + + + + + + + - + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + | } for (let xElem of document.getElementsByName("pluriel")) { xElem.checked = false; } for (let xElem of document.getElementsByName("genre")) { xElem.checked = false; } for (let xElem of document.getElementsByName("pluriel2")) { xElem.checked = false; } for (let xElem of document.getElementsByName("genre2")) { xElem.checked = false; } // verbe |