Give the show more button some real CSS
This is still somewhat placeholder.pull/21833/head
parent
6752c2832e
commit
475ba61671
|
@ -38,5 +38,14 @@ limitations under the License.
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
|
.mx_RoomSublist2_showMoreButton {
|
||||||
|
height: 44px; // 1 room tile high
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
// We create a flexbox to cheat at alignment
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -237,11 +237,10 @@ export default class RoomSublist2 extends React.Component<IProps, IState> {
|
||||||
|
|
||||||
// TODO: CSS TBD
|
// TODO: CSS TBD
|
||||||
// TODO: Make this an actual tile
|
// TODO: Make this an actual tile
|
||||||
const moreTileHeightPx = layout.tileHeight;
|
|
||||||
visibleTiles.splice(visibleTiles.length - 1, 1, (
|
visibleTiles.splice(visibleTiles.length - 1, 1, (
|
||||||
<div
|
<div
|
||||||
onClick={this.onShowAllClick}
|
onClick={this.onShowAllClick}
|
||||||
style={{height: moreTileHeightPx, lineHeight: moreTileHeightPx, cursor: 'pointer'}}
|
className='mx_RoomSublist2_showMoreButton'
|
||||||
key='showall'
|
key='showall'
|
||||||
>
|
>
|
||||||
{_t("Show %(n)s more", {n: numMissing})}
|
{_t("Show %(n)s more", {n: numMissing})}
|
||||||
|
|
Loading…
Reference in New Issue