Dashboard sipadu mbip
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.

_rating.scss 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /** =====================
  2. Rating css start
  3. ========================== **/
  4. .br-wrapper {
  5. margin: 20px 0 50px;
  6. }
  7. .br-theme-bars-1to10 .br-widget .br-current-rating {
  8. clear: both;
  9. padding: 0;
  10. font-size: 13px;
  11. color: #757575;
  12. font-weight: 400;
  13. }
  14. .br-theme-bars-reversed .br-widget .br-current-rating {
  15. clear: both;
  16. padding: 0;
  17. line-height: 2;
  18. font-size: 13px;
  19. }
  20. .br-theme-bars-movie .br-widget .br-current-rating {
  21. color: #757575;
  22. font-weight: 400;
  23. text-align: left;
  24. }
  25. .br-theme-bars-horizontal,
  26. .br-theme-bars-reversed {
  27. .br-widget .br-current-rating {
  28. color: #757575;
  29. font-weight: 400;
  30. font-size: 13px;
  31. }
  32. }
  33. span.value {
  34. display: inline;
  35. }
  36. .current-rating {
  37. position: relative;
  38. top: -50px;
  39. &.hidden {
  40. display: none;
  41. }
  42. }
  43. .your-rating {
  44. position: relative;
  45. top: -50px;
  46. &.hidden {
  47. display: none;
  48. }
  49. }
  50. .br-theme-bars-1to10,
  51. .br-theme-bars-movie,
  52. .br-theme-bars-reversed,
  53. .br-theme-bars-horizontal {
  54. .br-widget a {
  55. background-color: lighten($primary-color, 8%);
  56. &.br-active,
  57. &.br-selected {
  58. background-color: $primary-color;
  59. }
  60. }
  61. }
  62. .br-theme-bars-pill {
  63. .br-widget a {
  64. background-color: lighten($primary-color, 8%);
  65. color: $primary-color;
  66. &.br-active,
  67. &.br-selected {
  68. background-color: $primary-color;
  69. }
  70. }
  71. }
  72. .br-theme-fontawesome-stars {
  73. .br-widget {
  74. a.br-active:after,
  75. a.br-selected:after {
  76. color: $primary-color;
  77. }
  78. }
  79. }
  80. .br-theme-css-stars {
  81. .br-widget {
  82. a.br-active:after,
  83. a.br-selected:after {
  84. color: $primary-color;
  85. }
  86. }
  87. }
  88. .br-theme-bars-square {
  89. .br-widget a {
  90. border: 2px solid lighten($primary-color, 8%);
  91. color: lighten($primary-color, 8%);
  92. &.br-active,
  93. &.br-selected {
  94. border: 2px solid $primary-color;
  95. color: $primary-color;
  96. }
  97. }
  98. }
  99. .br-theme-fontawesome-stars-o {
  100. .br-widget {
  101. a.br-selected:after,
  102. a:after,
  103. a.br-active:after,
  104. a.br-fractional:after {
  105. color: $primary-color;
  106. }
  107. }
  108. }
  109. /**====== Rating css end ======**/