add a custom session button

pull/683/head
Audric Ackermann 5 years ago
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);
}
}

@ -24,6 +24,8 @@
// New CSS // New CSS
@import 'modules'; @import 'modules';
@import 'session';
// Installer // Installer
@import 'options'; @import 'options';

@ -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…
Cancel
Save