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

145 lines
2.3 KiB
SCSS
Raw Normal View History

@import "/imports/ui/stylesheets/variables/_all";
2016-08-03 06:55:20 +08:00
2019-01-28 21:33:50 +08:00
.visuallyhidden {
2019-03-12 00:21:12 +08:00
position: absolute;
overflow: hidden;
clip: rect(0 0 0 0);
height: 1px;
width: 1px;
margin: -1px;
padding: 0;
border: 0;
2019-01-28 21:33:50 +08:00
}
2019-03-12 00:21:12 +08:00
.presentationSlideControls {
2019-02-12 21:35:52 +08:00
justify-content: center;
2019-02-19 20:27:54 +08:00
padding-left: .5rem;
2019-02-12 21:35:52 +08:00
padding-right: .5rem;
}
2019-03-12 00:21:12 +08:00
.presentationZoomControls {
2019-02-12 21:35:52 +08:00
justify-content: flex-end;
padding-right: .5rem;
}
.presentationSlideControls,
.presentationZoomControls,
.zoomWrapper {
2016-08-03 06:55:20 +08:00
display: flex;
flex-direction: row;
align-items: center;
2019-02-12 21:35:52 +08:00
border-radius: 0;
2018-08-23 01:49:33 +08:00
}
2019-02-12 21:35:52 +08:00
.presentationSlideControls,
.presentationZoomControls,
2018-08-23 01:49:33 +08:00
.zoomWrapper {
2019-03-12 00:21:12 +08:00
button {
2019-02-12 21:35:52 +08:00
padding: .5rem;
}
2016-08-03 06:55:20 +08:00
}
2019-03-12 00:21:12 +08:00
.presentationToolbarWrapper {
2019-02-12 21:35:52 +08:00
position: relative;
align-self: center;
z-index: 1;
2019-02-12 21:35:52 +08:00
background-color: var(--color-off-white);
border-top: 1px solid var(--color-blue-lightest);
2019-02-19 20:27:54 +08:00
min-width: fit-content;
width: 100%;
2019-03-12 00:21:12 +08:00
display: grid;
grid-template-columns: 1fr 1fr 1fr;
2019-02-12 21:35:52 +08:00
2019-03-12 00:21:12 +08:00
select {
2019-02-12 21:35:52 +08:00
margin-right: .5rem;
2019-03-12 00:21:12 +08:00
padding: .5rem .5rem .5rem .3rem;
2019-02-12 21:35:52 +08:00
outline-color: transparent;
outline-style: none;
outline: none;
2019-03-12 00:21:12 +08:00
option {
2019-02-12 21:35:52 +08:00
color: var(--toolbar-button-color);
background-color: var(--color-off-white);
}
}
2016-08-06 02:39:24 +08:00
button,
select,
2019-03-12 00:21:12 +08:00
>div {
2018-10-25 20:46:31 +08:00
color: var(--toolbar-button-color);
2019-02-12 21:35:52 +08:00
background-color: var(--color-off-white);
2016-08-06 02:39:24 +08:00
border-top: 0;
border-bottom: 0;
border-left: 0;
border-radius: 0;
box-shadow: none !important;
2019-02-12 21:35:52 +08:00
border: 0;
2019-03-12 00:21:12 +08:00
&:focus {
2019-02-12 21:35:52 +08:00
background-color: var(--color-off-white);
border: 0;
}
2016-08-06 02:39:24 +08:00
}
2016-08-03 06:55:20 +08:00
i {
2018-10-25 20:46:31 +08:00
color: var(--toolbar-button-color);
2019-02-12 21:35:52 +08:00
display: flex;
justify-content: center;
align-items: center;
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
justify-content: space-between;
2018-10-25 20:46:31 +08:00
background-color: var(--toolbar-button-bg);
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;
2019-03-12 00:21:12 +08:00
i {
2019-02-12 21:35:52 +08:00
font-size: 1rem;
}
2016-08-03 06:55:20 +08:00
}
2019-03-12 00:21:12 +08:00
.presentationZoomControls {
2019-02-12 21:35:52 +08:00
.skipSlide,
.prevSlide {
2019-03-12 00:21:12 +08:00
i {
2019-02-12 21:35:52 +08:00
font-size: 1.2rem;
}
}
2018-10-25 20:46:31 +08:00
}
2019-02-12 21:35:52 +08:00
.skipSlideSelect {
padding: 0 var(--sm-padding-y);
2016-08-03 06:55:20 +08:00
}
.zoomSlider {
width: 50%;
}
.zoomMinMax {
font-weight: normal;
}
2018-10-25 20:46:31 +08:00
2018-08-23 01:49:33 +08:00
.zoomPercentageDisplay {
text-align: center;
color: black;
2018-08-29 00:34:08 +08:00
display: flex;
align-items: center;
justify-content: center;
2019-02-12 21:35:52 +08:00
border: 0 !important;
font-weight: 200;
2019-02-07 00:05:24 +08:00
2019-03-12 00:21:12 +08:00
&:hover {
2019-02-07 00:42:12 +08:00
opacity: .8;
2019-02-07 00:05:24 +08:00
}
2019-03-12 00:21:12 +08:00
}