1
0
Fork 0
mirror of synced 2024-06-27 02:31:04 +12:00

add placeholders for colors

This commit is contained in:
Torsten Dittmann 2020-06-12 20:21:58 +02:00
parent f90552ccf8
commit 06c61ec917
3 changed files with 34 additions and 14 deletions

View file

@ -7,7 +7,8 @@
<title>{{title}}</title>
<style>
body {
background-color: #f6f6f6;
background-color: {{bg-body}};
color: {{text-content}};
font-family: sans-serif;
-webkit-font-smoothing: antialiased;
font-size: 14px;
@ -32,7 +33,7 @@
}
.body {
background-color: #f6f6f6;
background-color: {{bg-body}};
width: 100%;
}
@ -50,10 +51,11 @@
margin: 0 auto;
max-width: 580px;
padding: 10px;
color: {{text-content}};
}
.main {
background: #ffffff;
background: {{bg-content}};
border-radius: 3px;
width: 100%;
}
@ -94,14 +96,14 @@
}
.btn table td {
background-color: #ffffff;
background-color: {{bg-content}};
border-radius: 5px;
text-align: center;
}
.btn a {
background-color: #ffffff;
border: solid 1px #3498db;
background-color: {{bg-content}};
border: solid 1px {{bg-cta}};
border-radius: 5px;
box-sizing: border-box;
color: #3498db;
@ -116,13 +118,13 @@
}
.btn-primary table td {
background-color: #3498db;
background-color: {{bg-cta}};
}
.btn-primary a {
background-color: #3498db;
border-color: #3498db;
color: #ffffff;
background-color: {{bg-cta}};
border-color: {{bg-cta}};
color: {{text-cta}};
}
@media only screen and (max-width: 620px) {
@ -196,18 +198,18 @@
}
.btn-primary table td:hover {
background-color: #34495e !important;
background-color: {{bg-cta-hover}} !important;
}
.btn-primary a:hover {
background-color: #34495e !important;
border-color: #34495e !important;
background-color: {{bg-cta-hover}} !important;
border-color: {{bg-cta-hover}} !important;
}
}
</style>
</head>
<body class="" style="direction: {{direction}}">
<body style="direction: {{direction}}">
<table role="presentation" border="0" cellpadding="0" cellspacing="0" class="body">
<tr>
<td>&nbsp;</td>

View file

@ -1086,6 +1086,12 @@ $utopia->post('/v1/account/recovery')
->setParam('{{project}}', $project->getAttribute('name', ['[APP-NAME]']))
->setParam('{{name}}', $profile->getAttribute('name'))
->setParam('{{redirect}}', $url)
->setParam('{{bg-body}}', '#f6f6f6')
->setParam('{{bg-content}}', '#ffffff')
->setParam('{{bg-cta}}', '#3498db')
->setParam('{{bg-cta-hover}}', '#34495e')
->setParam('{{text-content}}', '#000000')
->setParam('{{text-cta}}', '#ffffff')
;
$mail = $register->get('smtp'); /* @var $mail \PHPMailer\PHPMailer\PHPMailer */
@ -1241,6 +1247,12 @@ $utopia->post('/v1/account/verification')
->setParam('{{project}}', $project->getAttribute('name', ['[APP-NAME]']))
->setParam('{{name}}', $user->getAttribute('name'))
->setParam('{{redirect}}', $url)
->setParam('{{bg-body}}', '#f6f6f6')
->setParam('{{bg-content}}', '#ffffff')
->setParam('{{bg-cta}}', '#3498db')
->setParam('{{bg-cta-hover}}', '#34495e')
->setParam('{{text-content}}', '#000000')
->setParam('{{text-cta}}', '#ffffff')
;
$mail = $register->get('smtp'); /* @var $mail \PHPMailer\PHPMailer\PHPMailer */

View file

@ -329,6 +329,12 @@ $utopia->post('/v1/teams/:teamId/memberships')
->setParam('{{team}}', $team->getAttribute('name', '[TEAM-NAME]'))
->setParam('{{owner}}', $user->getAttribute('name', ''))
->setParam('{{redirect}}', $url)
->setParam('{{bg-body}}', '#f6f6f6')
->setParam('{{bg-content}}', '#ffffff')
->setParam('{{bg-cta}}', '#3498db')
->setParam('{{bg-cta-hover}}', '#34495e')
->setParam('{{text-content}}', '#000000')
->setParam('{{text-cta}}', '#ffffff')
;
$mail = $register->get('smtp'); /* @var $mail \PHPMailer\PHPMailer\PHPMailer */