soapbox/app/styles/emoji_picker.scss

203 wiersze
3.3 KiB
SCSS
Czysty Zwykły widok Historia

2020-03-27 20:59:38 +00:00
.emoji-mart {
2020-05-29 00:58:37 +00:00
font-size: 13px;
display: inline-block;
2020-06-02 23:31:55 +00:00
color: var(--primary-text-color);
2020-05-29 00:58:37 +00:00
2020-03-27 20:59:38 +00:00
&,
* {
box-sizing: border-box;
line-height: 1.15;
}
.emoji-mart-emoji {
padding: 6px;
}
}
.emoji-mart-bar {
2020-06-02 22:42:09 +00:00
border: 0 solid var(--background-color);
2020-03-27 20:59:38 +00:00
&:first-child {
border-bottom-width: 1px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
&:last-child {
border-top-width: 1px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
display: none;
}
}
.emoji-mart-anchors {
display: flex;
justify-content: space-between;
padding: 0 6px;
2020-06-02 23:31:55 +00:00
color: var(--primary-text-color-faint);
2020-03-27 20:59:38 +00:00
line-height: 0;
}
.emoji-mart-anchor {
position: relative;
flex: 1;
text-align: center;
padding: 12px 4px;
overflow: hidden;
transition: color .1s ease-out;
cursor: pointer;
&:hover {
2020-06-02 22:42:09 +00:00
color: var(--primary-text-color-faint);
2020-03-27 20:59:38 +00:00
}
}
.emoji-mart-anchor-selected {
2020-05-31 02:48:37 +00:00
color: var(--highlight-text-color);
2020-03-27 20:59:38 +00:00
&:hover {
2020-06-02 22:42:09 +00:00
color: var(--highlight-text-color);
2020-03-27 20:59:38 +00:00
}
.emoji-mart-anchor-bar {
bottom: -1px;
}
}
.emoji-mart-anchor-bar {
position: absolute;
bottom: -5px;
left: 0;
width: 100%;
height: 4px;
2020-05-31 02:48:37 +00:00
background-color: var(--highlight-text-color);
2020-03-27 20:59:38 +00:00
}
.emoji-mart-anchors {
i {
display: inline-block;
width: 100%;
max-width: 22px;
}
svg {
fill: currentColor;
max-height: 18px;
}
}
.emoji-mart-scroll {
overflow-y: scroll;
height: 270px;
max-height: 35vh;
padding: 0 6px 6px;
2020-06-02 23:31:55 +00:00
background: var(--foreground-color);
2020-03-27 20:59:38 +00:00
will-change: transform;
&::-webkit-scrollbar-track:hover,
&::-webkit-scrollbar-track:active {
background-color: rgba($base-overlay-background, 0.3);
}
}
.emoji-mart-search {
padding: 10px;
padding-right: 45px;
2020-06-02 23:31:55 +00:00
background: var(--foreground-color);
2020-03-27 20:59:38 +00:00
input {
font-size: 14px;
font-weight: 400;
padding: 7px 9px;
font-family: inherit;
display: block;
width: 100%;
2020-06-02 23:31:55 +00:00
background: var(--background-color);
border: 1px solid var(--brand-color-faint);
border-radius: 9999px;
2020-03-27 20:59:38 +00:00
&::-moz-focus-inner {
border: 0;
}
&::-moz-focus-inner,
&:focus,
&:active {
outline: 0 !important;
}
}
}
.emoji-mart-category .emoji-mart-emoji {
cursor: pointer;
span {
z-index: 1;
position: relative;
text-align: center;
}
&:hover::before {
z-index: 0;
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
2020-06-02 23:31:55 +00:00
background-color: rgba(var(--background-color-rgb), 0.7);
2020-03-27 20:59:38 +00:00
border-radius: 100%;
}
}
.emoji-mart-category-label {
z-index: 2;
position: relative;
position: -webkit-sticky;
position: sticky;
top: 0;
span {
display: block;
width: 100%;
font-weight: 500;
padding: 5px 6px;
2020-06-02 23:31:55 +00:00
background: var(--foreground-color);
2020-03-27 20:59:38 +00:00
}
}
.emoji-mart-emoji {
position: relative;
display: inline-block;
font-size: 0;
span {
width: 22px;
height: 22px;
}
}
.emoji-mart-no-results {
font-size: 14px;
text-align: center;
padding-top: 70px;
2020-06-02 22:42:09 +00:00
color: var(--primary-text-color-faint);
2020-03-27 20:59:38 +00:00
.emoji-mart-category-label {
display: none;
}
.emoji-mart-no-results-label {
margin-top: .2em;
}
.emoji-mart-emoji:hover::before {
content: none;
}
}
.emoji-mart-preview {
display: none;
}