123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- // Post Love/Hate Votes List
- // -------------------------
- .post-votes-list {
- .vote-user {
- &, &:link, &:visited {
- color: @gray;
- font-size: @fontSizeLarge;
- font-weight: bold;
- }
- .vote-icon {
- background-color: @grayLight;
- border-radius: @baseBorderRadius;
- padding: 2px 3px;
- position: relative;
- bottom: (@fontSizeLarge - @baseFontSize) / 2;
- font-size: @baseFontSize;
- i {
- background-image: url("@{iconWhiteSpritePath}");
- }
- }
- }
- a.vote-user {
- &:hover, &:active {
- color: @textColor;
- text-decoration: none;
- }
- }
- .post-likes {
- .vote-icon {
- background-color: @green;
- }
- }
- .post-dislikes {
- .vote-icon {
- background-color: @red;
- }
- }
- }
|