diff --git a/res/css/views/rooms/_RoomList.scss b/res/css/views/rooms/_RoomList.scss index 7abf86cb0e..c23c19699d 100644 --- a/res/css/views/rooms/_RoomList.scss +++ b/res/css/views/rooms/_RoomList.scss @@ -15,10 +15,6 @@ See the License for the specific language governing permissions and limitations under the License. */ -.mx_RoomList2_resizer { - cursor: ns-resize; -} - .mx_RoomList.mx_RoomList2 { overflow-y: auto; } diff --git a/res/css/views/rooms/_RoomSublist2.scss b/res/css/views/rooms/_RoomSublist2.scss index 1dfaf3fb1a..9ab1785566 100644 --- a/res/css/views/rooms/_RoomSublist2.scss +++ b/res/css/views/rooms/_RoomSublist2.scss @@ -17,5 +17,5 @@ limitations under the License. @import "../../../../node_modules/react-resizable/css/styles.css"; .mx_RoomList2 .mx_RoomSubList_labelContainer { - z-index: 12; + z-index: 12; } diff --git a/src/components/views/rooms/RoomSublist2.tsx b/src/components/views/rooms/RoomSublist2.tsx index a64f4bf6ba..548166815f 100644 --- a/src/components/views/rooms/RoomSublist2.tsx +++ b/src/components/views/rooms/RoomSublist2.tsx @@ -239,17 +239,15 @@ export default class RoomSublist2 extends React.Component { // we +1 to account for the room we're about to hide with our 'show more' button const numMissing = (tiles.length - visibleTiles.length) + 1; - // TODO: Copy TBD // TODO: CSS TBD - // TODO: Show N more instead of infinity more? - // TODO: Safely use the same height of a tile, not hardcoded hacks + // TODO: Make this an actual tile visibleTiles.splice(visibleTiles.length - 1, 1, (
- {_t("Show %(n)s more rooms", {n: numMissing})} + {_t("Show %(n)s more", {n: numMissing})}
)); } @@ -260,7 +258,6 @@ export default class RoomSublist2 extends React.Component { axis="y" minConstraints={[-1, minTilesPx]} maxConstraints={[-1, maxTilesPx]} - draggableOpts={{grid: [-1, 1]}} resizeHandles={handles} onResize={this.onResize} className="mx_RoomSublist2_resizeBox" diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index 884192b22a..0aa4c3779e 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -1136,7 +1136,7 @@ "Jump to first unread room.": "Jump to first unread room.", "Jump to first invite.": "Jump to first invite.", "Add room": "Add room", - "Show %(n)s more rooms": "Show %(n)s more rooms", + "Show %(n)s more": "Show %(n)s more", "Options": "Options", "%(count)s unread messages including mentions.|other": "%(count)s unread messages including mentions.", "%(count)s unread messages including mentions.|one": "1 unread mention.",