1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-03 08:28:31 +00:00
* Added: Setting to control the display of animated emotes. Before you all get excited, this is for better integration with the `BetterTTV Emotes` add-on as well as any future add-ons with animated emotes.
* Added: Support for "Native Sort" for the emote menu, which uses the order from the API response.
* Added: Quick Navigation for the emote menu, which places a list of emote sets along the right side.
* Fixed: Skin tone picker for emoji in the emote menu not appearing correctly.
* Fixed: Center the FFZ Control Center correctly when opening it.
* Fixed: Modify the DOM we're emitting on clips pages for chat lines. Fixes night/betterttv#4416
* API Added: Support for animated images for emotes.
This commit is contained in:
SirStendec 2021-03-20 18:47:12 -04:00
parent 5a5a68adb6
commit fc359d53e0
12 changed files with 602 additions and 101 deletions

View file

@ -6,18 +6,20 @@
z-index: 99999999;
height: 50vh;
width: 50vw;
--width: #{"min(75vw, 128rem)"};
--height: #{"min(75vh, calc(0.75 * var(--width)))"};
top: #{"calc(calc(100vh - var(--height)) / 2)"};
left: #{"calc(calc(100vw - var(--width)) / 2)"};
min-width: 64rem;
min-height: 30rem;
--width: #{"min(75vw, 128rem)"};
width: 75vw;
width: var(--width);
height: 50vh;
height: #{"min(75vh, calc(0.75 * var(--width)))"};
height: var(--height);
> header {
cursor: move;

View file

@ -221,12 +221,20 @@
max-width: 100%;
width: auto;
}
}
.ffz-textarea--error:focus {
box-shadow: var(--shadow-input-error-focus);
}
&--error {
box-shadow: var(--shadow-input-error);
.ffz-textarea--no-resize {
resize: none;
&,&:focus {
border: var(--border-width-input) solid var(--color-border-input-error);
}
&:focus {
box-shadow: var(--shadow-input-error-focus);
}
}
&--no-resize {
resize: none;
}
}