Overview
| Comment: | [fx] oops, revert error color experiment |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | fx |
| Files: | files | file ages | folders |
| SHA3-256: |
166280e1378d6ba02156897b10b7c757 |
| User & Date: | olr on 2017-09-04 07:43:24 |
| Other Links: | manifest | tags |
Context
|
2017-09-04
| ||
| 08:17 | [fx] WebExt: fix panel closing bug + display all paragraphs even when no errors check-in: 1951743e99 user: olr tags: trunk, fx | |
| 07:43 | [fx] oops, revert error color experiment check-in: 166280e137 user: olr tags: trunk, fx | |
| 07:06 | [fx] WebExt: adjust text formatter height check-in: e6ab950ba7 user: olr tags: trunk, fx | |
Changes
Modified gc_lang/fr/webext/content_scripts/panel_gc.css from [38e1456b07] to [9ed7b56be3].
| ︙ | ︙ | |||
175 176 177 178 179 180 181 |
*/
.grammalecte_error {
cursor: pointer;
border-radius: 2px;
text-decoration: none;
text-shadow: unset;
/* default color */
| | | 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
*/
.grammalecte_error {
cursor: pointer;
border-radius: 2px;
text-decoration: none;
text-shadow: unset;
/* default color */
background-color: hsl(240, 10%, 50%);
color: hsl(240, 0%, 96%);
}
.grammalecte_error:hover {
background-color: hsl(240, 10%, 40%);
color: hsl(240, 0%, 100%);
}
|
| ︙ | ︙ | |||
198 199 200 201 202 203 204 |
.grammalecte_error_ignored {
background-color: hsla(30, 20%, 80%, 1);
}
/* elems */
.grammalecte_error_WORD {
| | | | | | | 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 |
.grammalecte_error_ignored {
background-color: hsla(30, 20%, 80%, 1);
}
/* elems */
.grammalecte_error_WORD {
/*border-bottom: 2px solid hsl(0, 10%, 30%);*/
background-color: hsl(0, 50%, 50%);
color: hsl(0, 0%, 96%);
/*text-decoration: underline wavy hsl(0, 50%, 50%);*/
}
.grammalecte_error_WORD:hover {
background-color: hsl(0, 60%, 40%);
color: hsl(0, 0%, 100%);
}
/* elems */
.grammalecte_error_typo,
.grammalecte_error_esp,
.grammalecte_error_nbsp,
.grammalecte_error_eif,
|
| ︙ | ︙ |