Skip to content

Instantly share code, notes, and snippets.

@rmcauley
Created May 27, 2015 07: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 rmcauley/170810d842a070d35b09 to your computer and use it in GitHub Desktop.
Save rmcauley/170810d842a070d35b09 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.13)
// Compass (v1.0.3)
// ----
div.song {
div.entry_votes {
display: none;
float: right;
padding-right: .5em;
color: #DDD;
}
/* I'd like to move this into the div.entry_votes block above */
&.now_playing, &.history {
div.entry_votes {
display: block;
}
}
}
div.song {
/* I'd like to move this into the div.entry_votes block above */
}
div.song div.entry_votes {
display: none;
float: right;
padding-right: .5em;
color: #DDD;
}
div.song.now_playing div.entry_votes, div.song.history div.entry_votes {
display: block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment