bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/fullscreen-button/styles.scss

72 lines
909 B
SCSS
Raw Normal View History

.wrapper {
2019-03-12 00:21:12 +08:00
position: absolute;
right: 0;
left: auto;
background-color: var(--color-transparent);
cursor: pointer;
border: 0;
2019-09-18 02:25:28 +08:00
z-index: 2;
margin: 2px;
2019-03-12 00:21:12 +08:00
[dir="rtl"] & {
right: auto;
left :0;
}
2019-03-12 00:21:12 +08:00
[class*="presentationZoomControls"] & {
position: relative !important;
}
}
.button {
2019-03-12 00:21:12 +08:00
2019-03-12 21:56:05 +08:00
&,
2019-03-12 00:21:12 +08:00
&:active,
&:hover,
&:focus {
background-color: var(--color-transparent) !important;
border: none !important;
2019-03-12 00:21:12 +08:00
i {
border: none !important;
background-color: var(--color-transparent) !important;
}
}
}
.light {
background-color: var(--color-transparent);
}
2019-03-12 00:21:12 +08:00
.light .button i {
color: var(--color-black);
}
2019-01-29 01:56:03 +08:00
.dark {
background-color: rgba(0,0,0,.3);
2019-01-29 01:56:03 +08:00
}
2019-03-12 00:21:12 +08:00
.dark .button i {
color: var(--color-white);
}
.top{
top: 0;
}
.bottom{
bottom: 0;
}
2019-02-12 21:35:52 +08:00
2019-03-12 00:21:12 +08:00
.fullScreenButton {
2019-02-12 21:35:52 +08:00
padding: 5px;
2019-03-12 00:21:12 +08:00
&:hover {
2019-02-12 21:35:52 +08:00
border: 0;
}
2019-03-12 00:21:12 +08:00
i {
2019-02-12 21:35:52 +08:00
font-size: 1rem;
}
}