Skip to content

Instantly share code, notes, and snippets.

@davidsword
Last active March 18, 2019 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidsword/0d4bb77c4ef4e539052ff1dcc09e1c93 to your computer and use it in GitHub Desktop.
Save davidsword/0d4bb77c4ef4e539052ff1dcc09e1c93 to your computer and use it in GitHub Desktop.
Atom - better visual que to show if Atoms's RemoteFTP plugin is connected
.status-bar-left .ftp-statusbar-view {
.icon {
color: white !important;
position: relative;
z-index: 2;
&:after {
content: "";
display: block;
position: absolute;
width: 30px;
height: 30px;
left:0;
top:0;
z-index:-1;
transform: translateX(-8px) translateY(-9px);
background: #dd6364 !important; // NOT connected
}
}
.icon-server { // CONNECTED
&:before { animation: blinker 1s ease infinite; }
&:after { background: #5FB3B3 !important; }
}
@keyframes blinker {
50% { opacity: 0.5; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment