What is the a best/correct way to create a Pentaho Dashboard (CDE) that uses full width (100%) of a browser window size? I need to remove the default 960 pixel width that screen.css defines.
问问题
4526 次
1 回答
5
使用
bootstrap
仪表板类型而不是 defaultblueprint
。Settings > Dashboard Type
可以在 CDE 编辑器中更改仪表板类型。如果你想使用全宽,你需要覆盖默认的 CSS 定义
container div
。默认值来自biserver-ce/pentaho-solutions/system/pentaho-cdf/css/cdf-bootstrap-style-includes.css
..container { width: 1170px; }
要覆盖 CSS导航到
Add Resource
仪表板Layout
定义并添加CSS Code Snippet
以下代码:.container { width: auto; }
于 2015-04-01T15:53:59.200 回答