OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html i18n-values="dir:textdirection;"> | 2 <html i18n-values="dir:textdirection;"> |
3 <head> | 3 <head> |
4 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"></meta> | 4 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"></meta> |
5 <title i18n-content="title"></title> | 5 <title i18n-content="title"></title> |
6 <style> | 6 <style> |
7 html, body, ul, li { | 7 html, body, ul, li { |
8 margin: 0; | 8 margin: 0; |
9 padding: 0; | 9 padding: 0; |
10 } | 10 } |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 #status-icon { | 122 #status-icon { |
123 position: absolute; | 123 position: absolute; |
124 left: 32px; | 124 left: 32px; |
125 right: 37px; | 125 right: 37px; |
126 width: 64px; | 126 width: 64px; |
127 height: 64px; | 127 height: 64px; |
128 display: none; | 128 display: none; |
129 } | 129 } |
130 | 130 |
131 #main-content.device-detected-none #status-icon { | 131 #main-content.device-detected-none #status-icon { |
132 background: url('../shared/images/insert.png'); | 132 background: url('../../../../ui/webui/resources/images/insert.png'); |
133 background-repeat: no-repeat; | 133 background-repeat: no-repeat; |
134 display: block; | 134 display: block; |
135 } | 135 } |
136 | 136 |
137 #main-content.device-detected-usb #status-icon { | 137 #main-content.device-detected-usb #status-icon { |
138 background: url('../shared/images/detected_usb.png'); | 138 background: url('../../../../ui/webui/resources/images/detected_usb.png'); |
139 background-repeat: no-repeat; | 139 background-repeat: no-repeat; |
140 display: block; | 140 display: block; |
141 } | 141 } |
142 | 142 |
143 #main-content.device-detected-sd #status-icon { | 143 #main-content.device-detected-sd #status-icon { |
144 background: url('../shared/images/detected_sd.png'); | 144 background: url('../../../../ui/webui/resources/images/detected_sd.png'); |
145 background-repeat: no-repeat; | 145 background-repeat: no-repeat; |
146 display: block; | 146 display: block; |
147 } | 147 } |
148 | 148 |
149 #progress-status-div { | 149 #progress-status-div { |
150 display: none; | 150 display: none; |
151 } | 151 } |
152 | 152 |
153 #main-content.progress #progress-status-div { | 153 #main-content.progress #progress-status-div { |
154 display: block; | 154 display: block; |
(...skipping 22 matching lines...) Expand all Loading... |
177 } | 177 } |
178 | 178 |
179 #warning-icon{ | 179 #warning-icon{ |
180 width:25px; | 180 width:25px; |
181 height:26px; | 181 height:26px; |
182 -webkit-margin-end: 10px; | 182 -webkit-margin-end: 10px; |
183 display: none; | 183 display: none; |
184 } | 184 } |
185 | 185 |
186 #main-content.warning #warning-icon, #main-content.error #warning-icon { | 186 #main-content.warning #warning-icon, #main-content.error #warning-icon { |
187 background:url('../shared/images/icon_warning.png'); | 187 background:url('../../../../ui/webui/resources/images/icon_warning.png'); |
188 background-repeat:no-repeat; | 188 background-repeat:no-repeat; |
189 display: block; | 189 display: block; |
190 } | 190 } |
191 | 191 |
192 #main-content.success #warning-icon { | 192 #main-content.success #warning-icon { |
193 background:url('../shared/images/icon_checkmark.png'); | 193 background:url('../../../../ui/webui/resources/images/icon_checkmark.png'); |
194 background-repeat:no-repeat; | 194 background-repeat:no-repeat; |
195 display: block; | 195 display: block; |
196 } | 196 } |
197 | 197 |
198 #warning-div { | 198 #warning-div { |
199 display:block; | 199 display:block; |
200 } | 200 } |
201 | 201 |
202 #main-content.progress #warning-div { | 202 #main-content.progress #warning-div { |
203 display: none; | 203 display: none; |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 </div> | 252 </div> |
253 <div class="new-line"></div> | 253 <div class="new-line"></div> |
254 </div> | 254 </div> |
255 <div id="burn-footer"></div> | 255 <div id="burn-footer"></div> |
256 </div> | 256 </div> |
257 <script src="chrome://resources/js/i18n_template.js"></script> | 257 <script src="chrome://resources/js/i18n_template.js"></script> |
258 <script src="chrome://resources/js/i18n_process.js"></script> | 258 <script src="chrome://resources/js/i18n_process.js"></script> |
259 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | 259 <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
260 </body> | 260 </body> |
261 </html> | 261 </html> |
OLD | NEW |