Overview
| Comment: | [fx] CSS: min-height for tooltip suggestions (prevent flat line if there is only spaces) |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | fx |
| Files: | files | file ages | folders |
| SHA3-256: |
b6c94cd7cbdb582653c94a4954de42dd |
| User & Date: | olr on 2017-10-26 07:52:13 |
| Other Links: | manifest | tags |
Context
|
2017-10-26
| ||
| 08:12 | [tb] use nnbsp in suggestion message instead of spaces (prevent flat button if there is only spaces) check-in: bae0f1575a user: olr tags: trunk, tb | |
| 07:52 | [fx] CSS: min-height for tooltip suggestions (prevent flat line if there is only spaces) check-in: b6c94cd7cb user: olr tags: trunk, fx | |
| 05:49 | [core] tokenizer: better regex for URLs and folders check-in: 843c0244bc user: olr tags: trunk, core | |
Changes
Modified gc_lang/fr/webext/content_scripts/panel_gc.css from [ce33f0f465] to [032925962a].
| ︙ | ︙ | |||
155 156 157 158 159 160 161 162 163 164 165 166 167 168 |
background-color: hsl(210, 10%, 96%);
border-radius: 0 0 2px 2px;
line-height: 24px;
}
.grammalecte_tooltip_sugg {
display: inline-block;
padding: 1px 6px;
background-color: hsl(180, 60%, 40%);
color: hsl(180, 0%, 96%);
border-radius: 2px;
cursor: pointer;
font-size: 14px;
line-height: 18px;
text-decoration: none;
| > | 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
background-color: hsl(210, 10%, 96%);
border-radius: 0 0 2px 2px;
line-height: 24px;
}
.grammalecte_tooltip_sugg {
display: inline-block;
padding: 1px 6px;
min-height: 18px;
background-color: hsl(180, 60%, 40%);
color: hsl(180, 0%, 96%);
border-radius: 2px;
cursor: pointer;
font-size: 14px;
line-height: 18px;
text-decoration: none;
|
| ︙ | ︙ |