Fórum

What version of Bootstrap is used in Liferay 6.2

thumbnail
Anuvab Ghosh, modificado 8 Anos atrás.

What version of Bootstrap is used in Liferay 6.2

Regular Member Postagens: 130 Data de Entrada: 18/04/15 Postagens Recentes
Hi,

Please tell me what version of Bootstrap is used in Liferay 6.2. Is it possible to change the version(3 or above) of Bootstrap in Liferay 6.2 ? If yes please tell me how.

Thanks in Advance.
thumbnail
Olaf Kock, modificado 8 Anos atrás.

RE: What version of Bootstrap is used in Liferay 6.2

Liferay Legend Postagens: 6403 Data de Entrada: 23/09/08 Postagens Recentes
It's Bootstrap 2.3.2. While it's certainly possible to change this, it will be a lot of hard work and to my knowledge, nobody has done that yet. You'd have to make sure that all the stock portlets will still run - which is a lot of work and probably is not maintainable.
thumbnail
Devang Patel, modificado 8 Anos atrás.

RE: What version of Bootstrap is used in Liferay 6.2

Regular Member Postagens: 247 Data de Entrada: 19/01/15 Postagens Recentes
Hi Anuvab Ghosh,
Liferay 6.2 uses bootstrap v2.3.2
Here your solution.

Thanks,
Devang Patel
ildar sl, modificado 8 Anos atrás.

RE: What version of Bootstrap is used in Liferay 6.2

Regular Member Postagens: 158 Data de Entrada: 12/12/11 Postagens Recentes
Hi Anuvab.

Create/replace _diff/css/aui.css
in

section.bootstrap3{
	@import "aui/bootstrap_3.3.5";
	@import "aui/bootstrap-theme_3.3.5";
}
section.bootstrap4{
	@import "aui/bootstrap_4a1";
}


and copy files:
_diff/css/aui/_bootstrap_3.3.5.scss
_diff/css/aui/_bootstrap_4a1.scss
_diff/css/aui/_bootstrap-theme_3.3.5.scss

_diff/css/fonts/glyphicons-halflings-regular.eot
_diff/css/fonts/glyphicons-halflings-regular.svg
_diff/css/fonts/glyphicons-halflings-regular.ttf
_diff/css/fonts/glyphicons-halflings-regular.woff
_diff/css/fonts/glyphicons-halflings-regular.woff2
thumbnail
Anuvab Ghosh, modificado 8 Anos atrás.

RE: What version of Bootstrap is used in Liferay 6.2

Regular Member Postagens: 130 Data de Entrada: 18/04/15 Postagens Recentes
Thanks to all for your valuable replies.

I will try your solutions to resolve this issue.