Skip to content

Instantly share code, notes, and snippets.

@xkr47
Created September 6, 2019 04:39
Show Gist options
  • Save xkr47/c6aa37f5e31ddd7db7f127802e540e1c to your computer and use it in GitHub Desktop.
Save xkr47/c6aa37f5e31ddd7db7f127802e540e1c to your computer and use it in GitHub Desktop.
Flowdock #css
/* make notifications darker - suitable for dark theme */
.msg-body {
color: #585860;
}
.comment-group-hover .msg-body {
color: #9090a0;
}
/* just restore default theme colour that gets overridden by the above for normal messages */
.msg-body > p, .msg-body ul {
color: #c0c0c0;
}
/* -------------------------------------- */
/* zoom avatars in left pane on hover*/
.tab-avatar {
transition: transform 0.25s, opacity 0.25s;
}
.tab:hover .tab-avatar {
transform: scale(2);
opacity: 1;
}
/* By EdvardF */
.thread-avatar {
transition: transform 0.25s;
}
.avatar-container:hover .thread-avatar, .thread-avatar:hover {
transform: scale(3);
}
/* zoom avatars in flow user list */
.user-avatar {
transition: transform 0.25s, opacity 0.25s;
}
.user:hover .user-avatar {
transform: scale(2);
opacity: 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment