"Knowing who you are"

Work on issue #128.
This commit is contained in:
N-Pex 2021-06-17 20:56:25 +02:00
parent 36ca5b50ff
commit 18f1945c19
10 changed files with 323 additions and 61 deletions

View file

@ -33,6 +33,18 @@ $admin-fg: white;
margin-top: $chat-standard-padding-xs;
margin-bottom: $chat-standard-padding-xs;
}
.v-btn.avatar {
font-family: "Inter", sans-serif;
font-weight: 700;
font-size: 11 * $chat-text-size;
color: black;
background-color: white !important;
border: 1px solid black;
border-radius: $chat-standard-padding / 2;
height: $chat-standard-padding;
margin-top: $chat-standard-padding-xs;
margin-bottom: $chat-standard-padding-xs;
}
}
.room-list-notification-count {
@ -718,20 +730,29 @@ $admin-fg: white;
font-weight: bold;
margin-left: 10px;
}
}
.action {
padding: 4px 20px;
cursor: pointer;
&::after {
/* divider */
content: " ";
display: block;
margin: 10px 0px;
bottom: 0px;
height: 1px;
background-color: #e1e1e1;
width: 100%;
}
.action-row {
padding: 4px 20px;
cursor: pointer;
height: 55px;
font-family: "Inter", sans-serif;
font-size: 19px;
color: black;
position: relative;
.v-icon {
color: black !important;
}
&:not(:last-of-type):after {
/* divider */
position: absolute;
content: " ";
display: block;
margin: 0px 10px;
bottom: 0px;
height: 1px;
background-color: #e1e1e1;
width: 100%;
}
}
@ -867,3 +888,13 @@ $admin-fg: white;
vertical-align: middle;
padding-top: 10px;
}
.avatar-32 {
font-size: 18 * $chat-text-size !important;
&.clickable {
cursor: pointer;
&:hover {
opacity: 0.7;
}
}
}