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

Unified Diff: chrome/browser/resources/options/chromeos_language_chewing_options.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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/chromeos_language_chewing_options.html
diff --git a/chrome/browser/resources/options/chromeos_language_chewing_options.html b/chrome/browser/resources/options/chromeos_language_chewing_options.html
index 810ecc8d4ffab4cb6b4487eae10d9e003c5880eb..b0d991a44340436a706a57bdc67a001af635353a 100644
--- a/chrome/browser/resources/options/chromeos_language_chewing_options.html
+++ b/chrome/browser/resources/options/chromeos_language_chewing_options.html
@@ -4,81 +4,97 @@
<table class="option-control-table">
<tr>
<td class="option-name" colspan="2">
- <label class="checkbox">
- <input id="chewing-auto-shift-cur"
- pref="settings.language.chewing_auto_shift_cur" type="checkbox">
- <span i18n-content="Chewing_autoShiftCur"></span>
- </label>
+ <div class="checkbox">
+ <label>
+ <input id="chewing-auto-shift-cur"
+ pref="settings.language.chewing_auto_shift_cur" type="checkbox">
+ <span i18n-content="Chewing_autoShiftCur"></span>
+ </label>
+ </div>
</td>
</tr>
<tr>
<td class="option-name" colspan="2">
- <label class="checkbox">
- <input id="chewing-add-phrase-direction"
- pref="settings.language.chewing_add_phrase_direction"
- type="checkbox">
- <span i18n-content="Chewing_addPhraseDirection"></span>
- </label>
+ <div class="checkbox">
+ <label>
+ <input id="chewing-add-phrase-direction"
+ pref="settings.language.chewing_add_phrase_direction"
+ type="checkbox">
+ <span i18n-content="Chewing_addPhraseDirection"></span>
+ </label>
+ </div>
</td>
</tr>
<tr>
<td class="option-name" colspan="2">
- <label class="checkbox">
- <input id="chewing-easy-symbol-input"
- pref="settings.language.chewing_easy_symbol_input"
- type="checkbox">
- <span i18n-content="Chewing_easySymbolInput"></span>
- </label>
+ <div class="checkbox">
+ <label>
+ <input id="chewing-easy-symbol-input"
+ pref="settings.language.chewing_easy_symbol_input"
+ type="checkbox">
+ <span i18n-content="Chewing_easySymbolInput"></span>
+ </label>
+ </div>
</td>
</tr>
<tr>
<td class="option-name" colspan="2">
- <label class="checkbox">
- <input id="chewing-esc-clean-all-buf"
- pref="settings.language.chewing_esc_clean_all_buf"
- type="checkbox">
- <span i18n-content="Chewing_escCleanAllBuf"></span>
- </label>
+ <div class="checkbox">
+ <label>
+ <input id="chewing-esc-clean-all-buf"
+ pref="settings.language.chewing_esc_clean_all_buf"
+ type="checkbox">
+ <span i18n-content="Chewing_escCleanAllBuf"></span>
+ </label>
+ </div>
</td>
</tr>
<tr>
<td class="option-name" colspan="2">
- <label class="checkbox">
- <input id="chewing-force-lowercase-english"
- pref="settings.language.chewing_force_lowercase_english"
- type="checkbox">
- <span i18n-content="Chewing_forceLowercaseEnglish"></span>
- </label>
+ <div class="checkbox">
+ <label>
+ <input id="chewing-force-lowercase-english"
+ pref="settings.language.chewing_force_lowercase_english"
+ type="checkbox">
+ <span i18n-content="Chewing_forceLowercaseEnglish"></span>
+ </label>
+ </div>
</td>
</tr>
<tr>
<td class="option-name" colspan="2">
- <label class="checkbox">
- <input id="chewing-plain-zhuyin"
- pref="settings.language.chewing_plain_zhuyin"
- type="checkbox">
- <span i18n-content="Chewing_plainZhuyin"></span>
- </label>
+ <div class="checkbox">
+ <label>
+ <input id="chewing-plain-zhuyin"
+ pref="settings.language.chewing_plain_zhuyin"
+ type="checkbox">
+ <span i18n-content="Chewing_plainZhuyin"></span>
+ </label>
+ </div>
</td>
</tr>
<tr>
<td class="option-name" colspan="2">
- <label class="checkbox">
- <input id="chewing-phrase-choice-rearward"
- pref="settings.language.chewing_phrase_choice_rearward"
- type="checkbox">
- <span i18n-content="Chewing_phraseChoiceRearward"></span>
- </label>
+ <div class="checkbox">
+ <label>
+ <input id="chewing-phrase-choice-rearward"
+ pref="settings.language.chewing_phrase_choice_rearward"
+ type="checkbox">
+ <span i18n-content="Chewing_phraseChoiceRearward"></span>
+ </label>
+ </div>
</td>
</tr>
<tr>
<td class="option-name" colspan="2">
- <label class="checkbox">
- <input id="chewing-space-as-selection"
- pref="settings.language.chewing_space_as_selection"
- type="checkbox">
- <span i18n-content="Chewing_spaceAsSelection"></span>
- </label>
+ <div class="checkbox">
+ <label>
+ <input id="chewing-space-as-selection"
+ pref="settings.language.chewing_space_as_selection"
+ type="checkbox">
+ <span i18n-content="Chewing_spaceAsSelection"></span>
+ </label>
+ </div>
</td>
</tr>
<tr>

Powered by Google App Engine
This is Rietveld 408576698