This commit is contained in:
Mirco Wittrien 2019-11-04 20:36:17 +01:00
parent 3aea7e2eee
commit b4babd0957
2 changed files with 2 additions and 16 deletions

View File

@ -6300,20 +6300,6 @@ var BDFDB = {
}
} : LibraryComponents.Table;
LibraryComponents.TableSortIcon = reactInitialized ? class BDFDB_TableSortIcon extends LibraryModules.React.Component {
render() {
let name;
switch (this.props.sortDirection) {
case LibraryComponents.Table.SortDirection.ASCENDING: name = LibraryComponents.SvgIcon.Names.ARROW_DROP_UP; break;
case LibraryComponents.Table.SortDirection.DESCENDING: name = LibraryComponents.SvgIcon.Names.ARROW_DROP_DOWN; break;
}
return !name ? null : BDFDB.ReactUtils.createElement(LibraryComponents.SvgIcon, {
name: name,
className: BDFDB.disCN.tableheadersorticon
});
}
} : LibraryComponents.TableSortIcon;
LibraryComponents.TextElement = BDFDB.ModuleUtils.findByName("Text");
LibraryComponents.TextInput = reactInitialized ? class BDFDB_TextInput extends LibraryModules.React.Component {
@ -6942,6 +6928,7 @@ var BDFDB = {
}
${BDFDB.dotCN.tablestickyheader}:first-child {
position: absolute;
width: 100%;
}
${BDFDB.dotCNS.modalsubinner + BDFDB.dotCN.tablestickyheader}:first-child {
padding-left: 20px;
@ -6949,7 +6936,6 @@ var BDFDB = {
${BDFDB.dotCN.tableheadercell} {
text-transform: uppercase;
color: var(--interactive-normal);
flex: 1 1 auto;
}
${BDFDB.dotCN.tableheadercell},
${BDFDB.dotCN.tablebodycell} {

File diff suppressed because one or more lines are too long