Fix EmojiSelector position on mobile
This commit is contained in:
parent
02228d41e5
commit
c29d779bf5
3 changed files with 22 additions and 3 deletions
|
@ -2713,7 +2713,6 @@ a.status-card.compact:hover {
|
||||||
.detailed-status__button {
|
.detailed-status__button {
|
||||||
flex: 1 1 auto;
|
flex: 1 1 auto;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
position: relative;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.column-settings__outer {
|
.column-settings__outer {
|
||||||
|
|
|
@ -57,7 +57,6 @@
|
||||||
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
padding: 10px 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.detailed-status__link {
|
.detailed-status__link {
|
||||||
|
@ -76,6 +75,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.detailed-status__button {
|
.detailed-status__button {
|
||||||
|
padding: 10px 0;
|
||||||
|
|
||||||
.icon-button {
|
.icon-button {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -87,3 +88,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.detailed-status__wrapper {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
|
@ -56,7 +56,6 @@
|
||||||
|
|
||||||
.emoji-react-selector {
|
.emoji-react-selector {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 100%;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
padding: 5px 8px;
|
padding: 5px 8px;
|
||||||
|
@ -105,8 +104,24 @@
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
pointer-events: all;
|
pointer-events: all;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media(max-width: 455px) {
|
||||||
|
position: static;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.detailed-status__wrapper .emoji-react-selector {
|
||||||
|
bottom: 40px;
|
||||||
|
right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.status .emoji-react-selector {
|
.status .emoji-react-selector {
|
||||||
|
bottom: 100%;
|
||||||
left: -20px;
|
left: -20px;
|
||||||
|
|
||||||
|
@media(max-width: 455px) {
|
||||||
|
bottom: 31px;
|
||||||
|
right: 10px;
|
||||||
|
left: auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue