Overview
| Comment: | [fx] CSS: thinner borders for the panel + adjustments for the lexicographer |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | fx | webext2 |
| Files: | files | file ages | folders |
| SHA3-256: |
a949a0b41c4a1b55f8958e89f35e295f |
| User & Date: | olr on 2017-08-15 08:57:04 |
| Other Links: | branch diff | manifest | tags |
Context
|
2017-08-15
| ||
| 10:27 | [fx] grammar checking: first attempt (it’s a beginning) check-in: cb67188975 user: olr tags: fx, webext2 | |
| 08:57 | [fx] CSS: thinner borders for the panel + adjustments for the lexicographer check-in: a949a0b41c user: olr tags: fx, webext2 | |
| 08:41 | [fx] movable panel height depending on window height check-in: 75f1b73645 user: olr tags: fx, webext2 | |
Changes
Modified gc_lang/fr/webext/content_scripts/content_panels.css from [87d3446a4a] to [a0df1dee54].
| ︙ | |||
40 41 42 43 44 45 46 | 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | - - + + + |
Panels
*/
.grammalecte_panel {
padding: 0;
margin: 0;
position: fixed;
z-index: 100;
|
| ︙ | |||
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | + - + - + |
}
.grammalecte_move_button:hover {
background-color: hsl(180, 100%, 60%);
}
.grammalecte_close_button {
display: inline-block;
padding: 2px 10px;
border-radius: 0 8px 0 0;
background-color: hsl(0, 80%, 50%);
font-size: 22px;
font-weight: bold;
color: hsl(210, 0%, 100%);
text-align: center;
cursor: pointer;
}
.grammalecte_close_button:hover {
background-color: hsl(0, 100%, 60%);
}
.grammalecte_panel_content {
|
| ︙ |