Overview
| Comment: | [fx] gc_panel: modify buttons |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | fx | kill_innerHTML |
| Files: | files | file ages | folders |
| SHA3-256: |
84a87c62b013871751fbf65ad22025c1 |
| User & Date: | olr on 2017-07-15 08:13:30 |
| Other Links: | branch diff | manifest | tags |
Context
|
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 | |
| 06:24 | [fx] gc_panel: clean text, fix URL opening check-in: 01daed0f9f user: olr tags: fx, kill_innerHTML | |
Changes
Modified gc_lang/fr/xpi/data/gc_panel.css from [e4215aa3ba] to [d364782947].
| ︙ | |||
256 257 258 259 260 261 262 | 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 | - + - - |
}
/*
Action buttons
*/
.actions {
|
| ︙ | |||
303 304 305 306 307 308 309 310 311 312 313 314 315 316 | 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 | + + + |
background-color: hsl(30, 50%, 50%);
color: hsl(30, 0%, 96%);
}
.actions .orange:hover {
background-color: hsl(30, 70%, 40%);
color: hsl(30, 0%, 100%);
}
.actions .bold {
font-weight: bold;
}
/*
ERRORS
*/
.error {
|
| ︙ |
Modified gc_lang/fr/xpi/data/gc_panel.js from [7b61fc3131] to [2e8cdac4ec].
| ︙ | |||
139 140 141 142 143 144 145 | 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 | - + + - + + - + - |
let xNodeDiv = document.createElement("div");
xNodeDiv.className = "paragraph_block";
// actions
let xDivActions = document.createElement("div");
xDivActions.className = "actions";
let xDivClose = document.createElement("div");
xDivClose.id = "end" + iParagraph.toString();
|
| ︙ |