mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-09-16 18:06:55 +00:00
4.20.60
* Added: Backup and Restore now supports backing up any binary data stored in FFZ settings, creating a `zip` file rather than a `json` file. * Fixed: Remove dead code from the `clear-settings` menu component. * Changed: Update the theme mapping to include missing elements. * Changed: Data Management > Storage >> Provider now indicates if a provider supports storing binary data. * Changed: Update the link-parsing regex to match Twitch. Currently under limited roll-out while ensuring the implementation is bug-free. * API Added: `setting-hotkey` now functions as would be expected and can be used. * API Changed: A setting's `onUIChange` method now has the Vue component as its second argument, for getting any necessary state from the settings UI. * API Changed: Providers now sanity check the format of Blobs before storing them.
This commit is contained in:
parent
5412a928a1
commit
2c5937c8af
20 changed files with 574 additions and 138 deletions
|
@ -4,6 +4,7 @@
|
|||
@import "./widgets/menu-container.scss";
|
||||
@import "./widgets/tab-container.scss";
|
||||
|
||||
@import "./widgets/key-picker.scss";
|
||||
@import "./widgets/menu-tree.scss";
|
||||
@import "./widgets/profile-selector.scss";
|
||||
@import "./widgets/badge-visibility.scss";
|
||||
|
@ -359,13 +360,18 @@ textarea.tw-input {
|
|||
background-color: transparent !important;
|
||||
color: #000 !important;
|
||||
|
||||
@include button-colors(#6441a4, #9a7fcc, #fff, #7d5bbc);
|
||||
@include button-colors(
|
||||
var(--color-background-button-hover),
|
||||
var(--color-border-button-hover),
|
||||
var(--color-text-button-hover),
|
||||
var(--color-border-button-hover)
|
||||
);
|
||||
|
||||
.tw-root--theme-dark & {
|
||||
border-color: #424242 !important;
|
||||
color: #dadada !important;
|
||||
|
||||
@include button-colors(#7d5bbe, #9a7fcc, #eeeeee, #7d5bbe)
|
||||
//@include button-colors(#7d5bbe, #9a7fcc, #eeeeee, #7d5bbe)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue