...
Create (arbitrary named) plugin for UI customizations (if such plugin does not already exists in your application)
Info Note that you do not need to specify an
<view:resource />
element inqcadoo-plugin.xml
for resources which you override. They are already registered in qcadoo-view plugin.Find relative path of resource which you want to replace with your own.
In our case this is/qcadooView/public/css/core/images/logo_small.png
.- Put new resource in
src/main/resources/<relative path obtained in step 2>
.
For example:src/main/resources/qcadooView/public/css/core/images/logo_small.png
Be aware that path contains plugin identifier of the original resource owner (in above example - qcadooView
), not plugin in which you placing new version (for example appNameCustomLook
)!
II. Adding custom CSS rules
Qcadoo Framework allow you to appending additional CSS rules without need to overriding whole existing CSS file since we provide empty qcadooView/public/css/custom.css
in version 1.2.0.
You can appending additional rules instead of replacing whole CSS sheets just by override custom.css
(see previous section).
...