/* YouTube jump links found in video discussion and on /about */
span.youTube {
  padding-left: 18px;
  margin-left: 2px;
  /* TODO(diedra): Use new wonderblocks contentVideo medium icon. */
  background: url('/images/play.png') no-repeat left;
  background-size: 14px 14px;
  color: #1865f2;
  font-weight: bold;
  cursor: pointer;
}
span.youTube:hover {
  border-bottom: solid 1px #1865f2;
}
/* YouTube jump links found in new discussion rewrite */
img.youTubePlayIcon {
  height: 14px;
  width: 14px;
  margin-top: -4px;
  vertical-align: middle;
}
div.youTubeLink {
  margin-left: 2px;
  color: #1865f2;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  /* This invisible bottom border makes sure the lineheight doesn't change
    on hover */
  border-bottom: solid 1px rgba(0, 0, 0, 0);
}
div.youTubeLink:hover {
  /* We're using a bottom border instead of text-decoration: underline so that
    the underline extends beneath the icon as well. */
  border-bottom: solid 1px #1865f2;
}

