quickapps / cms

Modular CMS powered by CakePHP
GNU General Public License v3.0
164 stars 69 forks source link

Since latest updates all form fields seem to be missing bootstrap styles #175

Closed paulrwest closed 7 years ago

paulrwest commented 7 years ago

Hi Chris,

Sorry to pester again, since pulling your latest update of dev-master the admin area seems to have lost a lot of the default bootstrap classes from the form fields and therefore a lot of the default bootstrap styles are missing. I have checked logs and there are no errors but presuming this is not intentional.

before update:

<div class="form-group">
  <div class="form-group text ">
    <label for="label"> Label</label>
    <input type="text" name="_label" class="form-control" id="label" value="Timezone">
  </div>
</div>

after:

<div class="form-group">
  <div class="input text">
    <label for="label"> Label</label>
    <input type="text" name="_label" id="label" value="Timezone">
  </div>
</div>
botchris commented 7 years ago

Aspects classes are not being injected properly. Already fixed here https://github.com/quickapps/cms/commit/50bf8d15e799f4c1a8419d61a4a0f4415152f8d9 , update your installation using composer as usual.

I've disabled Aspects feature on testing environment as seems to be problem with latest version of a thirdparty package.

paulrwest commented 7 years ago

Thanks for fixing