chat_ui/assets/chat/scss/components/group/actions-button.scss
2025-03-08 11:28:34 +03:30

62 lines
1.1 KiB
SCSS

.actions-button {
position: absolute;
bottom: 1em;
left: 1em;
z-index: 1;
width: 2.3em;
height: 2.3em;
background-color: #00b6e3;
border-radius: 50%;
opacity: 0;
visibility: hidden;
transition: all 0.2s;
& > .btn {
display: flex;
align-items: center;
justify-content: center;
padding: 0;
}
.plus-icon {
display: inline;
}
.multiply-icon {
display: none;
}
&.show {
.plus-icon {
display: none;
}
.multiply-icon {
display: inline;
}
}
.btn[data-toggle="dropdown"] {
.tavasi::before {
color: #fff;
}
}
.dropdown-menu.show {
// top: -10px !important;
// padding-top: 1.5em;
// padding-bottom: 1.5em;
}
.dropdown-item {
text-align: right;
font-family: "sahel-semi-bold";
display: flex;
align-items: center;
margin-bottom: 0.7em;
font-size: 0.8rem;
color: #666;
.tavasi {
margin-left: 0.5em;
}
}
}