stacker.news/components/upvote.module.css

37 lines
631 B
CSS
Raw Normal View History

2021-04-22 17:14:32 -05:00
.upvote {
2021-12-05 11:37:55 -06:00
fill: #a5a5a5;
2021-04-24 16:05:07 -05:00
user-select: none;
-webkit-user-select: none;
-webkit-touch-callout: none;
2021-04-22 17:14:32 -05:00
}
2021-12-05 11:37:55 -06:00
.upvoteWrapper {
position: relative;
2023-07-25 13:32:48 -05:00
margin-right: .2rem;
padding-left: .2rem;
margin-left: -.4rem;
}
.noSelfTips {
2021-12-05 11:37:55 -06:00
fill: transparent !important;
filter: none !important;
}
.upvoteWrapper:not(.noSelfTips):hover {
cursor: pointer;
2021-09-12 11:55:38 -05:00
}
.upvote.voted {
fill: #F6911D;
2021-12-05 11:37:55 -06:00
filter: drop-shadow(0 0 6px #f6911d90);
}
2021-12-05 11:37:55 -06:00
.cover {
2023-08-04 19:21:51 -05:00
background: var(--bs-body-bg);
2021-12-05 11:37:55 -06:00
width: 100%;
overflow: hidden;
mix-blend-mode: color;
position: absolute;
left: 4px;
width: 17px;
2021-04-22 17:14:32 -05:00
}