Display info in network status when unlinked

When we can't connect due to being unlinked, network status indicator
will show an appropriate informational message and a button to open the
installer window to relink.

// FREEBIE
This commit is contained in:
lilia
2017-04-12 16:46:51 -07:00
parent 587e5265c5
commit d3492960a6
5 changed files with 45 additions and 1 deletions
+10
View File
@@ -49,6 +49,16 @@
padding: 0.5em 0;
}
}
.action {
button {
border-radius: $border-radius;
border: solid 1px #ccc;
cursor: pointer;
font-family: inherit;
color: white;
background: $blue;
}
}
}
}
+7
View File
@@ -763,6 +763,13 @@ img.emoji {
display: inline-block;
font-size: 12px;
padding: 0.5em 0; }
.network-status-container .network-status .action button {
border-radius: 5px;
border: solid 1px #ccc;
cursor: pointer;
font-family: inherit;
color: white;
background: #2090ea; }
.conversation-stack {
padding-left: 300px; }