Fewo Mails / Booking Country Services

This commit is contained in:
Kevin Adametz 2020-05-28 19:03:42 +02:00
parent b9c26d06d0
commit 48a6eb2282
154 changed files with 7761 additions and 1643 deletions

View file

@ -470,3 +470,44 @@ div.dropzone.dz-drag-hover {
.ql-picker.ql-placeholder > span.ql-picker-options > span.ql-picker-item::before {
content: attr(data-label);
}
.nav-tabs-top > .nav .nav-link{
line-height: 1.3em;
background-color: rgba(24, 28, 33, 0.10);
border-color: rgba(24, 28, 33, 0.15);
}
.nav-tabs-top > .nav .nav-link:hover{
line-height: 1.3em;
border-color: rgba(24, 28, 33, 0.25);
}
.nav-tabs-top > .nav .nav-link.active {
color: #66500f;
background-color: #ffc926;
font-weight: bold;
border-color: rgba(24, 28, 33, 0.25);
}
.nav-tabs-top > .nav {
padding-left: 0.25em;
padding-right: 0.25em;
}
.nav-tabs-top > .tab-content {
border: none;
}
@media (min-width: 768px) {
#filter_email_templates_directory {
position: absolute;width: 50%;z-index: 999;margin-top: -5px;
}
}
.no-break {
white-space: nowrap;
}
.card-header,
.card-footer,
.card hr {
border-color: rgba(24, 28, 33, 0.15);
}

View file

@ -10,15 +10,16 @@ body {
padding: 0;
color: #000;
background: #fff;
font-size: 10pt;
line-height: 1.2em;
font-size: 9.5pt;
line-height: 1.15em;
font-family: Helvetica;
}
table {
border: none;
}
strong {
font-weight: 600;
font-weight: bold;
}
@page {
@ -35,7 +36,7 @@ strong {
}
.font-weight-bold {
font-weight: 600;
font-weight: bold;
}
#logo_box {
position: absolute;
@ -57,7 +58,7 @@ strong {
width: 100mm;
height: 45mm;
z-index: 1;
font-size: 11pt;
font-size: 10pt;
color:#000;
}
#address_box #address_back{

View file

@ -140,7 +140,7 @@ $(function () {
$.each(button.data(), function(index, value){
data[index] = value;
});
//console.log(data);
// console.log(data);
loadModalInner(this, data);
});
@ -173,7 +173,7 @@ $(function () {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
},
success: function(data) {
// console.log(data);
// console.log(data);
$(data.response.target).find('.modal-dialog').html(data.html);
$(data.response.target).find('.selectpicker').selectpicker('refresh');
initModalInner();
@ -371,15 +371,25 @@ jQuery(document).ready(function() {
});
});
jQuery.each(jQuery('textarea.autoExpand'), function() {
var offset = this.offsetHeight - this.clientHeight;
var resizeTextarea = function(el) {
var resizeTextarea = function(el) {
if(el.scrollHeight > 0){
var offset = el.offsetHeight - el.clientHeight;
jQuery(el).css('height', 'auto').css('height', el.scrollHeight + offset);
};
jQuery(this).on('keyup input', function() { resizeTextarea(this); }).removeClass('autoExpand');
}
$(this).removeClass('autoExpand');
};
jQuery.each(jQuery('textarea.autoExpand'), function() {
jQuery(this).on('keyup input', function() { resizeTextarea(this); });
jQuery(this).on('focus input', function() { resizeTextarea(this); });
resizeTextarea(this);
});
jQuery('.collapse').on('shown.bs.collapse', function () {
$('#'+$(this).attr('id')).find('textarea.autoExpand').each(function () {
resizeTextarea(this);
});
})
$(function() {
$('.datepicker-range').datepicker({
@ -392,7 +402,6 @@ $(function() {
});
$('.datepicker-base').datepicker({
calendarWeeks: true,
todayBtn: 'linked',