diff options
author | zelidrag@chromium.org <zelidrag@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-24 16:16:08 +0000 |
---|---|---|
committer | zelidrag@chromium.org <zelidrag@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-24 16:16:08 +0000 |
commit | 7cb33dab94dfec80b2912f45e2a18f6bdbc260be (patch) | |
tree | 7736fdab68ce26dd65e2698553b5579aff8a04e5 /chrome/browser | |
parent | 15e26ebe0237fbfc04261dac19d56e2b9ccf3b85 (diff) | |
download | chromium_src-7cb33dab94dfec80b2912f45e2a18f6bdbc260be.zip chromium_src-7cb33dab94dfec80b2912f45e2a18f6bdbc260be.tar.gz chromium_src-7cb33dab94dfec80b2912f45e2a18f6bdbc260be.tar.bz2 |
Fixed positioning of control buttons on overlay pages. Missing file from
wifi/cellular button fix.
BUG=chromium-os:7880
TEST=make sure overlay pages in chrome:settings don't paint control buttons at the bottom of the page
TBR=xiyuan
Review URL: http://codereview.chromium.org/3979012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63679 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r-- | chrome/browser/resources/options/chromeos_internet_options.html | 11 | ||||
-rw-r--r-- | chrome/browser/resources/options/options_page.css | 2 |
2 files changed, 9 insertions, 4 deletions
diff --git a/chrome/browser/resources/options/chromeos_internet_options.html b/chrome/browser/resources/options/chromeos_internet_options.html index 2966b1a..cb3e268 100644 --- a/chrome/browser/resources/options/chromeos_internet_options.html +++ b/chrome/browser/resources/options/chromeos_internet_options.html @@ -3,10 +3,13 @@ <section id="wirelessButtons"> <h3 i18n-content="generalNetworkingTitle"></h3> <div id="networkingControls"> - <button id="enableWifi" i18n-content="enableWifi"></button> - <button id="disableWifi" i18n-content="disableWifi"></button> - <button id="enableCellular" i18n-content="enableCellular"></button> - <button id="disableCellular" i18n-content="disableCellular"></button> + <button id="enableWifi" class="hidden" i18n-content="enableWifi"></button> + <button id="disableWifi" class="hidden" + i18n-content="disableWifi"></button> + <button id="enableCellular" class="hidden" + i18n-content="enableCellular"></button> + <button id="disableCellular" class="hidden" + i18n-content="disableCellular"></button> </div> </section> <section id="wiredSection"> diff --git a/chrome/browser/resources/options/options_page.css b/chrome/browser/resources/options/options_page.css index 2ec720a..764bbd1 100644 --- a/chrome/browser/resources/options/options_page.css +++ b/chrome/browser/resources/options/options_page.css @@ -67,6 +67,8 @@ html[dir='rtl'] #close-overlay { border-radius: 5px; padding: 15px; border: 1px solid #666; + padding-bottom: 50px; + position: relative; -webkit-box-shadow: 3px 3px 3px #666; } |