I have a problem. I use vaadin inside the lifeguard. I have successfully written a fully responsive (yes, table) theme for vaadin based on bootstrap. Now I import it into liferay. Everything went fine until I had to update Liferay, where their new responsive theme uses the same class names as bootstrap, but with a different behavior (sad, very sad face).
The solution I was thinking so far is to apply the class to compiled css vaadin, for example:
.daVaadinTheme {
@import bootstrap.css;
}
therefore, the content will be compiled as follows:
.daVaadinTheme h1.insideTheFile{
}
.daVaadinTheme h2.insideTheFile{
}
But, as you can understand, obviously does not work.
Do you have a solution?
! , . CSS CSS/SCSS , , , . , CSS ...
: ( )
@import scss:
test.scss:
.daVaadinTheme{
@import "bootstrap.scss";
}