Skip to content

Instantly share code, notes, and snippets.

@Shou
Created May 15, 2016 17:16
Show Gist options
  • Save Shou/8394ed10adf25ce47eb0e3aa66061ea4 to your computer and use it in GitHub Desktop.
Save Shou/8394ed10adf25ce47eb0e3aa66061ea4 to your computer and use it in GitHub Desktop.
Collapse Discord channels bar, show on hover of guild bar
.channels-wrap
{ max-width: 0px
; overflow: hidden
; transition: max-width 0s ease-in-out
}
.channels-wrap:hover,
.channels-wrap:focus
{ max-width: 50rem
; transition: max-width 0.3s ease-in-out
}
.guilds-wrapper:hover ~ .channels-wrap,
.guilds-wrapper:focus ~ .channels-wrap
{ max-width: 50rem
; transition: max-width 0.3s ease-in-out
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment