Undo formatting/stylistic changes
Signed-off-by: RMidhunSuresh <rmidhunsuresh@gmail.com>
This commit is contained in:
parent
3273682155
commit
8d254c91e3
4 changed files with 65 additions and 83 deletions
|
@ -47,37 +47,14 @@ limitations under the License.
|
|||
color: white;
|
||||
}
|
||||
|
||||
.hydrogen .avatar.usercolor1 {
|
||||
background-color: var(--usercolor1);
|
||||
}
|
||||
|
||||
.hydrogen .avatar.usercolor2 {
|
||||
background-color: var(--usercolor2);
|
||||
}
|
||||
|
||||
.hydrogen .avatar.usercolor3 {
|
||||
background-color: var(--usercolor3);
|
||||
}
|
||||
|
||||
.hydrogen .avatar.usercolor4 {
|
||||
background-color: var(--usercolor4);
|
||||
}
|
||||
|
||||
.hydrogen .avatar.usercolor5 {
|
||||
background-color: var(--usercolor5);
|
||||
}
|
||||
|
||||
.hydrogen .avatar.usercolor6 {
|
||||
background-color: var(--usercolor6);
|
||||
}
|
||||
|
||||
.hydrogen .avatar.usercolor7 {
|
||||
background-color: var(--usercolor7);
|
||||
}
|
||||
|
||||
.hydrogen .avatar.usercolor8 {
|
||||
background-color: var(--usercolor8);
|
||||
}
|
||||
.hydrogen .avatar.usercolor1 { background-color: var(--usercolor1); }
|
||||
.hydrogen .avatar.usercolor2 { background-color: var(--usercolor2); }
|
||||
.hydrogen .avatar.usercolor3 { background-color: var(--usercolor3); }
|
||||
.hydrogen .avatar.usercolor4 { background-color: var(--usercolor4); }
|
||||
.hydrogen .avatar.usercolor5 { background-color: var(--usercolor5); }
|
||||
.hydrogen .avatar.usercolor6 { background-color: var(--usercolor6); }
|
||||
.hydrogen .avatar.usercolor7 { background-color: var(--usercolor7); }
|
||||
.hydrogen .avatar.usercolor8 { background-color: var(--usercolor8); }
|
||||
|
||||
.logo {
|
||||
height: 48px;
|
||||
|
@ -196,8 +173,7 @@ a.button-action {
|
|||
border-radius: 16px;
|
||||
height: 32px;
|
||||
align-items: center;
|
||||
padding-left: 30px;
|
||||
/* 8 + 14 (icon) + 8*/
|
||||
padding-left: 30px; /* 8 + 14 (icon) + 8*/
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
|
@ -226,16 +202,13 @@ a.button-action {
|
|||
}
|
||||
|
||||
.FilterField button {
|
||||
width: 30px;
|
||||
/* 32 - 1 (top) - 1 (bottom) */
|
||||
height: 30px;
|
||||
/* 32 - 1 (top) - 1 (bottom) */
|
||||
width: 30px; /* 32 - 1 (top) - 1 (bottom) */
|
||||
height: 30px; /* 32 - 1 (top) - 1 (bottom) */
|
||||
background-position: center;
|
||||
background-color: #e1e3e6;
|
||||
background-repeat: no-repeat;
|
||||
background-image: url('icons/clear.svg');
|
||||
border: 7px solid transparent;
|
||||
/* 8 - 1 */
|
||||
border: 7px solid transparent; /* 8 - 1 */
|
||||
border-radius: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
@ -453,8 +426,7 @@ a {
|
|||
|
||||
.middle-header {
|
||||
box-sizing: border-box;
|
||||
flex: 0 0 56px;
|
||||
/* 12 + 32 + 12 to align with filter field + margin */
|
||||
flex: 0 0 56px; /* 12 + 32 + 12 to align with filter field + margin */
|
||||
background: white;
|
||||
padding: 0 16px;
|
||||
border-bottom: 1px solid rgba(245, 245, 245, 0.90);
|
||||
|
@ -619,14 +591,21 @@ button.link {
|
|||
.lightbox {
|
||||
background-color: rgba(0,0,0,0.75);
|
||||
display: grid;
|
||||
grid-template: "content close" auto "content details" 1fr / 1fr auto;
|
||||
grid-template:
|
||||
"content close" auto
|
||||
"content details" 1fr /
|
||||
1fr auto;
|
||||
color: white;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
@media (max-aspect-ratio: 1/1) {
|
||||
.lightbox {
|
||||
grid-template: "close" auto "content" 1fr "details" auto / 1fr;
|
||||
grid-template:
|
||||
"close" auto
|
||||
"content" 1fr
|
||||
"details" auto /
|
||||
1fr;
|
||||
}
|
||||
.lightbox .details {
|
||||
width: 100% !important;
|
||||
|
@ -720,7 +699,10 @@ button.link {
|
|||
.InviteView_roomProfile {
|
||||
display: grid;
|
||||
gap: 4px;
|
||||
grid-template: "avatar name" auto "avatar description" 1fr / 72px 1fr;
|
||||
grid-template:
|
||||
"avatar name" auto
|
||||
"avatar description" 1fr /
|
||||
72px 1fr;
|
||||
align-self: center;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
|
Reference in a new issue