html - How can I disable Alloy UI CSS in a Liferay Custom Theme? -
i want develop liferay custom theme. need disable alloy ui css , bootstrap css. other functionality drag , drop protlet , calender events need remain same.
the thing need disable alloy ui css in theme level. how can achieve that? in page need edit/remove css of alloy?
there 3 levels can base theme. each layer builds on top of next.
_unstyled- has rule sets, no rules._styled- structural css copied theme.classic- css copied default liferay theme.
to use other classic add property named "theme.parent" value 1 of above. example:
<?xml version="1.0"?> <!doctype project> <project name="sample-styled-minimal-theme" basedir="." default="deploy"> <property name="plugin.version" value="1" /> <property name="theme.parent" value="_styled" /> <import file="../build-common-theme.xml" /> </project>
Comments
Post a Comment