style message popup

This commit is contained in:
Lisa Passing 2015-02-18 14:37:41 +01:00 committed by Piotr Sarnacki
parent a89e77a56d
commit a446344096
2 changed files with 6 additions and 3 deletions

View File

@ -71,6 +71,9 @@
border-radius: 4px
font-family: $font-family-sans-serif
cursor: pointer
p
padding-left: 0.7em
margin: 0.3em 0 0
a
color: #7d7e80
font-size: 15px

View File

@ -22,8 +22,8 @@ window.bootstrapCharm = function(){
cancel: 'cancel',
your_email: 'Your email address:',
your_comment: 'Your message:',
feedback_sending: 'Sending...',
feedback_sent: 'Your feedback was sent!<br/>We will get back to you as soon as possible!',
feedback_sending: '<p>Sending...</p>',
feedback_sent: '<h1>Your feedback was sent!</h1><p>We will get back to you as soon as possible!</p>',
feedback_error: 'There was a problem sending your message.<br/>Please contact support directly.<br/><br/>close this message'
};
@ -201,7 +201,7 @@ window.bootstrapCharm = function(){
msg.id = "CHARM_MESSAGE";
msg.innerHTML = template((id in __CHARM) ? __CHARM[id] : DEFAULTS[id]);
document.body.appendChild(msg);
msg.className = 'open';
msg.className = 'feedback-popup open';
msg.onclick = function(){ closeMessage(msg); };
if(autoclose === undefined || !autoclose === false)
setTimeout(function(){ closeMessage(msg); }, 4000);