zackshapiro / silencer

Silencer is a Chrome extension that lets you mute anything on the Internet
4 stars 1 forks source link

Add pop-out twitter bird for sharing what you're muting #105

Open zackshapiro opened 11 years ago

zackshapiro commented 11 years ago
.bird {
  background-image: url("/icons/bird.png");
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: inline-block;
  background-position-x: 5px;
  background-position-y: 5px;
  background-size: 20px;
  margin-right: 6px;
  margin-left: -26px;
}
zackshapiro commented 11 years ago

$("<a href='#' class='twitter-share-button sharer'></a>").insertBefore($(child).find('.remove-term'))
zackshapiro commented 11 years ago

.twitter-share-button {
  float: left;
  opacity: 0;
  filter: alpha(opacity=0);
  background-image: url("/icons/bird.png");
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: inline-block;
  background-position-x: 5px;
  background-position-y: 5px;
  background-size: 20px;
  position: relative;
  margin-top: -4px;
  margin-right: -10px;
  margin-left: -12px;
  -webkit-transition: all 0.3s ease-in-out;
}

.term:hover .twitter-share-button {
  opacity: 1;
  filter: alpha(opacity=100);
  right: 13px;
}

/* Finish this */
.twitter-share-button:hover .removal{
  display: none !important;
}