stuff
This commit is contained in:
parent
879c336207
commit
3e17b04b63
File diff suppressed because one or more lines are too long
|
@ -497,7 +497,7 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins ? BDFDB.myPlugins : {}, BDv2Api
|
|||
BDFDB.addClass(tooltipinner, BDFDB.disCN['tooltip' + options.type.toLowerCase()]);
|
||||
tooltipinner.appendChild(BDFDB.htmlToElement(`<div class="${BDFDB.disCN.tooltippointer}"></div>`));
|
||||
}
|
||||
if (tooltipinner.style.borderColor && tooltipinner.style.backgroundColor) BDFDB.addClass(tooltipinner, 'tooltip-customcolor');
|
||||
if (tooltipinner.style.getPropertyValue("border-color") && (tooltipinner.style.getPropertyValue("background-color") || tooltipinner.style.getPropertyValue("background-image"))) BDFDB.addClass(tooltipinner, 'tooltip-customcolor');
|
||||
else if (options.color && BDFDB.disCN['tooltip' + options.color.toLowerCase()]) BDFDB.addClass(tooltipinner, BDFDB.disCN['tooltip' + options.color.toLowerCase()]);
|
||||
else BDFDB.addClass(tooltipinner, BDFDB.disCN.tooltipblack);
|
||||
tooltips.appendChild(tooltip);
|
||||
|
|
|
@ -91,9 +91,9 @@ class ShowHiddenChannels {
|
|||
showAllowedUsers: {value:true, inner:true, description:"Specifically allowed Users:"},
|
||||
showDeniedRoles: {value:true, inner:true, description:"Denied Roles:"},
|
||||
showDeniedUsers: {value:true, inner:true, description:"Specifically denied Users:"},
|
||||
showTopic: {value:false, inner:true, description:"The Topic of the Channel:"},
|
||||
showChannelCategory: {value:false, inner:true, description:"The Category of the Channel:"},
|
||||
showVoiceUsers: {value:false, inner:true, description:"All currently connected Users of a Voice Channel:"}
|
||||
showTopic: {value:false, inner:true, description:"The Topic of the Channel (only for hidden):"},
|
||||
showChannelCategory: {value:false, inner:true, description:"The Category of the Channel (only for hidden):"},
|
||||
showVoiceUsers: {value:false, inner:true, description:"All currently connected Users of a Voice Channel (only for hidden/locked):"}
|
||||
},
|
||||
amounts: {
|
||||
hoverDelay: {value:0, min:0, description:"Tooltip delay in millisec:"}
|
||||
|
|
Loading…
Reference in New Issue