Spaces:
No application file
No application file
File size: 2,129 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
.mf-notification {
position: relative;
opacity: 1;
z-index: 2000;
margin: auto;
background: #fff;
border-radius: 4px;
border-width: 6px 1px 1px 1px;
border-style: solid;
min-height: 8em;
padding: 10px 20px;
width: 350px;
.mf-content {
margin-bottom: 30px;
.mf-headline {
font-size: 1.2em;
font-weight: 600;
}
.mf-tagline {
font-size: 1em;
font-weight: normal;
margin-top: 4px;
}
}
.mf-notification-close {
position: fixed;
top: 5px;
right: 8px;
a {
font-size: 1em;
color: #757575;
opacity: .4;
text-decoration: none;
&:hover {
opacity: .8;
text-decoration: none;
}
}
}
.mauticform-input, .mauticform-row select, .mauticform-button, .mauticform-pagebreak {
width: 100%;
height: 28px;
margin-bottom: 2px;
}
}
.mf-responsive.mf-notification, .mf-responsive .mf-notification {
width: 90%;
padding: 10px;
left: 0;
right: 0;
}
{% if preview is not empty %}
.mf-notification {
position: absolute !important;
&.mf-animate {
.notificationAnimate();
}
&.mf-notification-top-left {
top: 5px;
left: 5px;
&.mf-animate {
.notificationName(mf-notification-slide-right);
}
}
&.mf-notification-top-right {
top: 5px;
right: 5px;
&.mf-animate {
.notificationName(mf-notification-slide-left);
}
}
&.mf-notification-bottom-left {
bottom: 5px;
left: 5px;
&.mf-animate {
.notificationName(mf-notification-slide-right);
}
}
&.mf-notification-bottom-right {
bottom: 5px;
right: 5px;
&.mf-animate {
.notificationName(mf-notification-slide-left);
}
}
}
{{ include('@MauticFocus/Builder/Notification/animations.less.twig', with_context=false) }}
{% endif %}
|