stacker.news/components/upvote.module.css

35 lines
582 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;
padding-right: .2rem;
}
.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 {
background: var(--theme-body);
width: 100%;
overflow: hidden;
mix-blend-mode: color;
position: absolute;
left: 4px;
width: 17px;
2021-04-22 22:14:32 +00:00
}