Merge remote-tracking branch 'upstream/develop' into fix/79_explicit_2

Conflicts:
	README.rst
This commit is contained in:
jcass 2016-01-31 06:46:25 +02:00
commit 19363e1476
3 changed files with 8 additions and 9 deletions

View File

@ -103,6 +103,8 @@ v2.1.0 (UNRELEASED)
- Fix vertical alignment of playback control buttons in footer.
- Increase width of header so that more text can be rendered in the title bar.
(Fixes: `#144 <https://github.com/pimusicbox/mopidy-musicbox-webclient/issues/144>`_).
- Re-align the menu and search buttons in the title bar.
(Fixes: `#148 <https://github.com/pimusicbox/mopidy-musicbox-webclient/issues/148>`_).
- Use explicit Mopidy.js calling convention. (Fixes: `#79 <https://github.com/pimusicbox/mopidy-musicbox-webclient/issues/79>`_).

View File

@ -130,13 +130,10 @@
}
#headermenubtn {
width: 50px;
padding-top: 2px;
}
#headersearchbtn{
text-align: right;
}
#headersearchbtn .ui-btn-inner{
padding: 6px;
#headersearchbtn span {
font-size: 15px;
}

View File

@ -224,9 +224,9 @@
<div data-role="header" data-tap-toggle="false" id="header" data-position="fixed" class="header-breakpoint headerbtn">
<a href="#panel" style="padding-top: 2px;" id="headermenubtn"><i class="fa fa-align-justify"></i></a>
<a id="headermenubtn" href="#panel"><i class="fa fa-align-justify"></i></a>
<h1 id="contentHeadline">Musicbox</h1>
<a id="headersearchbtn" href="#" class="ui-btn-icon-right headerbtn" onclick="switchContent('search' ); return false;" title="Search"><i class="fa fa-search"></i></a>
<a id="headersearchbtn" href="#" onclick="switchContent('search' ); return false;" title="Search"><i class="fa fa-search"></i></a>
</div>
<!-- /header -->