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

Side by Side Diff: chrome/browser/resources/options/content_settings.html

Issue 601283004: fix alignment issue in chrome://settings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div id="content-settings-page" class="page" hidden> 1 <div id="content-settings-page" class="page" hidden>
2 <div class="close-button"></div> 2 <div class="close-button"></div>
3 <h1 i18n-content="contentSettingsPage"></h1> 3 <h1 i18n-content="contentSettingsPage"></h1>
4 <div class="content-area"> 4 <div class="content-area">
5 <!-- Cookie filter tab contents --> 5 <!-- Cookie filter tab contents -->
6 <section> 6 <section>
7 <h3 i18n-content="cookiesTabLabel"></h3> 7 <h3 i18n-content="cookiesTabLabel"></h3>
8 <div class="replace-with-website-settings"> 8 <div class="replace-with-website-settings">
9 <div class="radio controlled-setting-with-label"> 9 <div class="radio controlled-setting-with-label">
10 <label> 10 <label>
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 </div> 74 </div>
75 </div> 75 </div>
76 </section> 76 </section>
77 <!-- Image filter --> 77 <!-- Image filter -->
78 <section> 78 <section>
79 <h3 i18n-content="imagesTabLabel"></h3> 79 <h3 i18n-content="imagesTabLabel"></h3>
80 <div class="replace-with-website-settings"> 80 <div class="replace-with-website-settings">
81 <div class="radio controlled-setting-with-label"> 81 <div class="radio controlled-setting-with-label">
82 <label> 82 <label>
83 <input type="radio" name="images" value="allow"> 83 <input type="radio" name="images" value="allow">
84 <span i18n-content="imagesAllow"></span> 84 <span>
85 <span class="controlled-setting-indicator" 85 <span i18n-content="imagesAllow"></span>
86 content-setting="images" value="allow"></span> 86 <span class="controlled-setting-indicator"
87 content-setting="images" value="allow"></span>
88 </span>
87 </label> 89 </label>
88 </div> 90 </div>
89 <div class="radio controlled-setting-with-label"> 91 <div class="radio controlled-setting-with-label">
90 <label> 92 <label>
91 <input type="radio" name="images" value="block"> 93 <input type="radio" name="images" value="block">
92 <span> 94 <span>
93 <span i18n-content="imagesBlock"></span> 95 <span i18n-content="imagesBlock"></span>
94 <span class="controlled-setting-indicator" 96 <span class="controlled-setting-indicator"
95 content-setting="images" value="block"></span> 97 content-setting="images" value="block"></span>
96 </span> 98 </span>
(...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after
636 </section> 638 </section>
637 </div> 639 </div>
638 <div class="action-area"> 640 <div class="action-area">
639 <div class="button-strip"> 641 <div class="button-strip">
640 <button id="content-settings-overlay-confirm" class="default-button" 642 <button id="content-settings-overlay-confirm" class="default-button"
641 i18n-content="done"> 643 i18n-content="done">
642 </button> 644 </button>
643 </div> 645 </div>
644 </div> 646 </div>
645 </div> 647 </div>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698