OLD | NEW |
---|---|
1 <div id="keyboard-overlay" class="page" hidden> | 1 <div id="keyboard-overlay" class="page" hidden> |
2 <div class="close-button"></div> | 2 <div class="close-button"></div> |
3 <h1 i18n-content="keyboardOverlayTitle"></h1> | 3 <h1 i18n-content="keyboardOverlayTitle"></h1> |
4 <div class="content-area"> | 4 <div class="content-area"> |
5 <table class="option-control-table"> | 5 <table class="option-control-table"> |
6 <tr> | 6 <tr> |
7 <td> | 7 <td> |
8 <label class="option-name" for="remap-search-key-to" | 8 <label class="option-name" for="remap-search-key-to" |
9 i18n-content="remapSearchKeyToContent"> | 9 i18n-content="remapSearchKeyToContent"> |
10 </label> | 10 </label> |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
70 </td> | 70 </td> |
71 <td class="option-value"> | 71 <td class="option-value"> |
72 <select id="remap-diamond-key-to" class="control" | 72 <select id="remap-diamond-key-to" class="control" |
73 data-type="number" | 73 data-type="number" |
74 metric="Options_KeyboardRemapDiamondKey" | 74 metric="Options_KeyboardRemapDiamondKey" |
75 pref="settings.language.remap_diamond_key_to" | 75 pref="settings.language.remap_diamond_key_to" |
76 i18n-options="remapDiamondKeyToValue" dialog-pref></select> | 76 i18n-options="remapDiamondKeyToValue" dialog-pref></select> |
77 </td> | 77 </td> |
78 </tr> | 78 </tr> |
79 </table> | 79 </table> |
80 <div class="settings-row"> | 80 <div class="settings-row"> |
Dan Beam
2014/07/10 02:22:28
^ like this
| |
81 <div class="checkbox"> | 81 <div class="checkbox"> |
82 <span class="controlled-setting-with-label"> | 82 <span class="controlled-setting-with-label"> |
83 <input id="send-function-keys" type="checkbox" | 83 <input id="send-function-keys" type="checkbox" |
84 pref="settings.language.send_function_keys" dialog-pref> | 84 pref="settings.language.send_function_keys" dialog-pref> |
85 <span> | 85 <span> |
86 <label for="send-function-keys" i18n-content="sendFunctionKeys"> | 86 <label for="send-function-keys" i18n-content="sendFunctionKeys"> |
87 </label> | 87 </label> |
88 <span class="bubble-button controlled-setting-indicator" | 88 <span class="bubble-button controlled-setting-indicator" |
89 pref="settings.language.send_function_keys"></span> | 89 pref="settings.language.send_function_keys"></span> |
90 </span> | 90 </span> |
91 </span> | 91 </span> |
92 </div> | 92 </div> |
93 <label id="send-function-keys-description" for="send-function-keys" | 93 <label id="send-function-keys-description" for="send-function-keys" |
94 i18n-content="sendFunctionKeysDescription"> | 94 i18n-content="sendFunctionKeysDescription"> |
95 </label> | 95 </label> |
96 </div> | 96 </div> |
Dan Beam
2014/07/10 02:22:28
I meant:
<div class="settings-row">
<button
michaelpg
2014/07/10 02:43:17
That's what I had at first, but I did a code searc
Dan Beam
2014/07/10 21:00:49
<div>s are block
| |
97 </div> | 97 <button id="keyboard-shortcuts" class="settings-row link-button" |
98 <div class="content-area"> | |
99 <button id="keyboard-shortcuts" class="link-button" | |
100 i18n-content="showKeyboardShortcuts"></button> | 98 i18n-content="showKeyboardShortcuts"></button> |
101 </div> | 99 <button id="languages-and-input-settings" class="settings-row link-button" |
102 <div class="content-area"> | |
103 <button id="languages-and-input-settings" class="link-button" | |
104 i18n-content="changeLanguageAndInputSettings"></button> | 100 i18n-content="changeLanguageAndInputSettings"></button> |
105 </div> | 101 </div> |
106 <div class="action-area"> | 102 <div class="action-area"> |
107 <div class="button-strip"> | 103 <div class="button-strip"> |
108 <button id="keyboard-cancel" type="reset" i18n-content="cancel"></button> | 104 <button id="keyboard-cancel" type="reset" i18n-content="cancel"></button> |
109 <button id="keyboard-confirm" class="default-button" type="submit" | 105 <button id="keyboard-confirm" class="default-button" type="submit" |
110 i18n-content="ok"> | 106 i18n-content="ok"> |
111 </button> | 107 </button> |
112 </div> | 108 </div> |
113 </div> | 109 </div> |
114 </div> | 110 </div> |
OLD | NEW |