Files
pixelstreamingui/src/components/mainScreen/toolbar/toolbar.css
T

174 lines
3.1 KiB
CSS

.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%;
}
.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 {
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);
}
.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;
}