1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-28 15:27:43 +00:00
* Added: Option to use the older, lighter input elements when using a dark theme. (Effectively reverts the recent Twitch change.)
* Fixed: Issue with the settings bridge failing to load when using a profile with a Current Monitor rule.
* Fixed: A few minor colors being applied incorrectly when using theme options.
* Fixed: No background being present behind certain elements, including most notably up-time in the directory.
This commit is contained in:
SirStendec 2023-04-27 17:30:58 -04:00
parent e6ad12c937
commit 67c64e6f7e
9 changed files with 45 additions and 16 deletions

View file

@ -45,7 +45,7 @@ export function generateUUID(input) {
}
export function sortScreens(screens) {
/*export function sortScreens(screens) {
screens.sort((a,b) => {
if ( a.left < b.left ) return -1;
if ( a.left > b.left ) return 1;
@ -54,7 +54,7 @@ export function sortScreens(screens) {
return 0;
});
return screens;
}
}*/
export function matchScreen(screens, options) {