Overview
Comment: | [fx] panel: CSS adjustments |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fx | webext2 |
Files: | files | file ages | folders |
SHA3-256: |
8a81843b4a0ded1272f137d1cee79a62 |
User & Date: | olr on 2017-08-07 07:57:14 |
Other Links: | branch diff | manifest | tags |
Context
2017-08-07
| ||
13:13 | [fx] test panel (done) check-in: 1debcdc72b user: olr tags: fx, webext2 | |
07:57 | [fx] panel: CSS adjustments check-in: 8a81843b4a user: olr tags: fx, webext2 | |
2017-08-06
| ||
20:54 | [fx][fr][bug] conj: initialisation incorrecte pour les content-scripts check-in: 2e0c8273f1 user: olr tags: fx, webext2 | |
Changes
Modified gc_lang/fr/webext/panel/main.css from [96ab586647] to [b87893cfe9].
︙ | |||
65 66 67 68 69 70 71 | 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 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 | - + - + + + + + + + + - - - - + + - - + + + + + + - - + - - - - - - - + + + + + + + - - - - + + + + + + + - - + + - - + + - - + + - - + + - - + + - - + + | /* Main classes */ html { box-sizing: border-box; width: 530px; |
︙ | |||
241 242 243 244 245 246 247 | 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 | - - + | */ #test_page { display: none; } #test_cmd { padding: 15px; |
︙ |
Modified gc_lang/fr/webext/panel/main.html from [9daf05e1d1] to [f1c096d913].
1 2 3 4 5 6 7 8 9 10 11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | - - + + + + | <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link rel="stylesheet" href="main.css"/> </head> <body> <div id="main"> |
︙ |
Modified gc_lang/fr/webext/panel/main.js from [72659a6e1c] to [f06df035f4].
︙ | |||
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 | - + - + | // show the one document.getElementById(sPageName).style.display = "block"; sendMessage("Mon message"); // specific modifications if (sPageName === "conj_page") { document.body.style.width = "600px"; document.documentElement.style.width = "600px"; |
︙ |