Overview
| Comment: | [fx] CSS protection for hyphenation |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | fx |
| Files: | files | file ages | folders |
| SHA3-256: |
25276d751a1303479b62fc48c95b4b91 |
| User & Date: | olr on 2017-11-12 10:59:40 |
| Other Links: | manifest | tags |
Context
|
2017-11-12
| ||
| 18:25 | [cli] add spellchecker suggestions (patch from Stéphane Veyret) check-in: 7a62b9fd73 user: olr tags: trunk, cli | |
| 10:59 | [fx] CSS protection for hyphenation check-in: 25276d751a user: olr tags: trunk, fx | |
|
2017-11-11
| ||
| 09:45 | [core] ibdawg: remove action logging check-in: 95d9c959ba user: olr tags: trunk, core | |
Changes
Modified gc_lang/fr/webext/content_scripts/panel.css from [0eb0cf4e6b] to [63df57f97c].
| ︙ | ︙ | |||
15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
color: hsl(0, 0%, 0%);
font-family: "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif;
box-shadow: 0 0 2px 1px hsla(210, 50%, 50%, .5);
line-height: normal;
text-shadow: none;
text-decoration: none;
text-align: left;
}
.grammalecte_panel img {
display: inline-block;
margin: 0;
padding: 0;
}
| > | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
color: hsl(0, 0%, 0%);
font-family: "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif;
box-shadow: 0 0 2px 1px hsla(210, 50%, 50%, .5);
line-height: normal;
text-shadow: none;
text-decoration: none;
text-align: left;
hyphens: none;
}
.grammalecte_panel img {
display: inline-block;
margin: 0;
padding: 0;
}
|
| ︙ | ︙ |
Modified gc_lang/fr/webext/content_scripts/panel_gc.css from [da1111188c] to [898f253ce8].
| ︙ | ︙ | |||
16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
background-color: hsl(0, 0%, 96%);
border-radius: 2px;
line-height: normal;
text-align: left;
font-size: 14px;
font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
color: hsl(0, 0%, 0%);
}
/*
Action buttons
*/
.grammalecte_paragraph_actions {
| > | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
background-color: hsl(0, 0%, 96%);
border-radius: 2px;
line-height: normal;
text-align: left;
font-size: 14px;
font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
color: hsl(0, 0%, 0%);
hyphens: none;
}
/*
Action buttons
*/
.grammalecte_paragraph_actions {
|
| ︙ | ︙ | |||
194 195 196 197 198 199 200 |
background-color: hsl(240, 10%, 50%);
color: hsl(240, 0%, 96%);
font-size: 14px;
font-family : "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
text-decoration: none;
text-shadow: unset;
text-align: left;
| | | 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
background-color: hsl(240, 10%, 50%);
color: hsl(240, 0%, 96%);
font-size: 14px;
font-family : "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
text-decoration: none;
text-shadow: unset;
text-align: left;
hyphens: none;
}
.grammalecte_error:hover {
background-color: hsl(240, 10%, 40%);
color: hsl(240, 0%, 100%);
}
.grammalecte_error_corrected,
|
| ︙ | ︙ |