Skip to content

Commit

Permalink
Updated: eZOE / TinyMCE / JQuery eZXML Field Editor Bugfixes for new …
Browse files Browse the repository at this point in the history
…design implementation
  • Loading branch information
se7enxweb committed Dec 11, 2024
1 parent f3a1d31 commit 9e83074
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
14 changes: 8 additions & 6 deletions design/admin3/javascript/ezadmin_menubar.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,11 @@ function adjustHeaderHeight() {
dashboard.style.setProperty('--header-height', `${headerHeight / 16}rem`);
}

$(function () {
sidebarToggle();
navbarToggle();
adjustHeaderHeight();
wrapTable();
});
(($) => {
$(function () {
sidebarToggle();
navbarToggle();
adjustHeaderHeight();
// wrapTable();
});
})(jQuery);
5 changes: 3 additions & 2 deletions design/admin3/stylesheets/pagelayout.css
Original file line number Diff line number Diff line change
Expand Up @@ -1417,14 +1417,14 @@ input:-moz-placeholder {
overflow-x: auto;
display: block;
clear: both;
max-width: calc(100vw - 3.25rem);
max-width: calc(100vw - 2rem);
}

div:has(> table) {
overflow-x: auto;
display: block;
clear: both;
max-width: calc(100vw - 3.25rem);
max-width: calc(100vw - 2rem);
}

@media screen and (min-width: 576px) {
Expand Down Expand Up @@ -1575,4 +1575,5 @@ fieldset {

#debug {
padding: 1rem;
max-width: 100%;
}

0 comments on commit 9e83074

Please sign in to comment.