Overview
| Comment: | [fx][bug] CSS: prevent content division to expand if words are too long | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | fx | 
| Files: | files | file ages | folders | 
| SHA3-256: | ea2cbb3df1617f72670aea257cb34d1d | 
| User & Date: | olr on 2017-10-23 09:41:31 | 
| Other Links: | manifest | tags | 
Context
| 2017-10-23 | ||
| 10:16 | [fx][bug] tooltip positioning when window is enlarged check-in: b2893d0cb3 user: olr tags: trunk, fx | |
| 09:41 | [fx][bug] CSS: prevent content division to expand if words are too long check-in: ea2cbb3df1 user: olr tags: trunk, fx | |
| 09:06 | [fx][bug] don’t show URL for spellchecking errors check-in: b6ad6a0ba7 user: olr tags: trunk, fx | |
Changes
Modified gc_lang/fr/webext/content_scripts/panel.css from [6e70e541a6] to [4ac065c55b].
| ︙ | ︙ | |||
| 91 92 93 94 95 96 97 | 
}
.grammalecte_close_button:hover {
    background-color: hsl(0, 100%, 60%);
}
.grammalecte_panel_content {
    position: absolute;
 | | | 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | 
}
.grammalecte_close_button:hover {
    background-color: hsl(0, 100%, 60%);
}
.grammalecte_panel_content {
    position: absolute;
    width: 100%;
    height: calc(100% - 55px); /* panel height - title_bar */
    overflow: auto;
}
.grammalecte_panel_message {
    margin: 10px;
    padding: 10px;
 | 
| ︙ | ︙ |