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.
75 lines
1.2 KiB
75 lines
1.2 KiB
@import "variables.less"; |
|
@import "mixins.less"; |
|
|
|
.br-theme-bars-1to10 { |
|
|
|
.br-widget { |
|
height: 50px; |
|
white-space: nowrap; |
|
|
|
a { |
|
display: block; |
|
width: 12px; |
|
padding: 5px 0; |
|
height: 28px; |
|
float: left; |
|
background-color: lighten(@orange-color, 25%); |
|
margin: 1px; |
|
text-align: center; |
|
|
|
&.br-active, |
|
&.br-selected { |
|
background-color: @orange-color; |
|
} |
|
} |
|
|
|
.br-current-rating { |
|
font-size: 20px; |
|
line-height: 2; |
|
float: left; |
|
padding: 0 20px 0 20px; |
|
color: @orange-color; |
|
font-weight: 400; |
|
} |
|
} |
|
|
|
.br-readonly { |
|
a { |
|
cursor: default; |
|
|
|
&.br-active, &.br-selected { |
|
background-color: lighten(@orange-color, 10%); |
|
} |
|
} |
|
|
|
.br-current-rating { |
|
color: lighten(@orange-color, 10%); |
|
} |
|
} |
|
|
|
} |
|
|
|
@media print { |
|
.br-theme-bars-1to10 { |
|
|
|
.br-widget { |
|
a { |
|
border: 1px solid lighten(black, 70%); |
|
background: white; |
|
height: 38px; |
|
.box-sizing(border-box); |
|
|
|
&.br-active, |
|
&.br-selected { |
|
border: 1px solid black; |
|
background: white; |
|
} |
|
} |
|
|
|
.br-current-rating { |
|
color: black; |
|
} |
|
} |
|
|
|
} |
|
}
|
|
|