Created
February 17, 2016 14:32
-
-
Save davinkevin/786d88edbc44acceb8a9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.rating { | |
color: #a9a9a9; | |
margin: 0; | |
padding: 0; | |
} | |
ul.rating { | |
display: inline-block; | |
} | |
.rating li { | |
list-style-type: none; | |
display: inline-block; | |
padding: 1px; | |
text-align: center; | |
font-weight: bold; | |
cursor: pointer; | |
} | |
.rating .filled { | |
color: #337ab7; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="rating"> | |
<li ng-repeat="star in stars" ng-class="star"> | |
★ | |
</li> | |
</ul> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment