mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 16:14:18 -08:00
46f5f21368
* Added “show fields in email” to custom fields * Added “show images in email” to settings * Added nicer HTML emails * Break notifications out into their own, instead of trying to mash them all together * Remove old notification for accessory checkout * Janky fix for #5076 - “The asset you have attempted to accept was not checked out to you” * Add method for image url for accessories * Added accessory checkout email blade * Make accessory email notification on checkout screen consistent with assets * Added native consumables notifications * Fixes for asset notification * Updated notification blades with correct-er fields * Updated notifications * License checkin notification - does not work yet Need to figure out whether the license seat is assigned to a person or an asset before we can pass the target * Added alternate “cc” email for admins * Only try to trigger notifications if the target is a user * Fix tests * Fixed consumable URL * Removed unused notification * Pass target type in params * Show slack status * Pass additional parameters There is a logic bug in this :( Will send to slack twice, since the admin CC and the user are both using the same notification. Fuckity fuck fuck fuck. * Pass a variable to the notification to supress the duplicate slack message * Slack is broken :( Trying to fix Will try a git bisect * Put preview back into checkout * Pulled old archaic mail * Removed debugging * Fixed wrong email title * Fixed slack endpoint not firing * Poobot, we hardly knew ye. * Removed old, manual mail from API * Typo :-/ * Code cleanup * Use defined formatted date in JSON * Use static properties for checkin/checkout notifiers for cleaner code * Removed debugging * Use date formatter * Fixed target_type * Fixed language in consumable email
285 lines
4.4 KiB
CSS
285 lines
4.4 KiB
CSS
/* Base */
|
|
|
|
body, body *:not(html):not(style):not(br):not(tr):not(code) {
|
|
font-family: Avenir, Helvetica, sans-serif;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
background-color: #f5f8fa;
|
|
color: #74787E;
|
|
height: 100%;
|
|
hyphens: auto;
|
|
line-height: 1.4;
|
|
margin: 0;
|
|
-moz-hyphens: auto;
|
|
-ms-word-break: break-all;
|
|
width: 100% !important;
|
|
-webkit-hyphens: auto;
|
|
-webkit-text-size-adjust: none;
|
|
word-break: break-all;
|
|
word-break: break-word;
|
|
}
|
|
|
|
p,
|
|
ul,
|
|
ol,
|
|
blockquote {
|
|
line-height: 1.4;
|
|
text-align: left;
|
|
}
|
|
|
|
a {
|
|
color: #3869D4;
|
|
}
|
|
|
|
a img {
|
|
border: none;
|
|
}
|
|
|
|
/* Typography */
|
|
|
|
h1 {
|
|
color: #2F3133;
|
|
font-size: 19px;
|
|
font-weight: bold;
|
|
margin-top: 0;
|
|
text-align: left;
|
|
}
|
|
|
|
h2 {
|
|
color: #2F3133;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
margin-top: 0;
|
|
text-align: left;
|
|
}
|
|
|
|
h3 {
|
|
color: #2F3133;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
margin-top: 0;
|
|
text-align: left;
|
|
}
|
|
|
|
p {
|
|
color: #74787E;
|
|
font-size: 16px;
|
|
line-height: 1.5em;
|
|
margin-top: 0;
|
|
text-align: left;
|
|
}
|
|
|
|
p.sub {
|
|
font-size: 12px;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
}
|
|
|
|
/* Layout */
|
|
|
|
.wrapper {
|
|
background-color: #f5f8fa;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
-premailer-cellpadding: 0;
|
|
-premailer-cellspacing: 0;
|
|
-premailer-width: 100%;
|
|
}
|
|
|
|
.content {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
-premailer-cellpadding: 0;
|
|
-premailer-cellspacing: 0;
|
|
-premailer-width: 100%;
|
|
}
|
|
|
|
/* Header */
|
|
|
|
.header {
|
|
padding: 25px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.header a {
|
|
color: #bbbfc3;
|
|
font-size: 19px;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
text-shadow: 0 1px 0 white;
|
|
}
|
|
|
|
/* Body */
|
|
|
|
.body {
|
|
background-color: #FFFFFF;
|
|
border-bottom: 1px solid #EDEFF2;
|
|
border-top: 1px solid #EDEFF2;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
-premailer-cellpadding: 0;
|
|
-premailer-cellspacing: 0;
|
|
-premailer-width: 100%;
|
|
}
|
|
|
|
.inner-body {
|
|
background-color: #FFFFFF;
|
|
margin: 0 auto;
|
|
padding: 0;
|
|
-premailer-cellpadding: 0;
|
|
-premailer-cellspacing: 0;
|
|
-premailer-width: 570px;
|
|
}
|
|
|
|
/* Subcopy */
|
|
|
|
.subcopy {
|
|
border-top: 1px solid #EDEFF2;
|
|
margin-top: 25px;
|
|
padding-top: 25px;
|
|
}
|
|
|
|
.subcopy p {
|
|
font-size: 12px;
|
|
}
|
|
|
|
/* Footer */
|
|
|
|
.footer {
|
|
margin: 0 auto;
|
|
padding: 0;
|
|
text-align: center;
|
|
width: 570px;
|
|
-premailer-cellpadding: 0;
|
|
-premailer-cellspacing: 0;
|
|
-premailer-width: 570px;
|
|
}
|
|
|
|
.footer p {
|
|
color: #AEAEAE;
|
|
font-size: 12px;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Tables */
|
|
|
|
.table table {
|
|
margin: 30px auto;
|
|
width: 100%;
|
|
-premailer-cellpadding: 0;
|
|
-premailer-cellspacing: 0;
|
|
-premailer-width: 100%;
|
|
}
|
|
|
|
.table th {
|
|
border-bottom: 1px solid #EDEFF2;
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
.table td {
|
|
color: #74787E;
|
|
font-size: 15px;
|
|
line-height: 18px;
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.content-cell {
|
|
padding: 20px;
|
|
}
|
|
|
|
/* Buttons */
|
|
|
|
.action {
|
|
margin: 30px auto;
|
|
padding: 0;
|
|
text-align: center;
|
|
width: 100%;
|
|
-premailer-cellpadding: 0;
|
|
-premailer-cellspacing: 0;
|
|
-premailer-width: 100%;
|
|
}
|
|
|
|
.button {
|
|
border-radius: 3px;
|
|
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.16);
|
|
color: #FFF;
|
|
display: inline-block;
|
|
text-decoration: none;
|
|
-webkit-text-size-adjust: none;
|
|
}
|
|
|
|
.button-blue {
|
|
background-color: #3097D1;
|
|
border-top: 10px solid #3097D1;
|
|
border-right: 18px solid #3097D1;
|
|
border-bottom: 10px solid #3097D1;
|
|
border-left: 18px solid #3097D1;
|
|
}
|
|
|
|
.button-green {
|
|
background-color: #2ab27b;
|
|
border-top: 10px solid #2ab27b;
|
|
border-right: 18px solid #2ab27b;
|
|
border-bottom: 10px solid #2ab27b;
|
|
border-left: 18px solid #2ab27b;
|
|
}
|
|
|
|
.button-red {
|
|
background-color: #bf5329;
|
|
border-top: 10px solid #bf5329;
|
|
border-right: 18px solid #bf5329;
|
|
border-bottom: 10px solid #bf5329;
|
|
border-left: 18px solid #bf5329;
|
|
}
|
|
|
|
/* Panels */
|
|
|
|
.panel {
|
|
margin: 0 0 21px;
|
|
}
|
|
|
|
.panel-content {
|
|
background-color: #EDEFF2;
|
|
padding: 16px;
|
|
}
|
|
|
|
.panel-item {
|
|
padding: 0;
|
|
}
|
|
|
|
.panel-item p:last-of-type {
|
|
margin-bottom: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
/* Promotions */
|
|
|
|
.promotion {
|
|
background-color: #FFFFFF;
|
|
border: 2px dashed #9BA2AB;
|
|
margin: 0;
|
|
margin-bottom: 25px;
|
|
margin-top: 25px;
|
|
padding: 24px;
|
|
width: 100%;
|
|
-premailer-cellpadding: 0;
|
|
-premailer-cellspacing: 0;
|
|
-premailer-width: 100%;
|
|
}
|
|
|
|
.promotion h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
.promotion p {
|
|
font-size: 15px;
|
|
text-align: center;
|
|
}
|