Overview
| Comment: | [fx] gc panel: fix text truncation due to the new underlining method |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | fx |
| Files: | files | file ages | folders |
| SHA3-256: |
33a93940c6f12bc23022eaad719306a3 |
| User & Date: | olr on 2020-03-28 15:14:36 |
| Other Links: | manifest | tags |
Context
|
2020-03-28
| ||
| 15:51 | [fr] ajustements et faux positif check-in: 4c8b7d95bc user: olr tags: trunk, fr | |
| 15:14 | [fx] gc panel: fix text truncation due to the new underlining method check-in: 33a93940c6 user: olr tags: trunk, fx | |
| 10:17 | [fr] ajustements check-in: da75f13293 user: olr tags: trunk, fr | |
Changes
Modified gc_lang/fr/webext/content_scripts/panel_gc.js from [79100c1e89] to [e6011e0390].
| ︙ | ︙ | |||
357 358 359 360 361 362 363 |
xNodeErr.dataset.gc_message = oErr['sMessage'];
xNodeErr.dataset.gc_url = oErr['URL'];
if (xNodeErr.dataset.gc_message.includes(" #")) {
xNodeErr.dataset.line_id = oErr['sLineId'];
xNodeErr.dataset.rule_id = oErr['sRuleId'];
}
xNodeErr.dataset.suggestions = oErr["aSuggestions"].join("|");
| | | 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 |
xNodeErr.dataset.gc_message = oErr['sMessage'];
xNodeErr.dataset.gc_url = oErr['URL'];
if (xNodeErr.dataset.gc_message.includes(" #")) {
xNodeErr.dataset.line_id = oErr['sLineId'];
xNodeErr.dataset.rule_id = oErr['sRuleId'];
}
xNodeErr.dataset.suggestions = oErr["aSuggestions"].join("|");
if (oErr.hasOwnProperty("aColor") && Array.isArray(oErr["aColor"]) && oErr["aColor"].length === 3) {
let sHue = oErr["aColor"][0].toString();
let sSat = oErr["aColor"][1].toString();
let sLum = oErr["aColor"][2].toString();
xNodeErr.style.color = `hsl(${sHue}, ${sSat}%, 15%)`;
xNodeErr.style.backgroundColor = `hsl(${sHue}, ${sSat}%, 85%)`;
xNodeErr.style.borderBottom = `solid 2px hsl(${sHue}, ${sSat}%, ${sLum}%)`;
}
|
| ︙ | ︙ |