bring back reactions
This commit is contained in:
@@ -696,6 +696,39 @@ details.inner {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
#reaction-popover {
|
||||
position: absolute;
|
||||
margin-block: var(--small-padding);
|
||||
margin-inline: 0;
|
||||
width: 300px;
|
||||
--button-size: calc(var(--huge-padding) * 2);
|
||||
|
||||
.emoji-button {
|
||||
min-width: var(--button-size);
|
||||
min-height: var(--button-size);
|
||||
|
||||
img {
|
||||
image-rendering: crisp-edges;
|
||||
width: 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#reaction-popover:popover-open {
|
||||
--gap: var(--base-padding);
|
||||
--max-columns: 4;
|
||||
display: grid;
|
||||
gap: var(--gap);
|
||||
justify-items: center;
|
||||
|
||||
--grid-item-size: calc((100% - var(--gap) * var(--max-columns)) / var(--max-columns));
|
||||
|
||||
grid-template-columns: repeat(
|
||||
auto-fit,
|
||||
minmax(max(var(--button-size), var(--grid-item-size)), 1fr)
|
||||
);
|
||||
}
|
||||
|
||||
#bookmark-popover {
|
||||
position: absolute;
|
||||
min-width: 400px;
|
||||
|
||||
Reference in New Issue
Block a user