Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(316)

Side by Side Diff: chrome/browser/sync/resources/configure.html

Issue 6291008: Make tweaks to password UI following today's UI review: added a learn more li... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698