diff --git a/src/js/components/Modal/AuthorizationModal_Send.js b/src/js/components/Modal/AuthorizationModal_Send.js
index 8e1832b6..f62c5531 100755
--- a/src/js/components/Modal/AuthorizationModal_Send.js
+++ b/src/js/components/Modal/AuthorizationModal_Send.js
@@ -31,7 +31,7 @@ class AuthorizationModal_Send extends React.Component{
}
if (connections.length <= 0){
- return
No connections available
+ return No peer connections available
} else {
return (
diff --git a/src/js/components/SpotifyAuthenticationFrame.js b/src/js/components/SpotifyAuthenticationFrame.js
index ed3ff9f6..eadb5f1e 100755
--- a/src/js/components/SpotifyAuthenticationFrame.js
+++ b/src/js/components/SpotifyAuthenticationFrame.js
@@ -81,7 +81,7 @@ class SpotifyAuthenticationFrame extends React.Component{
'playlist-read-collaborative',
'ugc-image-upload' // playlist image uploading
]
- var popup = window.open(url+'&scope='+scopes.join('%20'),"popup","height=680,width=400");
+ var popup = window.open(url+'&scope='+scopes.join('%20'),"popup","height=500,width=350");
// Start timer to check our popup's state
var timer = setInterval(checkPopup, 1000);
diff --git a/src/js/views/Settings.js b/src/js/views/Settings.js
index 451a5e1e..53fc5975 100755
--- a/src/js/views/Settings.js
+++ b/src/js/views/Settings.js
@@ -286,19 +286,13 @@ class Settings extends React.Component {
onBlur={e => this.handleBlur('locale',e.target.value)}
value={this.state.locale} />
Spotify
-
-
Authorization
-
-
- { this.renderSendAuthorizationButton() }
-
-
+
Current user
@@ -306,6 +300,14 @@ class Settings extends React.Component {
{ this.renderSpotifyUser() }
+
+
+
Authorization
+
+
+ { this.renderSendAuthorizationButton() }
+ {this.props.spotify.refreshing_token ? : }
+
Advanced
@@ -353,7 +355,6 @@ class Settings extends React.Component {
Reset
this.resetAllSettings()} />
-
diff --git a/src/scss/global/_forms.scss b/src/scss/global/_forms.scss
index eb5df075..53bc8e15 100755
--- a/src/scss/global/_forms.scss
+++ b/src/scss/global/_forms.scss
@@ -140,6 +140,7 @@ input[type="submit"] {
&.working {
position: relative;
+ cursor: wait !important;
&:after {
pointer-events: none;
@@ -147,8 +148,7 @@ input[type="submit"] {
display: block;
content: '';
animation: slideloader 1s infinite;
- background: $mid_grey;
- opacity: 0.5;
+ background: rgba(200,200,200,0.4);
top: 0;
left: 0;
bottom: 0;