diff options
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; } |