Fix MFM functions x2, x3, and x4
All checks were successful
ci/woodpecker/pr/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/pr/woodpecker Pipeline was successful
These now work for the new, FEP-c16b compliant, representation Nesting also works It already worked for text and "normal" emoji, but now it also works for custom emoji
This commit is contained in:
parent
56a59e1b55
commit
ba4ae5badb
2 changed files with 29 additions and 0 deletions
|
@ -12,6 +12,7 @@
|
|||
}
|
||||
.emoji {
|
||||
--_still_image-label-scale: 0.5;
|
||||
/* NOTE: We also use this value hard-coded in src/components/status_content/mfm.scss */
|
||||
--emoji-size: 38px;
|
||||
}
|
||||
|
||||
|
|
|
@ -63,14 +63,35 @@
|
|||
|
||||
.mfm-x2 {
|
||||
--mfm-zoom-size: 200%;
|
||||
/*
|
||||
emoji is normally 38px (see src/components/status_body/status_body.scss
|
||||
we want x2 to be ~100px, so we enlarge (100px/38px) ~= 2.63
|
||||
*/
|
||||
.emoji {
|
||||
--mfm-emoji-zoom-size: 2.63;
|
||||
}
|
||||
}
|
||||
|
||||
.mfm-x3 {
|
||||
--mfm-zoom-size: 400%;
|
||||
/*
|
||||
emoji is normally 38px (see src/components/status_body/status_body.scss
|
||||
we want x3 to be ~150px, so we enlarge (150px/38px) ~= 3.95
|
||||
*/
|
||||
.emoji {
|
||||
--mfm-emoji-zoom-size: 3.95;
|
||||
}
|
||||
}
|
||||
|
||||
.mfm-x4 {
|
||||
--mfm-zoom-size: 600%;
|
||||
/*
|
||||
emoji is normally 38px (see src/components/status_body/status_body.scss
|
||||
we want x4 to be ~200px, so we enlarge (200px/38px) ~= 5.26
|
||||
*/
|
||||
.emoji {
|
||||
--mfm-emoji-zoom-size: 5.26;
|
||||
}
|
||||
}
|
||||
|
||||
.mfm-x2,
|
||||
|
@ -78,6 +99,10 @@
|
|||
.mfm-x4,
|
||||
.mfm-tada {
|
||||
font-size: var(--mfm-zoom-size);
|
||||
.emoji {
|
||||
--nested-emoji-base-size: calc(var(--emoji-size) * var(--mfm-emoji-zoom-size));
|
||||
height: var(--nested-emoji-base-size);
|
||||
}
|
||||
|
||||
.mfm-x2,
|
||||
.mfm-x3,
|
||||
|
@ -85,6 +110,9 @@
|
|||
.mfm-tada {
|
||||
/* only half effective */
|
||||
font-size: calc(var(--mfm-zoom-size) / 2 + 50%);
|
||||
.emoji {
|
||||
height: calc(var(--nested-emoji-base-size) * var(--mfm-emoji-zoom-size) / 2);
|
||||
}
|
||||
|
||||
.mfm-x2,
|
||||
.mfm-x3,
|
||||
|
|
Loading…
Reference in a new issue