mirror of https://github.com/vector-im/riot-web
Misc cleanup of whitespace
parent
a91963e5ee
commit
99f5b9e39b
|
@ -14,9 +14,6 @@ See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.mx_MemberStatusMessageAvatar {
|
|
||||||
}
|
|
||||||
|
|
||||||
.mx_MemberStatusMessageAvatar_contextMenu_message {
|
.mx_MemberStatusMessageAvatar_contextMenu_message {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
border-radius: 3px 0 0 3px;
|
border-radius: 3px 0 0 3px;
|
||||||
|
|
|
@ -126,8 +126,8 @@ const EntityTile = React.createClass({
|
||||||
let nameClasses = 'mx_EntityTile_name';
|
let nameClasses = 'mx_EntityTile_name';
|
||||||
if (this.props.showPresence) {
|
if (this.props.showPresence) {
|
||||||
presenceLabel = <PresenceLabel activeAgo={activeAgo}
|
presenceLabel = <PresenceLabel activeAgo={activeAgo}
|
||||||
currentlyActive={this.props.presenceCurrentlyActive}
|
currentlyActive={this.props.presenceCurrentlyActive}
|
||||||
presenceState={this.props.presenceState}/>;
|
presenceState={this.props.presenceState} />;
|
||||||
nameClasses += ' mx_EntityTile_name_hover';
|
nameClasses += ' mx_EntityTile_name_hover';
|
||||||
}
|
}
|
||||||
if (this.props.subtextLabel) {
|
if (this.props.subtextLabel) {
|
||||||
|
@ -135,9 +135,9 @@ const EntityTile = React.createClass({
|
||||||
}
|
}
|
||||||
nameEl = (
|
nameEl = (
|
||||||
<div className="mx_EntityTile_details">
|
<div className="mx_EntityTile_details">
|
||||||
<img className="mx_EntityTile_chevron" src="img/member_chevron.png" width="8" height="12"/>
|
<img className="mx_EntityTile_chevron" src="img/member_chevron.png" width="8" height="12" />
|
||||||
<EmojiText element="div" className={nameClasses} dir="auto">
|
<EmojiText element="div" className={nameClasses} dir="auto">
|
||||||
{name}
|
{ name }
|
||||||
</EmojiText>
|
</EmojiText>
|
||||||
{presenceLabel}
|
{presenceLabel}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue