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

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

Issue 6541086: WebUI Prefs: Don't use display:block for labels (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove pointless rul Created 9 years, 10 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 <div class="page hidden" id="content-settings-page"> 1 <div class="page hidden" id="content-settings-page">
2 <h1 i18n-content="contentSettingsPage"></h1> 2 <h1 i18n-content="contentSettingsPage"></h1>
3 <!-- Cookie filter tab contents --> 3 <!-- Cookie filter tab contents -->
4 <section> 4 <section>
5 <h3 i18n-content="cookies_tab_label"></h3> 5 <h3 i18n-content="cookies_tab_label"></h3>
6 <div> 6 <div>
7 <label class="radio"> 7 <div class="radio">
8 <input type="radio" name="cookies" value="allow"> 8 <label>
9 <span i18n-content="cookies_allow"></span> 9 <input type="radio" name="cookies" value="allow">
10 </label> 10 <span i18n-content="cookies_allow"></span>
11 <label class="radio"> 11 </label>
12 <input type="radio" name="cookies" value="block"> 12 </div>
13 <span i18n-content="cookies_block"></span> 13 <div class="radio">
14 </label> 14 <label>
15 <input type="radio" name="cookies" value="block">
16 <span i18n-content="cookies_block"></span>
17 </label>
18 </div>
15 19
16 <label class="checkbox"> 20 <div class="checkbox">
17 <input id="block-third-party-cookies" 21 <label>
18 pref="profile.block_third_party_cookies" type="checkbox"> 22 <input id="block-third-party-cookies"
19 <span i18n-content="cookies_block_3rd_party"></span> 23 pref="profile.block_third_party_cookies" type="checkbox">
20 </label> 24 <span i18n-content="cookies_block_3rd_party"></span>
21 <label class="checkbox"> 25 </label>
22 <input id="clear-cookies-on-exit" 26 </div>
23 pref="profile.clear_site_data_on_exit" type="checkbox"> 27 <div class="checkbox">
24 <span id="clear-cookies-on-exit-label"></span> 28 <label>
25 </label> 29 <input id="clear-cookies-on-exit"
30 pref="profile.clear_site_data_on_exit" type="checkbox">
31 <span id="clear-cookies-on-exit-label"></span>
32 </label>
33 </div>
26 34
27 <button class="exceptions-list-button" contentType="cookies" 35 <button class="exceptions-list-button" contentType="cookies"
28 i18n-content="manage_exceptions"></button> 36 i18n-content="manage_exceptions"></button>
29 <button id="show-cookies-button" 37 <button id="show-cookies-button"
30 i18n-content="cookies_show_cookies"></button> 38 i18n-content="cookies_show_cookies"></button>
31 </div> 39 </div>
32 </section> 40 </section>
33 41
34 <!-- Image filter --> 42 <!-- Image filter -->
35 <section> 43 <section>
36 <h3 i18n-content="images_tab_label"></h3> 44 <h3 i18n-content="images_tab_label"></h3>
37 <div> 45 <div>
38 <label class="radio"> 46 <div class="radio">
39 <input type="radio" name="images" value="allow"> 47 <label>
40 <span i18n-content="images_allow"></span> 48 <input type="radio" name="images" value="allow">
41 </label> 49 <span i18n-content="images_allow"></span>
42 <label class="radio"> 50 </label>
43 <input type="radio" name="images" value="block"> 51 </div>
44 <span i18n-content="images_block"></span> 52 <div class="radio">
45 </label> 53 <label>
54 <input type="radio" name="images" value="block">
55 <span i18n-content="images_block"></span>
56 </label>
57 </div>
46 58
47 <button class="exceptions-list-button" contentType="images" 59 <button class="exceptions-list-button" contentType="images"
48 i18n-content="manage_exceptions"></button> 60 i18n-content="manage_exceptions"></button>
49 </div> 61 </div>
50 </section> 62 </section>
51 63
52 <!-- JavaScript filter --> 64 <!-- JavaScript filter -->
53 <section> 65 <section>
54 <h3 i18n-content="javascript_tab_label"></h3> 66 <h3 i18n-content="javascript_tab_label"></h3>
55 <div> 67 <div>
56 <label class="radio"> 68 <div class="radio">
57 <input type="radio" name="javascript" value="allow"> 69 <label>
58 <span i18n-content="javascript_allow"></span> 70 <input type="radio" name="javascript" value="allow">
59 </label> 71 <span i18n-content="javascript_allow"></span>
60 <label class="radio"> 72 </label>
61 <input type="radio" name="javascript" value="block"> 73 </div>
62 <span i18n-content="javascript_block"></span> 74 <div class="radio">
63 </label> 75 <label>
76 <input type="radio" name="javascript" value="block">
77 <span i18n-content="javascript_block"></span>
78 </label>
79 </div>
64 80
65 <button class="exceptions-list-button" contentType="javascript" 81 <button class="exceptions-list-button" contentType="javascript"
66 i18n-content="manage_exceptions"></button> 82 i18n-content="manage_exceptions"></button>
67 </div> 83 </div>
68 </section> 84 </section>
69 85
70 <!-- Plug-ins filter --> 86 <!-- Plug-ins filter -->
71 <section> 87 <section>
72 <h3 i18n-content="plugins_tab_label"></h3> 88 <h3 i18n-content="plugins_tab_label"></h3>
73 <div> 89 <div>
74 <label class="radio"> 90 <div class="radio">
75 <input type="radio" name="plugins" value="allow"> 91 <label>
76 <span i18n-content="plugins_allow"></span> 92 <input type="radio" name="plugins" value="allow">
77 </label> 93 <span i18n-content="plugins_allow"></span>
78 <label class="radio" id="click_to_play"> 94 </label>
79 <input type="radio" name="plugins" value="ask"> 95 </div>
80 <span i18n-content="plugins_ask"></span> 96 <div class="radio" id="click_to_play">
81 </label> 97 <label>
82 <label class="radio"> 98 <input type="radio" name="plugins" value="ask">
83 <input type="radio" name="plugins" value="block"> 99 <span i18n-content="plugins_ask"></span>
84 <span i18n-content="plugins_block"></span> 100 </label>
85 </label> 101 </div>
102 <div class="radio">
103 <label>
104 <input type="radio" name="plugins" value="block">
105 <span i18n-content="plugins_block"></span>
106 </label>
107 </div>
86 108
87 <button class="exceptions-list-button" contentType="plugins" 109 <button class="exceptions-list-button" contentType="plugins"
88 i18n-content="manage_exceptions"></button> 110 i18n-content="manage_exceptions"></button>
89 <a i18n-content="disable_individual_plugins" id="plugins-tab" 111 <a i18n-content="disable_individual_plugins" id="plugins-tab"
90 href="about:plugins"> 112 href="about:plugins">
91 </a> 113 </a>
92 </div> 114 </div>
93 </section> 115 </section>
94 116
95 <!-- Pop-ups filter --> 117 <!-- Pop-ups filter -->
96 <section> 118 <section>
97 <h3 i18n-content="popups_tab_label" class="content-settings-header"></h3> 119 <h3 i18n-content="popups_tab_label" class="content-settings-header"></h3>
98 <div> 120 <div>
99 <label class="radio"> 121 <div class="radio">
100 <input type="radio" name="popups" value="allow"> 122 <label>
101 <span i18n-content="popups_allow"></span> 123 <input type="radio" name="popups" value="allow">
102 </label> 124 <span i18n-content="popups_allow"></span>
103 <label class="radio"> 125 </label>
104 <input type="radio" name="popups" value="block"> 126 </div>
105 <span i18n-content="popups_block"></span> 127 <div class="radio">
106 </label> 128 <label>
129 <input type="radio" name="popups" value="block">
130 <span i18n-content="popups_block"></span>
131 </label>
132 </div>
107 133
108 <button class="exceptions-list-button" contentType="popups" 134 <button class="exceptions-list-button" contentType="popups"
109 i18n-content="manage_exceptions"></button> 135 i18n-content="manage_exceptions"></button>
110 </div> 136 </div>
111 </section> 137 </section>
112 138
113 <!-- Location filter --> 139 <!-- Location filter -->
114 <section> 140 <section>
115 <h3 i18n-content="location_tab_label"></h3> 141 <h3 i18n-content="location_tab_label"></h3>
116 <div> 142 <div>
117 <label class="radio"> 143 <div class="radio">
118 <input type="radio" name="location" value="allow"> 144 <label>
119 <span i18n-content="location_allow"></span> 145 <input type="radio" name="location" value="allow">
120 </label> 146 <span i18n-content="location_allow"></span>
121 <label class="radio"> 147 </label>
122 <input type="radio" name="location" value="ask"> 148 </div>
123 <span i18n-content="location_ask"></span> 149 <div class="radio">
124 </label> 150 <label>
125 <label class="radio"> 151 <input type="radio" name="location" value="ask">
126 <input type="radio" name="location" value="block"> 152 <span i18n-content="location_ask"></span>
127 <span i18n-content="location_block"></span> 153 </label>
128 </label> 154 </div>
155 <div class="radio">
156 <label>
157 <input type="radio" name="location" value="block">
158 <span i18n-content="location_block"></span>
159 </label>
160 </div>
129 161
130 <button class="exceptions-list-button" contentType="location" 162 <button class="exceptions-list-button" contentType="location"
131 i18n-content="manage_exceptions"></button> 163 i18n-content="manage_exceptions"></button>
132 </div> 164 </div>
133 </section> 165 </section>
134 166
135 <!-- Notifications filter tab contents --> 167 <!-- Notifications filter tab contents -->
136 <section> 168 <section>
137 <h3 i18n-content="notifications_tab_label"></h3> 169 <h3 i18n-content="notifications_tab_label"></h3>
138 <div> 170 <div>
139 <label class="radio"> 171 <div class="radio">
140 <input type="radio" name="notifications" value="allow"> 172 <label>
141 <span i18n-content="notifications_allow"></span> 173 <input type="radio" name="notifications" value="allow">
142 </label> 174 <span i18n-content="notifications_allow"></span>
143 <label class="radio"> 175 </label>
144 <input type="radio" name="notifications" value="ask"> 176 </div>
145 <span i18n-content="notifications_ask"></span> 177 <div class="radio">
146 </label> 178 <label>
147 <label class="radio"> 179 <input type="radio" name="notifications" value="ask">
148 <input type="radio" name="notifications" value="block"> 180 <span i18n-content="notifications_ask"></span>
149 <span i18n-content="notifications_block"></span> 181 </label>
150 </label> 182 </div>
183 <div class="radio">
184 <label>
185 <input type="radio" name="notifications" value="block">
186 <span i18n-content="notifications_block"></span>
187 </label>
188 </div>
151 189
152 <button class="exceptions-list-button" contentType="notifications" 190 <button class="exceptions-list-button" contentType="notifications"
153 i18n-content="manage_exceptions"></button> 191 i18n-content="manage_exceptions"></button>
154 </div> 192 </div>
155 </section> 193 </section>
156 </div> 194 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698