0
0
Fork 0

Implement adding a user to a list from their profile (#9062)

* Add add user to list from thier profile

* Fix listAdderCss
This commit is contained in:
namelessGonbai 2018-11-06 02:52:38 +09:00 committed by Eugen Rochko
parent a7e3bd0300
commit bb5558de62
62 changed files with 414 additions and 0 deletions

View file

@ -5344,6 +5344,47 @@ noscript {
}
}
.list-adder {
background: $ui-base-color;
flex-direction: column;
border-radius: 8px;
box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
width: 380px;
overflow: hidden;
@media screen and (max-width: 420px) {
width: 90%;
}
&__account {
background: lighten($ui-base-color, 13%);
}
&__lists {
background: lighten($ui-base-color, 13%);
height: 50vh;
border-radius: 0 0 8px 8px;
overflow-y: auto;
}
.list {
padding: 10px;
border-bottom: 1px solid lighten($ui-base-color, 8%);
}
.list__wrapper {
display: flex;
}
.list__display-name {
flex: 1 1 auto;
overflow: hidden;
text-decoration: none;
font-size: 16px;
padding: 10px;
}
}
.focal-point-modal {
max-width: 80vw;
max-height: 80vh;