stuff
This commit is contained in:
parent
60ba2b697d
commit
b2962f2095
|
@ -2,7 +2,7 @@
|
||||||
* @name BDFDB
|
* @name BDFDB
|
||||||
* @author DevilBro
|
* @author DevilBro
|
||||||
* @authorId 278543574059057154
|
* @authorId 278543574059057154
|
||||||
* @version 2.3.5
|
* @version 2.3.6
|
||||||
* @description Required Library for DevilBro's Plugins
|
* @description Required Library for DevilBro's Plugins
|
||||||
* @invite Jx3TjNS
|
* @invite Jx3TjNS
|
||||||
* @donate https://www.paypal.me/MircoWittrien
|
* @donate https://www.paypal.me/MircoWittrien
|
||||||
|
@ -19,7 +19,7 @@ module.exports = (_ => {
|
||||||
"info": {
|
"info": {
|
||||||
"name": "BDFDB",
|
"name": "BDFDB",
|
||||||
"author": "DevilBro",
|
"author": "DevilBro",
|
||||||
"version": "2.3.5",
|
"version": "2.3.6",
|
||||||
"description": "Required Library for DevilBro's Plugins"
|
"description": "Required Library for DevilBro's Plugins"
|
||||||
},
|
},
|
||||||
"rawUrl": "https://mwittrien.github.io/BetterDiscordAddons/Library/0BDFDB.plugin.js"
|
"rawUrl": "https://mwittrien.github.io/BetterDiscordAddons/Library/0BDFDB.plugin.js"
|
||||||
|
@ -932,7 +932,7 @@ module.exports = (_ => {
|
||||||
let app = document.querySelector(BDFDB.dotCN.app);
|
let app = document.querySelector(BDFDB.dotCN.app);
|
||||||
if (!app) return;
|
if (!app) return;
|
||||||
BDFDB.DOMUtils.addClass(icon, BDFDB.disCN.loadingicon);
|
BDFDB.DOMUtils.addClass(icon, BDFDB.disCN.loadingicon);
|
||||||
let loadingIconWrapper = document.querySelector(BDFDB.dotCN.app + ">" + BDFDB.dotCN.loadingiconwrapper)
|
let loadingIconWrapper = document.querySelector(BDFDB.dotCN.app + ">" + BDFDB.dotCN.loadingiconwrapper);
|
||||||
if (!loadingIconWrapper) {
|
if (!loadingIconWrapper) {
|
||||||
loadingIconWrapper = BDFDB.DOMUtils.create(`<div class="${BDFDB.disCN.loadingiconwrapper}"></div>`);
|
loadingIconWrapper = BDFDB.DOMUtils.create(`<div class="${BDFDB.disCN.loadingiconwrapper}"></div>`);
|
||||||
app.appendChild(loadingIconWrapper);
|
app.appendChild(loadingIconWrapper);
|
||||||
|
@ -1922,7 +1922,7 @@ module.exports = (_ => {
|
||||||
BDFDB.TooltipUtils = {};
|
BDFDB.TooltipUtils = {};
|
||||||
BDFDB.TooltipUtils.create = function (anker, text, config = {}) {
|
BDFDB.TooltipUtils.create = function (anker, text, config = {}) {
|
||||||
if (!text && !config.guild) return null;
|
if (!text && !config.guild) return null;
|
||||||
const itemLayerContainer = document.querySelector(BDFDB.dotCN.appmount + " > " + BDFDB.dotCN.itemlayercontainer);
|
const itemLayerContainer = document.querySelector(BDFDB.dotCN.app + " ~ " + BDFDB.dotCNC.itemlayercontainer + BDFDB.dotCN.itemlayercontainer);
|
||||||
if (!itemLayerContainer || !Node.prototype.isPrototypeOf(anker) || !document.contains(anker)) return null;
|
if (!itemLayerContainer || !Node.prototype.isPrototypeOf(anker) || !document.contains(anker)) return null;
|
||||||
const id = BDFDB.NumberUtils.generateId(Tooltips);
|
const id = BDFDB.NumberUtils.generateId(Tooltips);
|
||||||
const itemLayer = BDFDB.DOMUtils.create(`<div class="${BDFDB.disCNS.itemlayer + BDFDB.disCN.itemlayerdisabledpointerevents}"><div class="${BDFDB.disCN.tooltip}" tooltip-id="${id}"><div class="${BDFDB.disCN.tooltipcontent}"></div><div class="${BDFDB.disCN.tooltippointer}"></div></div></div>`);
|
const itemLayer = BDFDB.DOMUtils.create(`<div class="${BDFDB.disCNS.itemlayer + BDFDB.disCN.itemlayerdisabledpointerevents}"><div class="${BDFDB.disCN.tooltip}" tooltip-id="${id}"><div class="${BDFDB.disCN.tooltipcontent}"></div><div class="${BDFDB.disCN.tooltippointer}"></div></div></div>`);
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4234,7 +4234,7 @@ html .typingindicator-folder {
|
||||||
|
|
||||||
/* ~~~~ 14. WATERMARK ~~~~ */
|
/* ~~~~ 14. WATERMARK ~~~~ */
|
||||||
|
|
||||||
html:only-child > head + body > div#app-mount.appMount-2yBXZl > div.typeWindows-2-g3UY.titleBar-1it3bQ.horizontalReverse-2QssvL.flex-3BkGQD.directionRowReverse-HZatnx.justifyStart-2Mwniq.alignStretch-Uwowzr > div.wordmark-2u86JB {
|
html:only-child > head + body div.typeWindows-2-g3UY.titleBar-1it3bQ.horizontalReverse-2QssvL.flex-3BkGQD.directionRowReverse-HZatnx.justifyStart-2Mwniq.alignStretch-Uwowzr > div.wordmark-2u86JB {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
position: absolute !important;
|
position: absolute !important;
|
||||||
max-width: unset !important;
|
max-width: unset !important;
|
||||||
|
|
Loading…
Reference in New Issue