mirror of https://github.com/sualko/cloud_bbb
53 lines
827 B
SCSS
53 lines
827 B
SCSS
.bbb-shareWith {
|
|
margin: 1em 0;
|
|
|
|
&__item {
|
|
height: 44px;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&:hover {
|
|
background-color: var(--color-background-dark);
|
|
}
|
|
|
|
.avatardiv {
|
|
height: 32px;
|
|
width: 32px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.icon {
|
|
height: 44px;
|
|
width: 44px;
|
|
}
|
|
|
|
&__label {
|
|
padding: 0 1em;
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.bbb-selection-container {
|
|
position: relative;
|
|
}
|
|
|
|
.bbb-selection {
|
|
position: absolute;
|
|
width: 100%;
|
|
background-color: #ffffff;
|
|
border: 1px solid var(--color-border-dark);
|
|
max-height: 88px;
|
|
overflow: auto;
|
|
box-shadow: 0 5px 10px -5px var(--color-box-shadow);
|
|
|
|
li {
|
|
padding: 0 1em;
|
|
cursor: pointer;
|
|
line-height: 44px;
|
|
|
|
&:hover {
|
|
background-color: var(--color-background-hover);
|
|
}
|
|
}
|
|
} |