0000931 0000932

dev
Wayne 2 years ago
parent 05df92b65e
commit a8a9260cd3

@ -51,15 +51,18 @@
/* @ckeditor/ckeditor5-table/theme/table.css */ /* @ckeditor/ckeditor5-table/theme/table.css */
.ck-content .table { .ck-content .table {
margin: 0.9em auto; margin: 0.9em auto;
display: table; /* display: table; */
} }
/* @ckeditor/ckeditor5-table/theme/table.css */ /* @ckeditor/ckeditor5-table/theme/table.css */
.ck-content .table table { .ck-content .table table {
border-collapse: collapse; border-collapse: collapse;
border-spacing: 0; border-spacing: 0;
width: 100%; width: 100%;
height: 100%; /* height: 100%; */
border: 1px double hsl(0, 0%, 70%); /* border: 1px double hsl(0, 0%, 70%); */
white-space: nowrap;
overflow-x: auto;
display: block;
} }
/* @ckeditor/ckeditor5-table/theme/table.css */ /* @ckeditor/ckeditor5-table/theme/table.css */
.ck-content .table table td, .ck-content .table table td,
@ -543,3 +546,16 @@ margin-left: -15px;
display: none; display: none;
} }
} }
.table {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.table table {
width: 100%;
white-space: nowrap;
}

@ -2545,7 +2545,7 @@ textarea.form-control-lg {
-moz-appearance: none; -moz-appearance: none;
appearance: none; appearance: none;
-webkit-print-color-adjust: exact; -webkit-print-color-adjust: exact;
print-color-adjust: exact; color-adjust: exact;
} }
.form-check-input[type=checkbox] { .form-check-input[type=checkbox] {
border-radius: 0.25em; border-radius: 0.25em;
@ -13047,6 +13047,9 @@ footer.footer .dotCircle img {
.main.products .section { .main.products .section {
padding-bottom: 80px; padding-bottom: 80px;
} }
.main.products .section .content {
word-break: break-all;
}
.main.products .section .content .block { .main.products .section .content .block {
padding-bottom: 30px; padding-bottom: 30px;
margin-bottom: 30px; margin-bottom: 30px;

@ -5,6 +5,14 @@ $(function() {
$('[data-submenu]').submenupicker(); $('[data-submenu]').submenupicker();
const navLinks = document.querySelectorAll('.nav-item')
const menuToggle = document.getElementById('navbarText')
const bsCollapse = new bootstrap.Collapse(menuToggle)
navLinks.forEach((target) => {
target.addEventListener('click', () => { bsCollapse.toggle() })
})
// new WOW().init(); // new WOW().init();
}); });

Loading…
Cancel
Save