diff options
author | jamiewalch@google.com <jamiewalch@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-27 19:27:40 +0000 |
---|---|---|
committer | jamiewalch@google.com <jamiewalch@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-27 19:27:40 +0000 |
commit | 5a0af9a75739431456bc0680c5f5625ee405c5b2 (patch) | |
tree | 836e52a085d03a64278fbac2ba9d9d47639d8440 /remoting/webapp/main.html | |
parent | 46c9a05f578dce497f03f265105872dfaa31a656 (diff) | |
download | chromium_src-5a0af9a75739431456bc0680c5f5625ee405c5b2.zip chromium_src-5a0af9a75739431456bc0680c5f5625ee405c5b2.tar.gz chromium_src-5a0af9a75739431456bc0680c5f5625ee405c5b2.tar.bz2 |
Cleaned up <input> CSS and simplified user consent mark-up.
BUG=134063
TEST=Manual
Review URL: https://chromiumcodereview.appspot.com/10661009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@144513 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/webapp/main.html')
-rw-r--r-- | remoting/webapp/main.html | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/remoting/webapp/main.html b/remoting/webapp/main.html index a47b80e..a906565 100644 --- a/remoting/webapp/main.html +++ b/remoting/webapp/main.html @@ -227,7 +227,7 @@ found in the LICENSE file. <td class="table-label"> <label for="daemon-pin-entry" i18n-content="ASK_PIN_DIALOG_LABEL" - class="box-spacer"></label> + class="editbox-label"></label> </td> <td> <input id="daemon-pin-entry" @@ -238,20 +238,18 @@ found in the LICENSE file. <tr> <td class="table-label"> <label for="daemon-pin-confirm" - i18n-content="ASK_PIN_DIALOG_CONFIRM_LABEL"></label> + i18n-content="ASK_PIN_DIALOG_CONFIRM_LABEL" + class="editbox-label"></label> </td> <td> <input id="daemon-pin-confirm" type="password"> </td> <tr> </table> - <div id="usagestats-consent" - hidden> - <input id="usagestats-consent-checkbox" type="checkbox"> - <label id="usagestats-consent-label" - for="usagestats-consent-checkbox"> - <span i18n-content="HOST_SETUP_CRASH_REPORTING_MESSAGE"> - </span> + <div id="usagestats-consent" hidden> + <label class="checkbox-label"> + <input id="usagestats-consent-checkbox" type="checkbox"> + <span i18n-content="HOST_SETUP_CRASH_REPORTING_MESSAGE"></span> </label> </div> <div id="daemon-pin-error-div" class="message centered" hidden> @@ -411,7 +409,8 @@ found in the LICENSE file. <div class="box"> <div class="box-spacer"></div> <label for="access-code-entry" - i18n-content="ACCESS_CODE"> + i18n-content="ACCESS_CODE" + class="editbox-label"> </label> <input id="access-code-entry" type="text" @@ -447,7 +446,9 @@ found in the LICENSE file. class="message"></div> <div> <form id="pin-form" action=""> - <label for="pin-entry" i18n-content="PIN"></label> + <label for="pin-entry" + i18n-content="PIN" + class="editbox-label"></label> <input id="pin-entry" type="password" autofocus="autofocus" |