Overview
Comment: | [fx] gc_panel: CSS update |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fx | kill_innerHTML |
Files: | files | file ages | folders |
SHA3-256: |
cdf07eecd4c529123d3ed25a72866863 |
User & Date: | olr on 2017-07-15 08:51:06 |
Other Links: | branch diff | manifest | tags |
Context
2017-07-18
| ||
07:56 | [fx][bug] useless html entities when using textContent check-in: 66c2ed43a6 user: olr tags: fx, kill_innerHTML | |
2017-07-15
| ||
08:51 | [fx] gc_panel: CSS update check-in: cdf07eecd4 user: olr tags: fx, kill_innerHTML | |
08:13 | [fx] gc_panel: modify buttons check-in: 84a87c62b0 user: olr tags: fx, kill_innerHTML | |
Changes
Modified gc_lang/fr/xpi/data/gc_panel.css from [d364782947] to [d8c0673a48].
1 2 3 4 5 6 7 8 9 | /* panel.css */ @import url("common.css"); header { background-color: hsl(0, 0%, 96%); padding: 10px 20px; border-bottom: 1px solid hsl(0, 0%, 90%); color: hsl(0, 0%, 0%); | < | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | /* panel.css */ @import url("common.css"); header { background-color: hsl(0, 0%, 96%); padding: 10px 20px; border-bottom: 1px solid hsl(0, 0%, 90%); color: hsl(0, 0%, 0%); } body { background-color: hsl(0, 0%, 98%); font-family: Tahoma, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", sans-serif; overflow-x: hidden; color: hsl(0, 0%, 0%); } #special_message { display: none; margin: 0 20px 0 20px; padding: 60px 20px 10px 20px; |
︙ | ︙ | |||
46 47 48 49 50 51 52 | background-color: hsla(0, 50%, 20%, .8); border: 2px solid hsla(0, 50%, 10%, .8); border-radius: 5px; text-align: center; color: hsla(0, 0%, 100%, .9); font-size: 16px; font-weight: bold; | < > > > > > | | > > > > | 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 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 | background-color: hsla(0, 50%, 20%, .8); border: 2px solid hsla(0, 50%, 10%, .8); border-radius: 5px; text-align: center; color: hsla(0, 0%, 100%, .9); font-size: 16px; font-weight: bold; } #message { padding: 10px 20px; } /* Error list */ #errorlist { padding: 60px 20px 30px 20px; } #errorlist p.message { margin-top: 20px; padding: 10px 10px; background-color: hsla(240, 10%, 50%, 1); font-size: 18px; color: hsla(240, 0%, 96%, 1); border-radius: 3px; text-align: center; } #errorlist p.green { background-color: hsla(120, 10%, 50%, 1); color: hsla(120, 0%, 96%, 1); } .paragraph_block { margin: 0 0 10px 0; } .paragraph { background-color: hsla(0, 0%, 90%, 1); padding: 10px; border-radius: 2px; font-size: 14px; font-family : "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace; color: hsl(0, 0%, 0%); } .softred { background-color: hsla(0, 20%, 90%, 1); } .softgreen { background-color: hsla(120, 15%, 90%, 1); } .paragraph a { background-color: hsla(210, 50%, 50%, 1); padding: 1px 5px; border-radius: 2px; color: hsla(210, 0%, 96%, 1); cursor: pointer; text-decoration: none; } .paragraph a:hover { background-color: hsla(210, 60%, 40%, 1); color: hsla(0, 0%, 100%, 1); text-shadow: 0 0 3px hsl(210, 30%, 60%); } .paragraph u { text-decoration: none; } .paragraph u.corrected, .paragraph u.ignored { background-color: hsla(120, 50%, 70%, 1); color: hsla(0, 0%, 4%, 1); border-radius: 2px; text-decoration: none; |
︙ | ︙ | |||
139 140 141 142 143 144 145 | 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; | < | 146 147 148 149 150 151 152 153 154 155 156 157 158 159 | 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; } #gc_tooltip { border: 3px solid hsl(210, 50%, 30%); color: hsla(210, 10%, 20%, 1); } #sc_tooltip { |
︙ | ︙ | |||
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 | font-size: 9px; font-weight: bold; } #gc_sugg_block { padding: 10px; background-color: hsl(210, 10%, 96%); border-radius: 0 0 2px 2px; } #sc_sugg_block { padding: 10px; background-color: hsl(0, 10%, 96%); border-radius: 0 0 2px 2px; } #gc_sugg_block a.sugg { padding: 1px 6px; | > > | | < | < | 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 | font-size: 9px; font-weight: bold; } #gc_sugg_block { padding: 10px; background-color: hsl(210, 10%, 96%); border-radius: 0 0 2px 2px; line-height: 20px; } #sc_sugg_block { padding: 10px; background-color: hsl(0, 10%, 96%); border-radius: 0 0 2px 2px; line-height: 20px; } #gc_sugg_block a.sugg { padding: 1px 6px; background-color: hsla(180, 60%, 40%, 1); color: hsla(180, 0%, 96%, 1); border-radius: 2px; cursor: pointer; text-decoration: none; } #gc_sugg_block a.sugg:hover { background-color: hsla(180, 70%, 45%, 1); color: hsla(0, 0%, 100%, 1); } #sc_sugg_block a.sugg { padding: 1px 6px; background-color: hsla(30, 90%, 45%, 1); color: hsla(30, 0%, 96%, 1); border-radius: 2px; cursor: pointer; text-decoration: none; } #sc_sugg_block a.sugg:hover { background-color: hsla(30, 100%, 50%, 1); color: hsla(0, 0%, 100%, 1); } /* Action buttons */ .actions { |
︙ | ︙ |