phone/css/font-awesome-4.7.0/src/assets/less/site/example-rating.less
a3a19fc6
 .rating {
   unicode-bidi: bidi-override;
   direction: rtl;
 
   font-size: 30px;
   span.star {
     font-family: FontAwesome;
     font-weight: normal;
     font-style: normal;
     display: inline-block;
     &:hover {
       cursor: pointer;
     }
   }
   span.star:before {
     content: "\f006"; // empty star
     padding-right: 5px;
     color: @gray-light;
   }
 
   span.star:hover:before, span.star:hover ~ span.star:before {
     content: "\f005"; // solid star
     color: #e3cf7a;
   }
 }