mirror of https://github.com/OpenVidu/openvidu.git
openvidu-components: Fixed styles
parent
b0afa580a7
commit
b1c47d9506
|
@ -39,7 +39,7 @@ describe('Testing API Directives', () => {
|
|||
expect(await element.isDisplayed()).to.be.true;
|
||||
|
||||
// Checking if stream component is present
|
||||
element = await browser.wait(until.elementLocated(By.css('.OT_widget-container')), TIMEOUT);
|
||||
element = await browser.wait(until.elementLocated(By.css('.OV_stream')), TIMEOUT);
|
||||
expect(await element.isDisplayed()).to.be.true;
|
||||
|
||||
// Checking if audio detection is not displayed
|
||||
|
@ -323,7 +323,7 @@ describe('Testing API Directives', () => {
|
|||
expect(await element.isDisplayed()).to.be.true;
|
||||
|
||||
// Checking if stream component is present
|
||||
element = await browser.wait(until.elementLocated(By.className('OT_widget-container')), TIMEOUT);
|
||||
element = await browser.wait(until.elementLocated(By.className('OV_stream')), TIMEOUT);
|
||||
expect(await element.isDisplayed()).to.be.true;
|
||||
|
||||
// Checking if nickname is not displayed
|
||||
|
@ -338,7 +338,7 @@ describe('Testing API Directives', () => {
|
|||
expect(await element.isDisplayed()).to.be.true;
|
||||
|
||||
// Checking if stream component is present
|
||||
element = await browser.wait(until.elementLocated(By.className('OT_widget-container')), TIMEOUT);
|
||||
element = await browser.wait(until.elementLocated(By.className('OV_stream')), TIMEOUT);
|
||||
expect(await element.isDisplayed()).to.be.true;
|
||||
|
||||
// Checking if audio detection is not displayed
|
||||
|
@ -353,7 +353,7 @@ describe('Testing API Directives', () => {
|
|||
expect(await element.isDisplayed()).to.be.true;
|
||||
|
||||
// Checking if stream component is present
|
||||
element = await browser.wait(until.elementLocated(By.className('OT_widget-container')), TIMEOUT);
|
||||
element = await browser.wait(until.elementLocated(By.className('OV_stream')), TIMEOUT);
|
||||
expect(await element.isDisplayed()).to.be.true;
|
||||
|
||||
// Checking if settings button is not displayed
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
background-color: var(--ov-primary-color);
|
||||
border-left: none;
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.sidenav-main {
|
||||
|
|
|
@ -106,10 +106,10 @@
|
|||
}
|
||||
|
||||
/* Contains the video element, used to fix video letter-boxing */
|
||||
.OT_widget-container {
|
||||
.OV_stream {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
background-color: #000000;
|
||||
border-radius: var(--ov-video-radius);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<div
|
||||
*ngIf="this._stream"
|
||||
class="OT_widget-container no-size"
|
||||
class="OV_stream no-size"
|
||||
[id]="'container-' + this._stream.streamManager?.stream?.streamId"
|
||||
#streamContainer
|
||||
>
|
||||
|
|
Loading…
Reference in New Issue