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

39 lines
644 B
SCSS
Raw Normal View History

@import '/imports/ui/stylesheets/variables/_all';
2019-02-21 03:28:02 +08:00
:root {
::-webkit-media-controls {
display:none !important;
}
}
.wrapper {
2019-03-07 05:57:07 +08:00
position: relative;
2019-02-21 03:28:02 +08:00
left: 0;
background-color: var(--color-transparent);
cursor: pointer;
border: none !important;
}
.button {
span, span:active, span:hover {
background-color: var(--color-transparent) !important;
border: none !important;
i {
border: none !important;
background-color: var(--color-transparent) !important;
font-weight: bold !important;
}
}
}
.light {
top: 0;
}
.light .button span i {
color: var(--color-white);
}
.dark {
bottom: 0;
2019-03-07 05:57:07 +08:00
}