diff options
author | jamiewalch@chromium.org <jamiewalch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-12 22:33:58 +0000 |
---|---|---|
committer | jamiewalch@chromium.org <jamiewalch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-12 22:33:58 +0000 |
commit | b09c5a20c002c8855246024e71cf27eb2113a74e (patch) | |
tree | 2242e008ddad58c56a879b90b70bef9e0433478a /remoting | |
parent | b0fc69154a2a3d47d95c5fc45aee7d6f101fead3 (diff) | |
download | chromium_src-b09c5a20c002c8855246024e71cf27eb2113a74e.zip chromium_src-b09c5a20c002c8855246024e71cf27eb2113a74e.tar.gz chromium_src-b09c5a20c002c8855246024e71cf27eb2113a74e.tar.bz2 |
Don't show the refresh button/spinner under the infographic.
Since these icons were attached to the section header, which is shown both
before and after the infographic is displayed, it was partially visible when
the app was initially loaded.
Review URL: https://chromiumcodereview.appspot.com/23637011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@222889 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r-- | remoting/webapp/main.css | 2 | ||||
-rw-r--r-- | remoting/webapp/main.html | 23 |
2 files changed, 13 insertions, 12 deletions
diff --git a/remoting/webapp/main.css b/remoting/webapp/main.css index ff9a8fa..ee11918 100644 --- a/remoting/webapp/main.css +++ b/remoting/webapp/main.css @@ -270,7 +270,7 @@ h2 { opacity: 0.4; } -section > h2 { +section h2 { color: #666; } diff --git a/remoting/webapp/main.html b/remoting/webapp/main.html index 6882aaf..636fe5e 100644 --- a/remoting/webapp/main.html +++ b/remoting/webapp/main.html @@ -153,18 +153,8 @@ found in the LICENSE file. </section> <!-- Remote Assistance --> <section id="host-list-div" class="host-list-container"> - <h2> - <span i18n-content="MODE_ME2ME"></span> - <span class="h2-secondary" id="host-list-loading-indicator"> - <a href="#" id="host-list-reload" - class="icon-black" - i18n-title="TOOLTIP_REFRESH"> - <img src="reload.webp"> - </a> - <img src="spinner.gif" id="host-list-loading"> - </span> - </h2> <div id="me2me-first-run"> + <h2 i18n-content="MODE_ME2ME"></h2> <div> <p class="infographic-description" i18n-content="ME2ME_FIRST_RUN"></p> @@ -177,6 +167,17 @@ found in the LICENSE file. </div> </div> <div id="me2me-content"> + <h2> + <span i18n-content="MODE_ME2ME"></span> + <span class="h2-secondary" id="host-list-loading-indicator"> + <a href="#" id="host-list-reload" + class="icon-black" + i18n-title="TOOLTIP_REFRESH"> + <img src="reload.webp"> + </a> + <img src="spinner.gif" id="host-list-loading"> + </span> + </h2> <div id="host-list" hidden></div> <div id="host-list-error" class="box" hidden> <div id="host-list-error-message" class="error-state"></div> |