/**
  Styles for the Review Display Jsonp Widget.

  NOTE: These will be injected into the SMB's website so they should not override any default styles (eg. "body").
*/
@import "blueprint/grid";
@import "compass/css3/transition";
@import "compass/css3/box-sizing";
@import "compass/utilities/general/clearfix";
@import "partials/colors";
@import "partials/fonts";
@import "partials/utils";
@import "partials/icons";
@import "partials/feed";

.v-feed {
  font-family: $DEFAULT_FONT_FAMILY;
  line-height: 1.3;
  font-size: $DEFAULT_FONT_SIZE;
  width: 100%;

  a, a:visited, a:active {
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
    color: $LINK_COLOR;
    text-decoration: none;
    @include transition-property();
    @include transition-duration(.3s);
  }

  a:hover {
    color: $LINK_HOVER_COLOR;
    text-decoration: underline;
  }

  ul li {
    border-style: none;
    padding: 0;
  }
  .v-feed-item-container {
    padding: 10px;
    overflow: hidden;
  }
  .reviewer-name {
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
    color: $BLACK;
    padding-right: 5px;
  }
  .star-rating {
    .star-icon {
      font-size: 24px;
      padding-right: 3px;
      &.unselected {
        color: $TERTIARY_BACKGROUND_COLOR;
      }
    }
  }
  .v-feed-item-excerpt {
    font-size: 16px;
  }
  .v-feed-item-footer {
    padding-top: 0;
  }
  .view-all-comments {
    margin: 0 -10px -10px;
    margin-top: 12px;
    padding: 8px 0;
    text-align: center;
    background-color: $PRIMARY_BACKGROUND_COLOR;
  }
  .v-feed-item-date {
    font-size: 12px;
    margin-top: 18px;
    padding-left: 10px;
  }
}


