2020-06-02 19:11:01 -07:00
|
|
|
.list-editor {
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
height: 100%;
|
2021-07-26 07:37:05 -07:00
|
|
|
overflow-y: auto;
|
2020-06-02 19:11:01 -07:00
|
|
|
|
|
|
|
h4 {
|
|
|
|
padding: 15px 0;
|
|
|
|
background: var(--background-color);
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 16px;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 8px 8px 0 0;
|
|
|
|
}
|
|
|
|
|
2021-12-30 04:25:50 -08:00
|
|
|
&__content {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2020-06-02 19:11:01 -07:00
|
|
|
&__accounts {
|
|
|
|
background: var(--background-color);
|
|
|
|
overflow-y: auto;
|
|
|
|
max-height: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__display-name {
|
|
|
|
&:hover strong {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__avatar {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2021-12-30 04:25:50 -08:00
|
|
|
margin: 10px;
|
2020-06-02 19:11:01 -07:00
|
|
|
|
|
|
|
> label {
|
|
|
|
flex: 1 1;
|
|
|
|
}
|
|
|
|
|
2021-10-31 13:51:56 -07:00
|
|
|
> .search__icon {
|
|
|
|
position: relative;
|
2020-06-02 19:11:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
> .button {
|
|
|
|
width: 80px;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-adder {
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
height: 100%;
|
2021-07-27 13:49:19 -07:00
|
|
|
overflow-y: auto;
|
2020-06-02 19:11:01 -07:00
|
|
|
|
|
|
|
&__account {
|
|
|
|
background: var(--background-color);
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__lists {
|
|
|
|
background: var(--background-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.list {
|
|
|
|
padding: 4px;
|
2020-06-06 20:55:00 -07:00
|
|
|
border-bottom: 1px solid var(--brand-color--med);
|
2020-06-02 19:11:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.list__wrapper {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.account__relationship {
|
|
|
|
padding: 8px 5px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.list__display-name {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
overflow: hidden;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 16px;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.new-list-form,
|
|
|
|
.edit-list-form {
|
|
|
|
&__btn {
|
|
|
|
margin-left: 6px;
|
|
|
|
width: 112px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__input {
|
|
|
|
height: 36px;
|
|
|
|
}
|
|
|
|
}
|