fixing the soundcloud modal that's been broken by the paper update
This commit is contained in:
parent
c0733631ab
commit
e9ac1d162b
9 changed files with 30 additions and 5084 deletions
|
|
@ -43,7 +43,10 @@
|
|||
|
||||
<span id="bridge-input">
|
||||
{{paper-input label="Hue bridge IP address" value=manualBridgeIp onChange=(action (mut manualBridgeIp))}}
|
||||
{{paper-button onClick=(action "findBridgeByIp") raised=true primary=true label="Find"}}
|
||||
|
||||
<div>
|
||||
{{paper-button onClick=(action "findBridgeByIp") raised=true primary=true label="Find"}}
|
||||
</div>
|
||||
</span>
|
||||
|
||||
{{#if manualBridgeIpNotFound}}
|
||||
|
|
|
|||
|
|
@ -4,10 +4,12 @@
|
|||
<p>Enter a <a href="https://soundcloud.com" target="_blank" rel="noopener noreferrer">SoundCloud</a> track or playlist/set URL</p>
|
||||
<p>( ex. https://soundcloud.com/mrsuicidesheep/tracks )</p>
|
||||
|
||||
{{paper-input label="SoundCloud URL" icon="search" value=url}}
|
||||
{{paper-input label="SoundCloud URL" icon="search" value=url onChange=(action (mut url))}}
|
||||
|
||||
{{paper-button onClick=(action "close") label="Close"}}
|
||||
{{paper-button class="pull-right" onClick=(action "add") disabled=saveDisabled primary=true label="Add Music"}}
|
||||
<div>
|
||||
{{paper-button onClick=(action "close") label="Close"}}
|
||||
{{paper-button class="pull-right" onClick=(action "add") disabled=saveDisabled primary=true label="Add Music"}}
|
||||
</div>
|
||||
|
||||
{{/modal-dialog}}
|
||||
{{/if}}
|
||||
|
|
@ -41,8 +41,11 @@ button.md-warn {
|
|||
div.ember-modal-dialog {
|
||||
padding: 20px;
|
||||
color: black;
|
||||
md-input-container input {
|
||||
color: black !important;
|
||||
md-input-container {
|
||||
width: 100%;
|
||||
input {
|
||||
color: black !important;
|
||||
}
|
||||
}
|
||||
md-input-container label {
|
||||
color: rgba(0, 0, 0, 0.26);
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#bridge-input md-input-container{
|
||||
max-width: 200px;
|
||||
margin: 30px auto;
|
||||
margin: 30px auto 20px;
|
||||
}
|
||||
|
||||
#bridge-finder {
|
||||
|
|
|
|||
5069
mobile/yarn.lock
5069
mobile/yarn.lock
File diff suppressed because it is too large
Load diff
|
|
@ -43,7 +43,10 @@
|
|||
|
||||
<span id="bridge-input">
|
||||
{{paper-input label="Hue bridge IP address" value=manualBridgeIp onChange=(action (mut manualBridgeIp))}}
|
||||
{{paper-button onClick=(action "findBridgeByIp") raised=true primary=true label="Find"}}
|
||||
|
||||
<div>
|
||||
{{paper-button onClick=(action "findBridgeByIp") raised=true primary=true label="Find"}}
|
||||
</div>
|
||||
</span>
|
||||
|
||||
{{#if manualBridgeIpNotFound}}
|
||||
|
|
|
|||
|
|
@ -4,10 +4,11 @@
|
|||
<p>Enter a <a href="https://soundcloud.com" target="_blank" rel="noopener noreferrer">SoundCloud</a> track or playlist/set URL</p>
|
||||
<p>( ex. https://soundcloud.com/mrsuicidesheep/tracks )</p>
|
||||
|
||||
{{paper-input label="SoundCloud URL" icon="search" value=url}}
|
||||
|
||||
{{paper-button onClick=(action "close") label="Close"}}
|
||||
{{paper-button class="pull-right" onClick=(action "add") disabled=saveDisabled primary=true label="Add Music"}}
|
||||
{{paper-input label="SoundCloud URL" icon="search" value=url onChange=(action (mut url))}}
|
||||
|
||||
<div>
|
||||
{{paper-button onClick=(action "close") label="Close"}}
|
||||
{{paper-button class="pull-right" onClick=(action "add") disabled=saveDisabled primary=true label="Add Music"}}
|
||||
</div>
|
||||
{{/modal-dialog}}
|
||||
{{/if}}
|
||||
|
|
@ -72,8 +72,11 @@ button.md-warn {
|
|||
div.ember-modal-dialog {
|
||||
padding: 20px;
|
||||
color: black;
|
||||
md-input-container input {
|
||||
color: black !important;
|
||||
md-input-container {
|
||||
width: 100%;
|
||||
.md-input {
|
||||
color: black !important;
|
||||
}
|
||||
}
|
||||
md-input-container label {
|
||||
color: rgba(0, 0, 0, 0.26);
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#bridge-input md-input-container{
|
||||
max-width: 200px;
|
||||
margin: 30px auto;
|
||||
margin: 30px auto 20px;
|
||||
}
|
||||
|
||||
#intro {
|
||||
|
|
|
|||
Reference in a new issue