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