bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/presentation/presentation-toolbar/styles.scss

142 lines
2.9 KiB
SCSS

@import "/imports/ui/stylesheets/variables/_all";
.visuallyhidden {
position: absolute;
overflow: hidden;
clip: rect(0 0 0 0);
height: 1px; width: 1px;
margin: -1px; padding: 0; border: 0;
}
.presentationToolbarWrapper,
.presentationControls,
.zoomWrapper {
order: 2;
display: flex;
flex-direction: row;
align-items: center;
margin-left: .5rem;
margin-right: .5rem;
border-radius: var(--toolbar-button-border-radius);
}
.presentationControls,
.zoomWrapper {
box-shadow: 0 0 10px -2px rgba(0, 0, 0, .25);
span:first-of-type button,
button:first-of-type {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
span:last-of-type button,
button:last-of-type {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
span:last-of-type button[aria-labelledby~=fitWidthLabel],
button:last-of-type[aria-labelledby~=fitWidthLabel] {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
}
.presentationToolbarWrapper {
position: absolute;
bottom: .8rem;
align-self: center;
justify-content: center;
z-index: 1;
@include mq("#{$landscape} and (max-height:#{upper-bound($small-range)}), #{$small-only}") {
transform: scale(.75);
transform-origin: bottom;
}
button,
select,
> div {
color: var(--toolbar-button-color);
background-color: var(--toolbar-button-bg);
border-top: 0;
border-bottom: 0;
border-left: 0;
border-radius: 0;
height: 2.25rem;
box-shadow: none !important;
border: 0;
}
i {
color: var(--toolbar-button-color);
}
}
.zoomWrapper {
// border-radius: 0 5px 5px 0;
justify-content: space-between;
// flex-direction: column;
width: 11.5%;
min-width: 175px;
background-color: var(--toolbar-button-bg);
}
.zoomWrapperNoBorder {
border-right: 0 !important;
}
.skipSlide,
.prevSlide {
border: none !important;
&[aria-disabled="true"] {
opacity: 1;
background-color: var(--toolbar-list-bg);
}
}
.skipSlideSelect {
padding: 0 var(--sm-padding-y);
}
.skipSlideSelect,
.zoomPercentageDisplay {
border-left: var(--toolbar-button-border) solid var(--toolbar-button-border-color) !important;
border-right: var(--toolbar-button-border) solid var(--toolbar-button-border-color) !important;
}
.zoomSlider {
width: 50%;
}
.zoomMinMax {
font-weight: normal;
}
.zoomPercentageDisplay {
width: 100%;
height: 2.25rem;
text-align: center;
color: black;
display: flex;
align-items: center;
justify-content: center;
border-top: 0 !important;
border-bottom: 0 !important;
border-top-right-radius: 0 !important;
border-bottom-right-radius: 0 !important;
&:hover{
opacity: .8;
}
}