Overview
Comment: | [fx] panel content (lxg and gc), ui |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fx | webext2 |
Files: | files | file ages | folders |
SHA3-256: |
216414b0facb154556371471f8ad2f1f |
User & Date: | olr on 2017-08-14 17:43:10 |
Other Links: | branch diff | manifest | tags |
Context
2017-08-15
| ||
06:38 | [fx] rename modify_page.js -> content_modifier.js check-in: 4ac6861246 user: olr tags: fx, webext2 | |
2017-08-14
| ||
17:43 | [fx] panel content (lxg and gc), ui check-in: 216414b0fa user: olr tags: fx, webext2 | |
2017-08-13
| ||
14:14 | [fx] code cleaning and clarification check-in: ad58d80cb5 user: olr tags: fx, webext2 | |
Changes
Modified gc_lang/fr/config.ini from [4666c13388] to [00a2e90fec].
1 2 3 4 5 6 7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | - + | [args] lang = fr lang_name = French locales = fr_FR fr_BE fr_CA fr_CH fr_LU fr_MC fr_BF fr_CI fr_SN fr_ML fr_NE fr_TG fr_BJ country_default = FR name = Grammalecte implname = grammalecte |
︙ |
Modified gc_lang/fr/webext/background.js from [bc6f49ada9] to [d4a9648f0c].
︙ | |||
48 49 50 51 52 53 54 | 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 | - + + + + + + - - + + + - + - | browser.runtime.sendMessage({sCommand: "fulltests_result", sResult: result}); break; case "getOptions": case "getDefaultOptions": case "setOptions": case "setOption": console.log("OPTIONS"); |
︙ |
Modified gc_lang/fr/webext/content_scripts/content_panels.css from [6a8ccbec0a] to [a6727e0b7f].
︙ | |||
25 26 27 28 29 30 31 | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | + + + + + - + | cursor: pointer; } .grammalecte_wrapper_button:hover { background-color: hsl(210, 50%, 55%); box-shadow: 0 0 1px 1px hsl(210, 50%, 20%); color: hsl(210, 0%, 100%); } .grammalecte_wrapper_toolbar { display: flex; justify-content: flex-end; margin-top: 5px; padding: 5px 10px; |
︙ | |||
94 95 96 97 98 99 100 101 102 103 104 105 106 107 | 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 | + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | .grammalecte_panel_content { height: calc(100% - 45px); /* panel height - title_bar */ overflow: auto; } /* Lexicographer */ #grammalecte_lxg_panel_content { padding: 10px; } .grammalecte_lxg_list_of_tokens { background-color: hsla(0, 0%, 90%, 1); padding: 10px; border-radius: 2px; margin: 10px 5px; } .grammalecte_token p { margin: 8px; } .grammalecte_token p.separator { margin: 20px 0; padding: 5px 5px; background-color: hsla(0, 0%, 75%, 1); color: hsla(0, 0%, 96%, 1); border-radius: 5px; text-align: center; font-size: 20px; } .grammalecte_token .token { margin: 8px; } .grammalecte_token ul { margin: 0 0 5px 40px; } .grammalecte_token b { background-color: hsla(150, 10%, 50%, 1); color: hsla(0, 0%, 96%, 1); padding: 2px 5px; border-radius: 2px; text-decoration: none; } .grammalecte_token b.WORD { background-color: hsla(150, 50%, 50%, 1); } .grammalecte_token b.ELPFX { background-color: hsla(150, 30%, 50%, 1); } .grammalecte_token b.UNKNOWN { background-color: hsla(0, 50%, 50%, 1); } .grammalecte_token b.NUM { background-color: hsla(180, 50%, 50%, 1); } .grammalecte_token b.COMPLEX { background-color: hsla(60, 50%, 50%, 1); } .grammalecte_token b.SEPARATOR { background-color: hsla(210, 50%, 50%, 1); } .grammalecte_token b.LINK { background-color: hsla(270, 50%, 50%, 1); } .grammalecte_token s { color: hsla(0, 0%, 60%, 1); text-decoration: none; } .grammalecte_token .textline { text-decoration: bold; } .grammalecte_token p.message { margin-top: 20px; padding: 10px 10px; background-color: hsla(240, 10%, 50%, 1); font-size: 18px; color: hsla(240, 0%, 96%, 1); border-radius: 3px; text-align: center; } /* Text Formatter */ #grammalecte_tf_options { display: flex; padding: 10px; |
︙ |
Added gc_lang/fr/webext/content_scripts/gc_content.js version [1881b88610].