diff options
| author | Cameron McEfee <cameron@github.com> | 2011-06-09 17:36:51 -0700 |
|---|---|---|
| committer | Cameron McEfee <cameron@github.com> | 2011-06-09 17:36:51 -0700 |
| commit | f0f2ab6f65ff660362b26cfcd2e98835c08aec69 (patch) | |
| tree | 94377c84568e0609abd7176abd84a082f1dbe718 | |
| parent | 425a9aeee79771b659c3ab373c6429fda1ae88af (diff) | |
make status animation only appear for .loadingstatus
| -rw-r--r-- | _layouts/default.html | 2 | ||||
| -rw-r--r-- | css/style.css | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index 84650bb..2dbf706 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -73,7 +73,7 @@ sidebar_cats: <p>This website is <a href="http://github.com/github/help.github.com#readme" target="_blank">open source</a>. Please help us by forking the project and adding to it.</p> </div> <div class="sidebar-module"> - <div class="status-box loading"> + <div class="status-box operational"> <h4>Site Status:</h4> <a href="http://status.github.com">All Systems Operational <img class="status-anim" src="/images/load-anim.gif" height="10" width="43" alt="loading"/></a> </div> diff --git a/css/style.css b/css/style.css index 6af1817..2ae4065 100644 --- a/css/style.css +++ b/css/style.css @@ -467,10 +467,16 @@ img.top-margin { background-position: 0px -297px; } +.sidebar-module img.status-anim { + display: none +} + .sidebar-module .loading img.status-anim { + display: inline; float: right; margin-top: 4px; position: relative; } + /* @end */ |
