掲示板

What version of Bootstrap is used in Liferay 6.2

thumbnail
8年前 に Anuvab Ghosh によって更新されました。

What version of Bootstrap is used in Liferay 6.2

Regular Member 投稿: 130 参加年月日: 15/04/18 最新の投稿
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
8年前 に Olaf Kock によって更新されました。

RE: What version of Bootstrap is used in Liferay 6.2

Liferay Legend 投稿: 6403 参加年月日: 08/09/23 最新の投稿
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
8年前 に Devang Patel によって更新されました。

RE: What version of Bootstrap is used in Liferay 6.2

Regular Member 投稿: 247 参加年月日: 15/01/19 最新の投稿
Hi Anuvab Ghosh,
Liferay 6.2 uses bootstrap v2.3.2
Here your solution.

Thanks,
Devang Patel
8年前 に ildar sl によって更新されました。

RE: What version of Bootstrap is used in Liferay 6.2

Regular Member 投稿: 158 参加年月日: 11/12/12 最新の投稿
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
8年前 に Anuvab Ghosh によって更新されました。

RE: What version of Bootstrap is used in Liferay 6.2

Regular Member 投稿: 130 参加年月日: 15/04/18 最新の投稿
Thanks to all for your valuable replies.

I will try your solutions to resolve this issue.