bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/closed-captions/styles.scss

30 lines
584 B
SCSS
Raw Normal View History

.ccbox {
resize: none;
background-color: white;
border: 0;
padding: none;
width: 100%;
height: 100%;
2016-12-21 07:54:39 +08:00
overflow-y: auto;
overflow-x: hidden;
position: absolute;
2016-12-21 07:54:39 +08:00
}
.frame {
width: calc(100% - 40px);
height: calc(100% - 80px);
margin: 20px;
2016-12-23 16:26:22 +08:00
overflow: auto;
//if you change the thickness of the border
//you should also change a corresponding value in the componentWillUpdate
//otherwise auto-scrolling for closed-captions will break
border: 2px solid #bbbfcd;
2016-12-21 07:54:39 +08:00
}
.title {
height: 20px;
margin-top: 0px;
margin-bottom: 0px;
padding-left: 20px;
}