2016-07-23 08:12:31 +08:00
|
|
|
.ccbox {
|
|
|
|
resize: none;
|
|
|
|
background-color: white;
|
|
|
|
border: 0;
|
|
|
|
padding: none;
|
|
|
|
width: 100%;
|
2018-10-19 04:37:14 +08:00
|
|
|
height: 100%;
|
2016-12-21 07:54:39 +08:00
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
2018-10-19 04:37:14 +08:00
|
|
|
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;
|
2016-12-24 03:29:03 +08:00
|
|
|
//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;
|
2016-07-27 07:05:22 +08:00
|
|
|
}
|