mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 04:43:37 +08:00
de00c9a3d3
New admin sidebar menu
31 lines
707 B
SCSS
31 lines
707 B
SCSS
.admin-contents.admin-emojis {
|
|
#custom_emoji .select-kit,
|
|
.emoji-uploader .select-kit {
|
|
max-width: 210px;
|
|
}
|
|
#custom_emoji td.action {
|
|
text-align: right;
|
|
}
|
|
#emoji-uploader {
|
|
transition: box-shadow ease-in-out 0.25s;
|
|
}
|
|
.uppy-is-drag-over {
|
|
box-shadow: 0 0px 52px 0 #ffffff, 0px 7px 33px 0 var(--tertiary-low);
|
|
}
|
|
#custom_emoji.highlighted {
|
|
background: var(--tertiary-very-low);
|
|
@media (prefers-reduced-motion: no-preference) {
|
|
animation: background-fade-highlight 2.5s ease-out;
|
|
}
|
|
}
|
|
}
|
|
.admin-emojis__header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
a {
|
|
font-size: var(--font-up-1);
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|