add a custom session button
parent
5123fa0409
commit
24e24681a6
@ -0,0 +1,44 @@
|
||||
$session-color-green: #00F782;
|
||||
$session-color-white: #fff;
|
||||
$session-color-black: #000;
|
||||
|
||||
|
||||
$session-font-family: Waza;
|
||||
|
||||
.session-button {
|
||||
min-width: 165px;
|
||||
width: auto;
|
||||
height: 45px;
|
||||
line-height: 45px;
|
||||
padding: 0 35px 0 35px;
|
||||
font-size: 15px;
|
||||
font-family: $session-font-family;
|
||||
font-weight: 700;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
border-radius: 500px;
|
||||
|
||||
@mixin transparent-background($textAndBorderColor) {
|
||||
background-color: Transparent;
|
||||
background-repeat:no-repeat;
|
||||
overflow: hidden;
|
||||
outline:none;
|
||||
color: $textAndBorderColor;
|
||||
border: 2px solid $textAndBorderColor;
|
||||
}
|
||||
|
||||
&.full-green {
|
||||
background-color: $session-color-green;
|
||||
color: $session-color-white;
|
||||
}
|
||||
|
||||
&.green {
|
||||
@include transparent-background($session-color-green);
|
||||
}
|
||||
|
||||
&.white {
|
||||
@include transparent-background($session-color-white);
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,41 @@
|
||||
import React from 'react';
|
||||
import classNames from 'classnames';
|
||||
|
||||
//import { LocalizerType } from '../../types/Util';
|
||||
|
||||
export enum SessionButtonTypes {
|
||||
fullGreen = 'fullGreen',
|
||||
white = 'white',
|
||||
green = 'green',
|
||||
}
|
||||
|
||||
interface Props {
|
||||
//i18n: LocalizerType;
|
||||
text: string;
|
||||
buttonType: SessionButtonTypes;
|
||||
}
|
||||
|
||||
|
||||
export class SessionButton extends React.PureComponent<Props> {
|
||||
|
||||
public render() {
|
||||
const {
|
||||
buttonType,
|
||||
text
|
||||
} = this.props;
|
||||
|
||||
return (
|
||||
<div
|
||||
className={classNames(
|
||||
'session-button',
|
||||
buttonType === SessionButtonTypes.green? 'green' : '',
|
||||
buttonType === SessionButtonTypes.fullGreen? 'full-green' : '',
|
||||
buttonType === SessionButtonTypes.white? 'white' : '',
|
||||
)}
|
||||
role='button'
|
||||
>
|
||||
{text}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue