126 lines
2.2 KiB
SCSS
126 lines
2.2 KiB
SCSS
.userListWindow {
|
|
height: 100%;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
background-color: #16191E;
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-sizing: border-box;
|
|
padding: 10px 0;
|
|
|
|
>div {
|
|
margin-bottom: 10px;
|
|
|
|
&:last-child {
|
|
margin-bottom: 0px;
|
|
}
|
|
}
|
|
|
|
.userListWindowTitle {
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 0 10px;
|
|
|
|
>span {
|
|
color: #EEEEEE;
|
|
font-size: 18px;
|
|
}
|
|
|
|
>img {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.userListWindowContent {
|
|
flex-grow: 1;
|
|
height: 0px;
|
|
overflow-y: auto;
|
|
|
|
>div {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
padding: 4px 10px;
|
|
|
|
>div:nth-child(1) {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
>span {
|
|
display: flex;
|
|
flex-direction: column;
|
|
color: #F3F3F5;
|
|
margin-left: 4px;
|
|
font-size: 13px;
|
|
|
|
>span {
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
|
|
>div {
|
|
flex-shrink: 0;
|
|
}
|
|
}
|
|
|
|
>div:nth-child(2) {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
>div {
|
|
height: 30px;
|
|
width: 30px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
>img {
|
|
width: 20px;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
}
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
background-color: rgb(52, 52, 52);
|
|
}
|
|
}
|
|
}
|
|
|
|
.userListWindowFooter {
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-sizing: border-box;
|
|
|
|
>div {
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
background-color: #31353A;
|
|
color: #EEEEEE;
|
|
width: 104px;
|
|
height: 30px;
|
|
line-height: 30px;
|
|
text-align: center;
|
|
border-radius: 5px;
|
|
|
|
&:hover {
|
|
background-color: lighten(#31353A, 4%);
|
|
}
|
|
|
|
&:active {
|
|
background-color: darken(#31353A, 4%);
|
|
}
|
|
}
|
|
}
|
|
} |