добавлены иконки, прописана сетка тулбара, добавлено отображение уведомлений на иконках юзеров

This commit is contained in:
DmitriyB
2022-08-01 13:04:56 +05:00
parent d1e1b20e53
commit de28fa6273
11 changed files with 152 additions and 26 deletions
+96 -2
View File
@@ -24,13 +24,35 @@
background: #333333;
padding: 14px 15px;
box-sizing: border-box;
/* border-right: 1px solid red; */
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.toolbar-field-part {
display: flex;
flex-direction: column;
gap: 10px;
}
.toolbar-button-container {
display: flex;
flex-direction: column;
gap: 10px;
}
.toolbar-button-container-border-line {
width: 100%;
height: 1px;
background-color: #4F4F4F;
}
.toolbar-open-button {
z-index: 0;
position: absolute;
top: calc((100% - 128px) / 2);
left: calc(100% - 5px);
left: calc(100% - 4px);
display: flex;
justify-content: center;
align-items: center;
@@ -56,6 +78,78 @@
background: url('closeToolbarIcon.svg') 50% 50% no-repeat;
}
.toolbar-button {
position: relative;
width: 40px;
height: 40px;
border: none;
border-radius: 50px;
background-size: 100% 100%;
}
.toolbar-button.notification::after {
content: '';
position: absolute;
right: 0;
top: 0;
width: 12px;
height: 12px;
border-radius: 50px;
background-color: #F2994A;
}
.toolbar-button.fullscreen {
background: url('./icons/disableFullscreenIcon.svg');
}
.toolbar-button.admin {
background: url('./icons/adminIcon.svg');
}
.toolbar-button.self {
background: url('./icons/selfIcon.svg');
}
.toolbar-button.guest {
background: url('./icons/guestIcon.svg');
}
.toolbar-button.users {
background: url('./icons/disableFullscreenIcon.svg');
}
.toolbar-button.micro {
background: url('./icons/microDisabledIcon.svg');
}
.toolbar-button.control {
background: url('./icons/controlDisabledIcon.svg');
}
.toolbar-button.other {
background: url('./icons/disableFullscreenIcon.svg');
}
.toolbar-button.sound {
background: url('./icons/disableFullscreenIcon.svg');
}
.toolbar-button.exit {
background: url('./icons/exitIcon.svg');
}
.toolbar-button.copy {
background: url('./icons/disableFullscreenIcon.svg');
}
.toolbar-button.share {
background: url('./icons/shareIcon.svg');
}
.show-toolbar-enter {
transform: translateX(-70px);