You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.1 KiB

  1. /*******************************
  2. Star Rating
  3. *******************************/
  4. .ui.rating.module {
  5. min-width: 88px;
  6. height: 42px;
  7. unicode-bidi: bidi-override;
  8. direction: rtl;
  9. font-size: 26px;
  10. }
  11. .ui.rating.module .icon {
  12. cursor: default;
  13. float: left;
  14. padding: 2px 1px;
  15. font-style: normal;
  16. font-weight: normal;
  17. content: "\2605";
  18. color: transparent;
  19. }
  20. /* Non Selected Star */
  21. .ui.rating.module .icon:after {
  22. content: "\2605";
  23. color: #8C8C8C;
  24. -webkit-transition: all 0.25s;
  25. -moz-transition: all 0.25s;
  26. -o-transition: all 0.25s;
  27. -ms-transition: all 0.25s;
  28. transition: all 0.25s;
  29. }
  30. /*******************************
  31. States
  32. *******************************/
  33. /* Icons are clickable */
  34. .ui.active.rating.module .icon {
  35. cursor: pointer;
  36. }
  37. /* Current Star Rating */
  38. .ui.rating.module .active.icon:after {
  39. color: #FFCB08;
  40. }
  41. /* Hover */
  42. .ui.rating.module.hover .active.icon:after {
  43. opacity: 0.5;
  44. }
  45. .ui.rating.module .icon.hover:after,
  46. .ui.rating.module .icon.hover.active:after {
  47. opacity: 1;
  48. color: #FFB70A;
  49. text-shadow: 0px 0px 7px #FFCB08;
  50. }