Merge pull request #3908 from matrix-org/zip/11935-room-list-decoration

Room list reflects encryption state
This commit is contained in:
Zoe 2020-01-24 11:14:53 +00:00 committed by GitHub
commit 1d686fe49e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 118 additions and 2 deletions

View file

@ -21,8 +21,10 @@ limitations under the License.
.mx_E2EIcon {
margin: 0;
position: absolute;
bottom: 0;
right: -5px;
bottom: -1px;
right: -2px;
height: 10px;
width: 10px
}
}

View file

@ -98,6 +98,19 @@ limitations under the License.
z-index: 2;
}
// Note we match .mx_E2EIcon to make sure this matches more tightly than just
// .mx_E2EIcon on its own
.mx_RoomTile_e2eIcon.mx_E2EIcon {
height: 10px;
width: 10px;
display: block;
position: absolute;
bottom: -1px;
right: -2px;
z-index: 1;
margin: 0;
}
.mx_RoomTile_name {
font-size: 14px;
padding: 0 6px;