This commit is contained in:
Mirco Wittrien 2021-04-01 09:33:27 +02:00
parent 9529852f8d
commit 24a365bdb9
4 changed files with 11 additions and 3 deletions

View File

@ -66,7 +66,7 @@ module.exports = (_ => {
},
useChromium: {
value: false,
isDisabled: data => !LibraryRequires.electron || !LibraryRequires.electron.remote,
isHidden: data => !LibraryRequires.electron || !LibraryRequires.electron.remote,
getValue: data => !data.disabled
}
},
@ -8280,7 +8280,11 @@ module.exports = (_ => {
value: InternalBDFDB.settings.general[key],
nativeValue: nativeSetting
});
settingsItems.push(BDFDB.ReactUtils.createElement(InternalComponents.LibraryComponents.SettingsSaveItem, {
let hidden = typeof InternalBDFDB.defaults.general[key].isHidden == "function" && InternalBDFDB.defaults.general[key].isHidden({
value: InternalBDFDB.settings.general[key],
nativeValue: nativeSetting
});
if (!hidden) settingsItems.push(BDFDB.ReactUtils.createElement(InternalComponents.LibraryComponents.SettingsSaveItem, {
type: "Switch",
plugin: InternalBDFDB,
disabled: disabled,

View File

@ -4650,6 +4650,7 @@
}
},
"BDFDB_Patrons": {
"89482511343702016": {"active": true, "t3": false, "custom": false, "id": "AzukiPuddles"},
"341383936984875020": {"active": true, "t3": true, "custom": false, "id": "dannycoch (DaCo)"},
"811756093730586635": {"active": false, "t3": true, "custom": false, "id": "Namii (RiDeLo)"},
"121188168002174976": {"active": true, "t3": false, "custom": false, "id": "Aven (Syn)"},

View File

@ -949,7 +949,7 @@ img:not([src]), img[src=""], img[src="null"] {
align-items: center;
height: 36px !important;
border-radius: 0 !important;
transition: height 10s ease !important;
transition: height 0.5s ease !important;
}
[REPLACE_CLASS_noticeclosing] {
height: 0 !important;

View File

@ -3044,6 +3044,9 @@ body::before {
#app-mount .card-1o0mns { /* integrationsettings apps card */
border-color: rgba(var(--vtransparencycolor), 0.1)
}
#app-mount .card-11DMwv { /* integrationsettings follows card */
border-color: rgba(var(--vtransparencycolor), 0.1)
}
.iconWrapper-lS1uig { /* integrationsettings icon */
background-color: rgba(var(--vtransparencycolor), 0.4);
}