OLD | NEW |
1 <html i18n-values="dir:textdirection;"> | 1 <html i18n-values="dir:textdirection;"> |
2 <head> | 2 <head> |
3 <title></title> | 3 <title></title> |
4 <style type="text/css"> | 4 <style type="text/css"> |
5 body { | 5 body { |
6 line-height: 1.33em; | 6 line-height: 1.33em; |
7 background: #FFFFFF; | 7 background: #FFFFFF; |
8 font-size: 11pt; | 8 font-size: 11pt; |
9 } | 9 } |
10 html[os='mac'] body { | 10 html[os='mac'] body { |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 .sync-section { | 146 .sync-section { |
147 background: #EEE; | 147 background: #EEE; |
148 margin: 5px 0px; | 148 margin: 5px 0px; |
149 padding: 6px; | 149 padding: 6px; |
150 } | 150 } |
151 | 151 |
152 #explicit-message { | 152 #explicit-message { |
153 margin-bottom: 5px; | 153 margin-bottom: 5px; |
154 } | 154 } |
155 | 155 |
| 156 #learn-more-link { |
| 157 float: right; |
| 158 } |
| 159 |
156 #change-passphrase { | 160 #change-passphrase { |
157 margin: 10px 0; | 161 margin: 10px 0; |
158 background: #EEE; | 162 background: #EEE; |
159 padding: 8px; | 163 padding: 8px; |
160 } | 164 } |
161 | 165 |
162 #clear-data-button { | 166 #clear-data-button { |
163 margin-top: 10px; | 167 margin-top: 10px; |
164 } | 168 } |
165 | 169 |
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
561 | 565 |
562 <div> | 566 <div> |
563 <input id="google-option" name="option" type="radio" | 567 <input id="google-option" name="option" type="radio" |
564 value="google" onchange="onRadioChange();"> | 568 value="google" onchange="onRadioChange();"> |
565 <span i18n-content="googleOption"></span> | 569 <span i18n-content="googleOption"></span> |
566 </input> | 570 </input> |
567 </div> | 571 </div> |
568 <div> | 572 <div> |
569 <input id="explicit-option" name="option" type="radio" | 573 <input id="explicit-option" name="option" type="radio" |
570 value="explicit" onchange="onRadioChange();"> | 574 value="explicit" onchange="onRadioChange();"> |
| 575 <div id="learn-more-link"> |
| 576 <a i18n-values="href:encryptionhelpurl" i18n-content="learnmore"></a> |
| 577 </div> |
571 <span i18n-content="explicitOption"></span> | 578 <span i18n-content="explicitOption"></span> |
572 </input> | 579 </input> |
573 </div> | 580 </div> |
574 | 581 |
575 <div class="sync-section" id="section-google"> | 582 <div class="sync-section" id="section-google"> |
576 <div i18n-content="sectionGoogleMessage"></div> | 583 <div i18n-content="sectionGoogleMessage"></div> |
577 </div> | 584 </div> |
578 <div class="sync-section" id="section-explicit"> | 585 <div class="sync-section" id="section-explicit"> |
579 <div i18n-content="sectionExplicitMessage" id="explicit-message"></div> | 586 <div i18n-content="sectionExplicitMessage" id="explicit-message"></div> |
580 <div> | 587 <div> |
(...skipping 22 matching lines...) Expand all Loading... |
603 </div> | 610 </div> |
604 | 611 |
605 <div class="sync-footer"> | 612 <div class="sync-footer"> |
606 <input id="okButton" type="submit" i18n-values="value:ok" /> | 613 <input id="okButton" type="submit" i18n-values="value:ok" /> |
607 <input id="cancelButton" type="button" i18n-values="value:cancel" | 614 <input id="cancelButton" type="button" i18n-values="value:cancel" |
608 onclick='chrome.send("DialogClose", [""])' /> | 615 onclick='chrome.send("DialogClose", [""])' /> |
609 </div> | 616 </div> |
610 </form> | 617 </form> |
611 </body> | 618 </body> |
612 </html> | 619 </html> |
OLD | NEW |