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

95 lines
1.7 KiB
SCSS
Raw Normal View History

@import "/imports/ui/components/button/styles.scss";
@import "/imports/ui/stylesheets/variables/_all";
2016-08-03 06:55:20 +08:00
$controls-color: $color-gray !default;
$controls-background: $color-white !default;
2016-08-03 06:55:20 +08:00
.presentationToolbarWrapper,
.zoomWrapper {
order: 2;
2016-08-03 06:55:20 +08:00
display: flex;
flex-direction: row;
align-items: center;
}
.presentationToolbarWrapper {
position: absolute;
bottom: .8rem;
box-shadow: 0 0 10px -2px rgba(0, 0, 0, .25);
align-self: center;
justify-content: center;
@include mq("#{$landscape} and (max-height:#{upper-bound($small-range)}), #{$small-only}") {
transform: scale(.75);
transform-origin: bottom;
}
2016-08-06 02:39:24 +08:00
button,
select,
> div {
background-color: $controls-background;
color: $controls-color;
border-top: 0;
border-bottom: 0;
border-left: 0;
border-radius: 0;
box-shadow: none;
height: 2.25rem;
box-shadow: none !important;
border: 0;
2016-08-06 02:39:24 +08:00
}
2016-08-03 06:55:20 +08:00
i {
font-weight: bolder;
color: $color-gray;
2016-08-06 02:39:24 +08:00
}
button:first-of-type {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
button:last-of-type {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
2016-08-03 06:55:20 +08:00
}
.zoomWrapper {
2016-08-03 06:55:20 +08:00
border-radius: 0 5px 5px 0;
justify-content: space-between;
width: 11.5%;
min-width: 175px;
2016-08-03 06:55:20 +08:00
}
.zoomWrapperNoBorder {
2016-08-03 06:55:20 +08:00
border-right: 0 !important;
}
.skipSlide,
2016-08-03 06:55:20 +08:00
.prevSlide {
border: none !important;
width: 2.8rem;
&[aria-disabled="true"] {
opacity: 1;
background-color: $color-gray-lighter;
}
2016-08-03 06:55:20 +08:00
}
.skipSlideSelect {
2016-08-03 06:55:20 +08:00
padding: 0 0.8%;
border-left: $border-size solid $color-gray-lighter !important;
border-right: $border-size solid $color-gray-lighter !important;
2016-08-03 06:55:20 +08:00
}
.zoomSlider {
width: 50%;
}
.zoomMinMax {
font-weight: normal;
}