stacker.news/components/upvote.module.css

37 lines
631 B
CSS
Raw Normal View History

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