more mobile friendliness + bug fixes
This commit is contained in:
parent
76628041b7
commit
58b42fa45b
5 changed files with 9 additions and 5 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{{#if ready}}
|
||||
<div class="row navigation">
|
||||
<div class="col-sm-4 col-sm-offset-4 col-xs-6 col-xs-offset-2">
|
||||
<div class="col-sm-4 col-sm-offset-4 col-xs-8">
|
||||
{{#each tabData as |tab|}}
|
||||
<span class="navigationItem cursorPointer {{if tab.selected "active"}} text-uppercase" {{action "changeTab" tab.name}}>{{tab.name}}</span>
|
||||
{{/each}}
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ export default Em.Component.extend({
|
|||
this.set('dimmerOn', storage.get('huegasm.dimmerOn'));
|
||||
}
|
||||
|
||||
if(!Em.isNone(storage.get('huegasm.bridgeIp')) && !Em.isNone(storage.get('huegasm.bridgeUsername'))) {
|
||||
if(!Em.isEmpty(storage.get('huegasm.bridgeIp')) && !Em.isEmpty(storage.get('huegasm.bridgeUsername'))) {
|
||||
this.setProperties({
|
||||
bridgeIp: storage.get('huegasm.bridgeIp'),
|
||||
bridgeUsername: storage.get('huegasm.bridgeUsername')
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
-->{{/if}}<!--
|
||||
--><span data-toggle="tooltip" data-placement="top" class="bootstrapTooltip" id="volumeMutedTooltip"
|
||||
data-title={{volumeMutedTooltipTxt}} {{action "volumeMutedChanged"}}>{{paper-icon icon=volumeIcon class=volumeMutedClass}}</span><!--
|
||||
-->{{range-slider start=volume min=0 max=100 slide="volumeChanged" id="volumeBar"}}
|
||||
-->{{range-slider start=volume min=0 max=100 slide="volumeChanged" id="volumeBar" class="hidden-xs"}}
|
||||
|
||||
<div id="playerTimeControls">{{timeElapsedTxt}} / {{timeTotalTxt}}</div>
|
||||
{{/if}}
|
||||
|
|
@ -27,7 +27,8 @@
|
|||
<span class="pull-right">
|
||||
{{#if scUrl}}
|
||||
<a href="#" data-toggle="tooltip" data-placement="top" class="soundCloudLink bootstrapTooltip" data-title="Listen on SoundCloud" {{action "gotoSCURL" scUrl}}>
|
||||
<img src="assets/images/sc-white.png" />
|
||||
<img src="assets/images/sc-white.png" class="hidden-xs" />
|
||||
<img src="assets/images/sc-white-sm.png" class="visible-xs-inline" />
|
||||
</a>
|
||||
{{/if}}
|
||||
<span class="dropup">
|
||||
|
|
|
|||
|
|
@ -81,7 +81,6 @@ md-progress-circular[md-mode=indeterminate] .md-spinner-wrapper {
|
|||
}
|
||||
|
||||
.settingsItem {
|
||||
margin-left: 10px;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
transition: 0.1s all ease-in-out;
|
||||
|
|
@ -93,6 +92,10 @@ md-progress-circular[md-mode=indeterminate] .md-spinner-wrapper {
|
|||
}
|
||||
}
|
||||
|
||||
.settingsItem:nth-of-type(2){
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
md-switch[disabled=disabled], md-switch[disabled=disabled] .md-container, md-slider[disabled=disabled] {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
|
|
|||
BIN
public/assets/images/sc-white-sm.png
Normal file
BIN
public/assets/images/sc-white-sm.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 292 B |
Reference in a new issue