mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Changed the overflow tile styling, but there is no collpased state or mention count yet
This commit is contained in:
parent
24d0b95cb2
commit
737d1d8843
@ -424,12 +424,20 @@ var RoomSubList = React.createClass({
|
|||||||
_createOverflowTile: function(overflowCount, totalCount) {
|
_createOverflowTile: function(overflowCount, totalCount) {
|
||||||
var BaseAvatar = sdk.getComponent('avatars.BaseAvatar');
|
var BaseAvatar = sdk.getComponent('avatars.BaseAvatar');
|
||||||
// XXX: this is duplicated from RoomTile - factor it out
|
// XXX: this is duplicated from RoomTile - factor it out
|
||||||
|
// return (
|
||||||
|
// <div className="mx_RoomTile mx_RoomTile_ellipsis" onClick={this._showFullMemberList}>
|
||||||
|
// <div className="mx_RoomTile_avatar">
|
||||||
|
// <BaseAvatar url="img/ellipsis.svg" name="..." width={24} height={24} />
|
||||||
|
// </div>
|
||||||
|
// <div className="mx_RoomTile_name">and { overflowCount } others...</div>
|
||||||
|
// </div>
|
||||||
|
// );
|
||||||
return (
|
return (
|
||||||
<div className="mx_RoomTile mx_RoomTile_ellipsis" onClick={this._showFullMemberList}>
|
<div className="mx_RoomTile mx_RoomTile_ellipsis" onClick={this._showFullMemberList}>
|
||||||
<div className="mx_RoomTile_avatar">
|
<div className="mx_RoomTile_line"></div>
|
||||||
<BaseAvatar url="img/ellipsis.svg" name="..." width={24} height={24} />
|
<div className="mx_RoomTile_more">more</div>
|
||||||
</div>
|
<div className="mx_RoomTile_moreBadge"></div>
|
||||||
<div className="mx_RoomTile_name">and { overflowCount } others...</div>
|
<div className="mx_RoomTile_chevronDown"></div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
@ -113,9 +113,61 @@ limitations under the License.
|
|||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomTile_ellipsis .mx_RoomTile_name {
|
.mx_RoomTile_ellipsis {
|
||||||
font-style: italic;
|
line-height: 11px;
|
||||||
color: #454545;
|
height: auto;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_RoomTile_line {
|
||||||
|
display: inline-block;
|
||||||
|
width: 159px;
|
||||||
|
border-top: dotted 2px #76cfa6;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_RoomTile_more {
|
||||||
|
display: inline-block;
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-size: 10px;
|
||||||
|
font-weight: 600;
|
||||||
|
text-align: left;
|
||||||
|
color: #76cfa6;
|
||||||
|
padding-left: 7px;
|
||||||
|
padding-right: 7px;
|
||||||
|
padding-left: 7px;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_RoomTile_moreBadge {
|
||||||
|
display: inline-block;
|
||||||
|
min-width: 15px;
|
||||||
|
height: 13px;
|
||||||
|
position: absolute;
|
||||||
|
right: 8px; /*gutter */
|
||||||
|
top: -2px;
|
||||||
|
border-radius: 8px;
|
||||||
|
border: solid 1px #76cfa6;
|
||||||
|
color: #fff;
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 10px;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 1px;
|
||||||
|
padding-left: 4px;
|
||||||
|
padding-right: 4px;
|
||||||
|
background-color: #fff;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_RoomTile_chevronDown {
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
border-left: 5px solid transparent;
|
||||||
|
border-right: 5px solid transparent;
|
||||||
|
border-top: 6px solid #76cfa6;
|
||||||
|
position: absolute;
|
||||||
|
top: 4px;
|
||||||
|
right: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomTile_invite {
|
.mx_RoomTile_invite {
|
||||||
|
@ -147,3 +147,4 @@ limitations under the License.
|
|||||||
border-left: 6px solid #76cfa6;
|
border-left: 6px solid #76cfa6;
|
||||||
border-bottom: 5px solid transparent;
|
border-bottom: 5px solid transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user