|
|
|
@ -49,7 +49,7 @@ |
|
|
|
|
position: fixed; |
|
|
|
|
top: 20; |
|
|
|
|
transition: top 1s ease; |
|
|
|
|
z-index: 100; |
|
|
|
|
z-index: $toolbarZ + 1; |
|
|
|
|
|
|
|
|
|
&.toolbox-visible { |
|
|
|
|
// Same as toolbox subject position |
|
|
|
@ -62,11 +62,44 @@ |
|
|
|
|
padding: 15px |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ul { |
|
|
|
|
button { |
|
|
|
|
align-self: stretch; |
|
|
|
|
margin: 8px 0; |
|
|
|
|
padding: 12px; |
|
|
|
|
transition: .2s transform ease; |
|
|
|
|
|
|
|
|
|
&:disabled { |
|
|
|
|
opacity: .5; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
&:hover { |
|
|
|
|
transform: scale(1.05); |
|
|
|
|
|
|
|
|
|
&:disabled { |
|
|
|
|
transform: none; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
&.borderLess { |
|
|
|
|
background-color: transparent; |
|
|
|
|
border-width: 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
&.primary { |
|
|
|
|
background-color: rgb(3, 118, 218); |
|
|
|
|
border-width: 0; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.knocking-participants-container { |
|
|
|
|
list-style-type: none; |
|
|
|
|
max-height: 600px; |
|
|
|
|
overflow-y: scroll; |
|
|
|
|
padding: 0 15px 15px 15px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
li { |
|
|
|
|
.knocking-participant { |
|
|
|
|
align-items: center; |
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: row; |
|
|
|
@ -85,34 +118,23 @@ |
|
|
|
|
margin: 0 5px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
button { |
|
|
|
|
align-self: stretch; |
|
|
|
|
margin: 8px 0; |
|
|
|
|
padding: 12px; |
|
|
|
|
transition: .2s transform ease; |
|
|
|
|
|
|
|
|
|
&:disabled { |
|
|
|
|
opacity: .5; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
&:hover { |
|
|
|
|
transform: scale(1.05); |
|
|
|
|
@media (max-width: 300px) { |
|
|
|
|
#knocking-participant-list { |
|
|
|
|
margin: 0; |
|
|
|
|
text-align: center; |
|
|
|
|
width: 100%; |
|
|
|
|
|
|
|
|
|
&:disabled { |
|
|
|
|
transform: none; |
|
|
|
|
.avatar { |
|
|
|
|
display: none; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
&.borderLess { |
|
|
|
|
background-color: transparent; |
|
|
|
|
border-width: 0; |
|
|
|
|
} |
|
|
|
|
.knocking-participant { |
|
|
|
|
flex-direction: column; |
|
|
|
|
|
|
|
|
|
&.primary { |
|
|
|
|
background-color: rgb(3, 118, 218); |
|
|
|
|
border-width: 0; |
|
|
|
|
.details { |
|
|
|
|
margin: 0; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|