stuff
This commit is contained in:
parent
c4dee01912
commit
b5e0da0841
|
@ -8223,7 +8223,7 @@
|
|||
|
||||
InternalComponents.LibraryComponents.ListRow = InternalBDFDB.loadPatchedComp("ListRow") || reactInitialized && class BDFDB_ListRow extends LibraryModules.React.Component {
|
||||
render () {
|
||||
return BDFDB.ReactUtils.createElement("div", BDFDB.ObjectUtils.exclude(Object.assign({
|
||||
return BDFDB.ReactUtils.createElement("div", BDFDB.ObjectUtils.exclude(Object.assign({}, this.props, {
|
||||
className: BDFDB.DOMUtils.formatClassName(BDFDB.disCN.listrowwrapper, this.props.className, BDFDB.disCN.listrow),
|
||||
children: [
|
||||
this.props.prefix,
|
||||
|
@ -8244,7 +8244,7 @@
|
|||
}),
|
||||
this.props.suffix
|
||||
].filter(n => n)
|
||||
}, this.props), "label", "note", "suffix", "prefix", "labelClassName"));
|
||||
}), "label", "note", "suffix", "prefix", "labelClassName"));
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -9574,6 +9574,8 @@
|
|||
InternalComponents.LibraryComponents.UserPopoutContainer = InternalBDFDB.loadPatchedComp("UserPopoutContainer") || reactInitialized && class BDFDB_UserPopoutContainer extends LibraryModules.React.Component {
|
||||
render() {
|
||||
return BDFDB.ReactUtils.createElement(InternalComponents.LibraryComponents.PopoutContainer, BDFDB.ObjectUtils.exclude(Object.assign({}, this.props, {
|
||||
wrap: false,
|
||||
children: this.props.children,
|
||||
renderPopout: instance => {
|
||||
return BDFDB.ReactUtils.createElement(BDFDB.ModuleUtils.findByName("FluxContainer(ForwardRef(SubscribeGuildMembersContainer(UserPopout)))"), {
|
||||
userId: this.props.userId,
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4005,6 +4005,35 @@ body:before {
|
|||
|
||||
/* ~~~~ 14. POPOUTS ~~~~ */
|
||||
|
||||
|
||||
.layer-v9HyYc:nth-child(1) {
|
||||
z-index: 1002;
|
||||
}
|
||||
.layer-v9HyYc:nth-child(2) {
|
||||
z-index: 1003;
|
||||
}
|
||||
.layer-v9HyYc:nth-child(3) {
|
||||
z-index: 1004;
|
||||
}
|
||||
.layer-v9HyYc:nth-child(4) {
|
||||
z-index: 1005;
|
||||
}
|
||||
.layer-v9HyYc:nth-child(5) {
|
||||
z-index: 1006;
|
||||
}
|
||||
.layer-v9HyYc:nth-child(6) {
|
||||
z-index: 1007;
|
||||
}
|
||||
.layer-v9HyYc:nth-child(7) {
|
||||
z-index: 1008;
|
||||
}
|
||||
.layer-v9HyYc:nth-child(8) {
|
||||
z-index: 1009;
|
||||
}
|
||||
.layer-v9HyYc:nth-child(9) {
|
||||
z-index: 1010;
|
||||
}
|
||||
|
||||
#app-mount .popout-2iWAc-:not(.noShadow-3pu20z) {
|
||||
box-shadow: 0 0 1px rgba(var(--vtransparencycolor), 0.2), 0 1px 4px rgba(var(--vtransparencycolor), 0.1);
|
||||
}
|
||||
|
@ -4179,7 +4208,6 @@ body:before {
|
|||
.submenu-2-ysNh { /* contextmenu submenu */
|
||||
background: transparent;
|
||||
box-shadow: 0 0 0 1px rgba(var(--vtransparencycolor), 0.3), 0 2px 10px 0 rgba(var(--vtransparencycolor), 0.3);
|
||||
z-index: 1;
|
||||
}
|
||||
.styleFlexible-wGDiIL:after,
|
||||
.styleFlexible-wGDiIL:before,
|
||||
|
@ -5044,13 +5072,12 @@ body:before {
|
|||
border-radius: 0 0 5px 5px;
|
||||
color: rgb(var(--fontwhite3));
|
||||
}
|
||||
#app-mount .row-rrHHJU, /* popout row */
|
||||
#app-mount .row-rrHHJU span { /* popout rowspan */
|
||||
color: rgb(var(--fontwhite2));
|
||||
}
|
||||
#app-mount .row-rrHHJU.selected-1pIgLL {
|
||||
.row-rrHHJU:focus .rowInner-1vvRiF,
|
||||
.row-rrHHJU:hover .rowInner-1vvRiF {
|
||||
background: rgba(var(--vtransparencycolor), 0.2);
|
||||
border-radius: 0 5px 5px 0;
|
||||
}
|
||||
.row-rrHHJU.selected-1pIgLL .rowInner-1vvRiF {
|
||||
background: rgba(var(--vtransparencycolor), 0.4);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue