fix emoji size incosistencies and proper scaling support
This commit is contained in:
parent
5a8eae4510
commit
c698dec89d
1
changelog.d/emoji-size.fix
Normal file
1
changelog.d/emoji-size.fix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
fix emoji inconsistencies in notifications, fix some emoji not scaling with interface
|
|
@ -48,7 +48,7 @@
|
||||||
flex: 1 0;
|
flex: 1 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
--emoji-size: 14px;
|
--emoji-size: 1em;
|
||||||
|
|
||||||
&-collapsed-content {
|
&-collapsed-content {
|
||||||
margin-left: 0.7em;
|
margin-left: 0.7em;
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
||||||
--emoji-size: 14px;
|
--emoji-size: 1em;
|
||||||
|
|
||||||
.username {
|
.username {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
background-color: transparent !important;
|
background-color: transparent !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
--emoji-size: 14px;
|
--emoji-size: 1em;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
--_still-image-img-visibility: visible;
|
--_still-image-img-visibility: visible;
|
||||||
|
|
|
@ -72,7 +72,7 @@
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
|
||||||
--_still_image-label-scale: 0.25;
|
--_still_image-label-scale: 0.25;
|
||||||
--emoji-size: 14px;
|
--emoji-size: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-favicon {
|
.status-favicon {
|
||||||
|
|
|
@ -113,7 +113,7 @@
|
||||||
align-items: top;
|
align-items: top;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
|
||||||
--emoji-size: 16px;
|
--emoji-size: calc(var(--emojiSize, 32px) / 2);
|
||||||
|
|
||||||
& .body,
|
& .body,
|
||||||
& .attachments {
|
& .attachments {
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
.user-list-popover {
|
.user-list-popover {
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
|
|
||||||
--emoji-size: 16px;
|
--emoji-size: calc(var(--emojiSize, 32px) / 2);
|
||||||
|
|
||||||
.user-list-row {
|
.user-list-row {
|
||||||
padding: 0.25em;
|
padding: 0.25em;
|
||||||
|
|
Loading…
Reference in a new issue