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;
|
expect(await element.isDisplayed()).to.be.true;
|
||||||
|
|
||||||
// Checking if stream component is present
|
// 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;
|
expect(await element.isDisplayed()).to.be.true;
|
||||||
|
|
||||||
// Checking if audio detection is not displayed
|
// Checking if audio detection is not displayed
|
||||||
|
@ -323,7 +323,7 @@ describe('Testing API Directives', () => {
|
||||||
expect(await element.isDisplayed()).to.be.true;
|
expect(await element.isDisplayed()).to.be.true;
|
||||||
|
|
||||||
// Checking if stream component is present
|
// 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;
|
expect(await element.isDisplayed()).to.be.true;
|
||||||
|
|
||||||
// Checking if nickname is not displayed
|
// Checking if nickname is not displayed
|
||||||
|
@ -338,7 +338,7 @@ describe('Testing API Directives', () => {
|
||||||
expect(await element.isDisplayed()).to.be.true;
|
expect(await element.isDisplayed()).to.be.true;
|
||||||
|
|
||||||
// Checking if stream component is present
|
// 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;
|
expect(await element.isDisplayed()).to.be.true;
|
||||||
|
|
||||||
// Checking if audio detection is not displayed
|
// Checking if audio detection is not displayed
|
||||||
|
@ -353,7 +353,7 @@ describe('Testing API Directives', () => {
|
||||||
expect(await element.isDisplayed()).to.be.true;
|
expect(await element.isDisplayed()).to.be.true;
|
||||||
|
|
||||||
// Checking if stream component is present
|
// 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;
|
expect(await element.isDisplayed()).to.be.true;
|
||||||
|
|
||||||
// Checking if settings button is not displayed
|
// Checking if settings button is not displayed
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
background-color: var(--ov-primary-color);
|
background-color: var(--ov-primary-color);
|
||||||
border-left: none;
|
border-left: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidenav-main {
|
.sidenav-main {
|
||||||
|
|
|
@ -106,10 +106,10 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Contains the video element, used to fix video letter-boxing */
|
/* Contains the video element, used to fix video letter-boxing */
|
||||||
.OT_widget-container {
|
.OV_stream {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
position: absolute;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background-color: #000000;
|
background-color: #000000;
|
||||||
border-radius: var(--ov-video-radius);
|
border-radius: var(--ov-video-radius);
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<div
|
<div
|
||||||
*ngIf="this._stream"
|
*ngIf="this._stream"
|
||||||
class="OT_widget-container no-size"
|
class="OV_stream no-size"
|
||||||
[id]="'container-' + this._stream.streamManager?.stream?.streamId"
|
[id]="'container-' + this._stream.streamManager?.stream?.streamId"
|
||||||
#streamContainer
|
#streamContainer
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in New Issue