mirror of
https://github.com/element-hq/element-web.git
synced 2024-11-30 23:31:28 +03:00
85 lines
1.9 KiB
SCSS
85 lines
1.9 KiB
SCSS
/*
|
|
Copyright 2019, 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
.mx_DMInviteDialog_addressBar {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
.mx_DMInviteDialog_editor {
|
|
flex: 1;
|
|
width: 100%; // Needed to make the Field inside grow
|
|
}
|
|
|
|
.mx_Field {
|
|
margin: 0;
|
|
}
|
|
|
|
.mx_DMInviteDialog_goButton {
|
|
width: 48px;
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
|
|
.mx_DMInviteDialog_section {
|
|
padding-bottom: 10px;
|
|
|
|
h3 {
|
|
font-size: 12px;
|
|
color: $muted-fg-color;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
}
|
|
}
|
|
|
|
.mx_DMInviteDialog_roomTile {
|
|
cursor: pointer;
|
|
padding: 5px 10px;
|
|
|
|
&:hover {
|
|
background-color: $user-tile-hover-bg-color;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
* {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.mx_DMInviteDialog_roomTile_name {
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
color: $primary-fg-color;
|
|
margin-left: 7px;
|
|
}
|
|
|
|
.mx_DMInviteDialog_roomTile_userId {
|
|
font-size: 12px;
|
|
color: $muted-fg-color;
|
|
margin-left: 7px;
|
|
}
|
|
|
|
.mx_DMInviteDialog_roomTile_time {
|
|
text-align: right;
|
|
font-size: 12px;
|
|
color: $muted-fg-color;
|
|
float: right;
|
|
line-height: 36px; // Height of the avatar to keep the time vertically aligned
|
|
}
|
|
|
|
.mx_DMInviteDialog_roomTile_highlight {
|
|
font-weight: 900;
|
|
}
|
|
}
|
|
|