You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-07 10:46:24 +03:00
remove room count leftovers
This commit is contained in:
@@ -59,15 +59,6 @@ limitations under the License.
|
|||||||
/* pointer-events: none; */
|
/* pointer-events: none; */
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomSubList_roomCount {
|
|
||||||
display: inline-block;
|
|
||||||
font-size: 12px;
|
|
||||||
font-weight: normal;
|
|
||||||
color: $accent-color;
|
|
||||||
padding-left: 5px;
|
|
||||||
text-transform: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mx_RoomSubList_badge {
|
.mx_RoomSubList_badge {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
min-width: 15px;
|
min-width: 15px;
|
||||||
@@ -155,10 +146,6 @@ limitations under the License.
|
|||||||
width: 28px; /* collapsed LHS Panel width */
|
width: 28px; /* collapsed LHS Panel width */
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomSubList_roomCount {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Hide the bottom of speech bubble */
|
/* Hide the bottom of speech bubble */
|
||||||
.mx_RoomSubList_badgeHighlight:after {
|
.mx_RoomSubList_badgeHighlight:after {
|
||||||
display: none;
|
display: none;
|
||||||
|
|||||||
@@ -300,9 +300,6 @@ const RoomSubList = React.createClass({
|
|||||||
let title;
|
let title;
|
||||||
if (this.props.collapsed) {
|
if (this.props.collapsed) {
|
||||||
title = this.props.label;
|
title = this.props.label;
|
||||||
if (roomCount !== '') {
|
|
||||||
title += " [" + roomCount + "]";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let incomingCall;
|
let incomingCall;
|
||||||
@@ -338,7 +335,6 @@ const RoomSubList = React.createClass({
|
|||||||
{ addRoomButton }
|
{ addRoomButton }
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
// <div className="mx_RoomSubList_roomCount">{ roomCount }</div>
|
|
||||||
},
|
},
|
||||||
|
|
||||||
render: function() {
|
render: function() {
|
||||||
|
|||||||
Reference in New Issue
Block a user