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

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

jsf - How to ajax update an item in the footer of a PrimeFaces dataTable? -

django - CSRF verification failed. Request aborted. CSRF cookie not set -