Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes for Jitsi UI #518

Merged
merged 5 commits into from
Jul 19, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions src/user/integrations/NameForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,16 @@ export class Info extends Component{
required/>
</Row>
</Modal.Body>
<div className="form-footer">
<Button onClick={() => this.setState({startJitsi:true})}
disabled={this.state.disable} className="savebtn">Join Call</Button>
{this.state.startJitsi ? <JitsiMeet show={this.state.startJitsi}
onHide={this.closeJitsi} user={this.state.user}
roomID={this.state.roomID}/> : null}
<Button variant="outline-primary" onClick={this.props.onHide}>Cancel</Button>
</div>
<Modal.Body>
<div className="form-footer-jitsi">
<Button onClick={() => this.setState({startJitsi:true})}
disabled={this.state.disable} className="joinbtn">Join Call</Button>
Rupeshiya marked this conversation as resolved.
Show resolved Hide resolved
{this.state.startJitsi ? <JitsiMeet show={this.state.startJitsi}
onHide={this.closeJitsi} user={this.state.user}
roomID={this.state.roomID}/> : null}
<Button variant="outline-primary" onClick={this.props.onHide}>Cancel</Button>
Rupeshiya marked this conversation as resolved.
Show resolved Hide resolved
</div>
</Modal.Body>
</div>
</Modal>
);
Expand Down
18 changes: 11 additions & 7 deletions src/user/integrations/jitsi.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
font-weight: 700;
line-height: 29px;
color: #1A73E8;
// margin-left: 6px;
margin-left: 3px;
}
.about{
font-weight: 500;
Expand All @@ -34,7 +34,7 @@
color: #90949C;
margin-top:10px;
margin-bottom: 5px;
// margin-left: 6px;
margin-left: 4px;
}
.message{
font-weight: 500;
Expand All @@ -52,32 +52,36 @@
color:#000000;
margin-bottom: 3px;
margin-top: 5px;
// margin-left: 3px;
margin-left: 3px;
}
.form-input{
font-family: Inter;
font-style: normal;
font-weight: 300;
font-size: 13px;
line-height: 16px;
//margin-left: 3px;
margin-left: 3px;
}
.form-content{
margin-top:-2%;
margin-bottom: 20px;
justify-content:space-between;
}
.form-footer{
.form-footer-jitsi{
Rupeshiya marked this conversation as resolved.
Show resolved Hide resolved
margin-top: -5px;
Button{
width: auto;
margin-right: 20px;
margin-bottom: 30px;
border-radius: 100px;
// border-radius: 100px;
font-weight:600;
}
.savebtn{
.joinbtn{
background-color: #1A73E8;
width: 80px;
height: 4vh;
margin-left: -11px;
padding: 0;
}

}
Expand Down