stuff
This commit is contained in:
parent
9529852f8d
commit
24a365bdb9
|
@ -66,7 +66,7 @@ module.exports = (_ => {
|
||||||
},
|
},
|
||||||
useChromium: {
|
useChromium: {
|
||||||
value: false,
|
value: false,
|
||||||
isDisabled: data => !LibraryRequires.electron || !LibraryRequires.electron.remote,
|
isHidden: data => !LibraryRequires.electron || !LibraryRequires.electron.remote,
|
||||||
getValue: data => !data.disabled
|
getValue: data => !data.disabled
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -8280,7 +8280,11 @@ module.exports = (_ => {
|
||||||
value: InternalBDFDB.settings.general[key],
|
value: InternalBDFDB.settings.general[key],
|
||||||
nativeValue: nativeSetting
|
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",
|
type: "Switch",
|
||||||
plugin: InternalBDFDB,
|
plugin: InternalBDFDB,
|
||||||
disabled: disabled,
|
disabled: disabled,
|
||||||
|
|
|
@ -4650,6 +4650,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"BDFDB_Patrons": {
|
"BDFDB_Patrons": {
|
||||||
|
"89482511343702016": {"active": true, "t3": false, "custom": false, "id": "AzukiPuddles"},
|
||||||
"341383936984875020": {"active": true, "t3": true, "custom": false, "id": "dannycoch (DaCo)"},
|
"341383936984875020": {"active": true, "t3": true, "custom": false, "id": "dannycoch (DaCo)"},
|
||||||
"811756093730586635": {"active": false, "t3": true, "custom": false, "id": "Namii (RiDeLo)"},
|
"811756093730586635": {"active": false, "t3": true, "custom": false, "id": "Namii (RiDeLo)"},
|
||||||
"121188168002174976": {"active": true, "t3": false, "custom": false, "id": "Aven (Syn)"},
|
"121188168002174976": {"active": true, "t3": false, "custom": false, "id": "Aven (Syn)"},
|
||||||
|
|
|
@ -949,7 +949,7 @@ img:not([src]), img[src=""], img[src="null"] {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
height: 36px !important;
|
height: 36px !important;
|
||||||
border-radius: 0 !important;
|
border-radius: 0 !important;
|
||||||
transition: height 10s ease !important;
|
transition: height 0.5s ease !important;
|
||||||
}
|
}
|
||||||
[REPLACE_CLASS_noticeclosing] {
|
[REPLACE_CLASS_noticeclosing] {
|
||||||
height: 0 !important;
|
height: 0 !important;
|
||||||
|
|
|
@ -3044,6 +3044,9 @@ body::before {
|
||||||
#app-mount .card-1o0mns { /* integrationsettings apps card */
|
#app-mount .card-1o0mns { /* integrationsettings apps card */
|
||||||
border-color: rgba(var(--vtransparencycolor), 0.1)
|
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 */
|
.iconWrapper-lS1uig { /* integrationsettings icon */
|
||||||
background-color: rgba(var(--vtransparencycolor), 0.4);
|
background-color: rgba(var(--vtransparencycolor), 0.4);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue