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

69 lines
1.1 KiB
SCSS
Raw Normal View History

@import "../../button/styles.scss";
@import "../../../stylesheets/variables/_all";
2016-08-03 06:55:20 +08:00
2016-08-06 02:39:24 +08:00
$controls-color: #212121 !default;
$controls-background: #F0F2F6 !default;
2016-08-03 06:55:20 +08:00
2016-08-06 02:39:24 +08:00
.slideControlsWrapper,
.zoomWrapper {
order: 2;
padding: $line-height-computed / 2;
2016-08-03 06:55:20 +08:00
display: flex;
flex-direction: row;
align-items: center;
}
2016-08-06 02:39:24 +08:00
.slideControlsWrapper {
2016-08-03 06:55:20 +08:00
flex: 1;
justify-content: center;
2016-08-06 02:39:24 +08:00
width: 100%;
margin-top: 2%;
margin-bottom: 2%;
2016-08-03 06:55:20 +08:00
2016-08-06 02:39:24 +08:00
button,
select,
> div {
background-color: $controls-background;
color: $controls-color;
border-top: 0;
border-right: $color-gray-light 2px solid;
border-bottom: 0;
border-left: 0;
border-radius: 0;
box-shadow: none;
height: 2.25rem;
}
2016-08-03 06:55:20 +08:00
i {
font-weight: bolder;
color: $color-gray;
2016-08-06 02:39:24 +08:00
}
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;
}
.prevSlide {
border-radius: 5px 0 0 5px;
}
.skipSlide {
padding: 0 0.8%;
}
.zoomSlider {
width: 50%;
}
.zoomMinMax {
font-weight: normal;
}