Overview
Comment: | [fx] CSS adjustments |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fx | webext2 |
Files: | files | file ages | folders |
SHA3-256: |
1d184c21b2137386c1b503b409355408 |
User & Date: | olr on 2017-08-16 16:00:51 |
Other Links: | branch diff | manifest | tags |
Context
2017-08-16
| ||
18:27 | [fx] object to control textarea check-in: 9002c7508c user: olr tags: fx, webext2 | |
16:00 | [fx] CSS adjustments check-in: 1d184c21b2 user: olr tags: fx, webext2 | |
13:54 | [fx] update manifest.json for previous commit check-in: b862e68eb3 user: olr tags: fx, webext2 | |
Changes
Modified gc_lang/fr/webext/content_scripts/gc_content.css from [d58e7acde2] to [4b3a10c0f7].
1 2 3 4 5 6 7 8 | /* Grammar checker */ #grammalecte_gc_panel_content { padding: 5px; } .grammalecte_paragraph_block { | > | | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | /* Grammar checker */ #grammalecte_gc_panel_content { margin: 0; padding: 5px; } .grammalecte_paragraph_block { margin: 0 0 5px 0; } .grammalecte_paragraph { margin: 0; padding: 10px; background-color: hsl(0, 0%, 96%); border-radius: 2px; font-size: 14px; font-family : "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace; color: hsl(0, 0%, 0%); } .grammalecte_paragraph a { |
︙ | ︙ | |||
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | #grammalecte_tooltip_arrow { position: absolute; display: none; } #grammalecte_tooltip { position: absolute; display: none; width: 300px; border-radius: 5px; box-shadow: 0 0 6px hsla(0, 0%, 0%, 0.3); font-family: Tahoma, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", sans-serif; font-size: 12px; line-height: 18px; cursor: default; text-decoration: none; border: 3px solid hsl(210, 50%, 30%); color: hsla(210, 10%, 20%, 1); z-index: 1000; } #grammalecte_tooltip_message_block { padding: 5px 10px 10px 10px; background-color: hsl(210, 50%, 30%); color: hsl(210, 50%, 96%); } #grammalecte_tooltip_rule_id { display: none; | > > | | | 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | #grammalecte_tooltip_arrow { position: absolute; display: none; } #grammalecte_tooltip { position: absolute; margin: 0; display: none; width: 300px; border-radius: 5px; box-shadow: 0 0 6px hsla(0, 0%, 0%, 0.3); font-family: Tahoma, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", sans-serif; font-size: 12px; line-height: 18px; cursor: default; text-decoration: none; border: 3px solid hsl(210, 50%, 30%); color: hsla(210, 10%, 20%, 1); z-index: 1000; } #grammalecte_tooltip_message_block { margin: 0; padding: 5px 10px 10px 10px; background-color: hsl(210, 50%, 30%); color: hsl(210, 50%, 96%); } #grammalecte_tooltip_rule_id { display: none; margin: 0 0 5px 0; border: 1px solid hsl(210, 50%, 60%); background-color: hsl(210, 50%, 40%); padding: 2px 5px; border-radius: 2px; color: hsla(210, 0%, 96%, 1); font-size: 11px; font-style: normal; text-align: center; } #grammalecte_tooltip_message { font-size: 15px; margin: 0 0 5px 0; } a#grammalecte_tooltip_ignore { padding: 0 2px; background-color: hsla(30, 30%, 40%, 1); color: hsla(30, 0%, 96%, 1); border-radius: 2px; cursor: pointer; |
︙ | ︙ |