3.1.2 ACE fullsize problem again

Hello,

yesterday installed latest updated 3.1.2 and now the problem back again, but slightly worse:

thank you.

bye
Chris

1 Like


Hello,
As I wrote in another post in file assets\components\ace\modx.texteditor.js, on line 308 .ace_maximized
if you change value in top: 60px; left: 70px; right: 3px; bottom: 3px;
you should see something like image above, where the left bar, the element name and the action buttons are visible.
If you want, you can add ‘cursor:pointer;’ to line 309, after .ace_maximizer{…, for ‘X’ to maximise.

It is a z-index issue and should be solved there. It does not make sense to implement specific region sizes of MODX 3.x.

Yes.
I fixed it temporarlily as following:

in manager/templates/css/index.css line 21242

/* the wrapper structure for form inputs */
.x-form-item {
  display: block;
  margin: 0;
  outline: 0 none;
  /* prevent firefox from creating ugly dotted outlines */
  position: relative;
  /* boundary for absolutely positioned elements */
  z-index: 20;
  /* general styles for form labels, paddings for various form layouts are handled below */
  /* label.x-form-item-label */
  /* is outside of the label */
  /* Tag TVs tag list below */
  /* a few styles for the old original type multi select TV */
  /* style the labels and form items in the various form layouts */
  /* .x-form-label-left needs to come first, so .x-form-label-top rules can override, as some forms are strangely nested */
  /* .x-form-element */
  /* prevent columns used inside form elements to have too much spacing, some custom TV types need this */
  /* prevent nested elements with class .container having a lot of margin, some custom TV types need this */
}

chanaged z-index from 1 to 20

Please create an issue for this on Github, so that the issue is known and (hopefully) can be fixed in the next MODX version.

yes, done.

1 Like