diff options
author | godofdream <soilfiction@gmail.com> | 2012-08-12 16:16:22 +0200 |
---|---|---|
committer | godofdream <soilfiction@gmail.com> | 2012-08-12 16:16:22 +0200 |
commit | 393bc84c584018cbbc634fb36e6ee42fe1a4acbb (patch) | |
tree | 6141615258e20b61696596fbdefd5dcd934fa845 /module/web/templates/default/base.html | |
parent | Merge webdesigns (diff) | |
download | pyload-393bc84c584018cbbc634fb36e6ee42fe1a4acbb.tar.xz |
changed colors of 2 icons added settings and logoutbutton
Diffstat (limited to 'module/web/templates/default/base.html')
-rw-r--r-- | module/web/templates/default/base.html | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/module/web/templates/default/base.html b/module/web/templates/default/base.html index 94b574046..993a788bb 100644 --- a/module/web/templates/default/base.html +++ b/module/web/templates/default/base.html @@ -60,16 +60,22 @@ <div id="speedgraph"></div>
<div class="header_block">
- <div id="check_reconnecting" class="pyload-icon-reconnecting-deactivated"></div>
- <div id="check_downloading" class="pyload-icon-downloading-deactivated"></div>
+ <div>
+ <div id="check_reconnecting" class="pyload-icon-reconnecting-deactivated" title="{{ _('Reconnect') }}"></div>
+ <div id="check_downloading" class="pyload-icon-downloading-deactivated" title="{{ _('Download') }}"></div>
+ </div>
+ <div>
+ <div id="button_settings" class="header-icon" title="{{ _('Settings') }}"></div>
+ <div id="button_user" class="header-icon" title="{{ _('Logout') }}"></div>
+ </div>
</div>
<div class="header_block">
- <div id="speedmeter">
+ <div id="speedmeter" title="{{ _('Speed') }}">
<div id="speedmeter_icon" class="header-icon"></div>
<span id="speedmeter_value" class="header_text">250KiB/s</span>
</div>
- <div id="downloads">
+ <div id="downloads" title="{{ _('Queue') }}">
<div id="downloads_icon" class="header-icon"></div>
<span id="downloads_value" class="header_text">3/126/212</span>
</div>
|