留言板

What version of Bootstrap is used in Liferay 6.2

thumbnail
Anuvab Ghosh,修改在8 年前。

What version of Bootstrap is used in Liferay 6.2

Regular Member 帖子: 130 加入日期: 15-4-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
Olaf Kock,修改在8 年前。

RE: What version of Bootstrap is used in Liferay 6.2

Liferay Legend 帖子: 6403 加入日期: 08-9-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
Devang Patel,修改在8 年前。

RE: What version of Bootstrap is used in Liferay 6.2

Regular Member 帖子: 247 加入日期: 15-1-19 最近的帖子
Hi Anuvab Ghosh,
Liferay 6.2 uses bootstrap v2.3.2
Here your solution.

Thanks,
Devang Patel
ildar sl,修改在8 年前。

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
Anuvab Ghosh,修改在8 年前。

RE: What version of Bootstrap is used in Liferay 6.2

Regular Member 帖子: 130 加入日期: 15-4-18 最近的帖子
Thanks to all for your valuable replies.

I will try your solutions to resolve this issue.