.toolbar-container { display: flex; position: relative; height: 100%; width: 74px; padding: 0; margin: 0; transform: translateX(-70px); border-right: 1px solid #4F4F4F; background: #333333; } /* .toolbar-container.closed { transform: translateX(-70px); } */ /* .toolbar-container.opened { transform: translateX(0px); } */ .toolbar-field { width: 70px; background: #333333; padding: 14px 15px; box-sizing: border-box; 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% - 4px); display: flex; justify-content: center; align-items: center; margin-top: auto; margin-bottom: auto; width: 24px; height: 128px; border: none; background: url('openToolbarIcon.svg') 50% 50% no-repeat; background-size: 100% 100%; cursor: pointer; } .toolbar-open-button-icon { width: 100%; height: 100%; background: url('pointerIcon.svg') 50% 50% no-repeat; background-size: 24px 24px; } .toolbar-container.opened .toolbar-open-button-icon { background: url('closeToolbarIcon.svg') 50% 50% no-repeat; } .toolbar-button-area { position: relative; } .toolbar-button { position: relative; width: 40px; height: 40px; border: none; border-radius: 50px; background-size: 100% 100%; background-color: #4F4F4F; cursor: pointer; } .toolbar-button:hover { opacity: .7; } .toolbar-button-description-container { opacity: 0; position: absolute; left: 100%; height: 24px; top: calc(50% - 12px); background-color: #27AE60; transition: .3s; pointer-events: none; display: flex; align-items: center; /* width: auto; */ box-sizing: content-box; } .toolbar-button-area:hover .toolbar-button-description-container { opacity: 1; transition: .3s; } .toolbar-button-description-rectangle { /* display: inline-block; */ white-space: nowrap; /* flex-shrink: 0; */ } .toolbar-button-description-triangle { display: flex; width: 18px; height: 24px; background-color: #EB5757; } .toolbar-button.notification::after { content: ''; position: absolute; right: 0; top: 0; width: 12px; height: 12px; border-radius: 50px; background-color: #F2994A; } .toolbar-button.fullscreenOn { background: url('./icons/openFullscreenIcon.svg') 50% 50% no-repeat; background-color: #4F4F4F; } .toolbar-button.fullscreenOff { background: url('./icons/closeFullscreenIcon.svg') 50% 50% no-repeat; background-color: #4F4F4F; } .toolbar-button.user { background: url('icons/userIcon.svg') 50% 50% no-repeat; } .toolbar-button.admin { background-color: #2F80ED; } .toolbar-button.self { background-color: #27AE60; } .toolbar-button.guest { background-color: #9B51E0; } .toolbar-button.users { background: url('./icons/disableFullscreenIcon.svg'); } .toolbar-button.microOff { background: url('./icons/microOffIcon.svg') 50% 50% no-repeat; background-color: #4F4F4F; } .toolbar-button.microOn { background: url('./icons/microOnIcon.svg') 50% 50% no-repeat; background-color: #4F4F4F; } .toolbar-button.controlOff { background: url('./icons/constrolOffIcon.svg') 50% 50% no-repeat; background-color: #4F4F4F; } .toolbar-button.controlOn { background: url('./icons/constrolOffIcon.svg') 50% 50% no-repeat; background-color: #4F4F4F; } .toolbar-button.other { background: url('./icons/othertIcon.svg') 50% 50% no-repeat; background-color: #4F4F4F; } .toolbar-button.soundOff { background: url('./icons/soundOffIcon.svg') 50% 50% no-repeat; background-color: #4F4F4F; } .toolbar-button.soundOn { background: url('./icons/soundOnIcon.svg') 50% 50% no-repeat; background-color: #4F4F4F; } .toolbar-button.exit { background: url('./icons/exitIcon.svg') 50% 50% no-repeat; background-color: #EB5757; } .toolbar-button.copy { background: url('./icons/copyIcon.svg') 50% 50% no-repeat; background-color: #4F4F4F; } .toolbar-button.share { background: url('./icons/shareIcon.svg') 50% 50% no-repeat; background-color: #4F4F4F; } .show-toolbar-enter { transform: translateX(-70px); } .show-toolbar-enter-done { transform: translateX(0px); } .show-toolbar-enter-active { transform: translateX(0); transition: .3s; } .show-toolbar-exit { transform: translateX(0); } .show-toolbar-exit-active { transform: translateX(-70px); transition: .3s; }