ref 12119:AccountingDashboard - Create a new Accounting Dashboard
https://support.d4science.org/issues/12119 Fixed offsetLeft and offsetTop issue. git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/accounting-dashboard@169898 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
44997fa4fc
commit
f6c3c046de
|
@ -85,6 +85,7 @@ public class ReportAreaView extends ViewWithUiHandlers<ReportAreaPresenter>
|
||||||
}
|
}
|
||||||
|
|
||||||
TabPanel tabPanel = new TabPanel();
|
TabPanel tabPanel = new TabPanel();
|
||||||
|
tabPanel.addStyleName(resources.uiDataCss().uiDataReportTabPanel());
|
||||||
boolean first = true;
|
boolean first = true;
|
||||||
for (String category : categories.keySet()) {
|
for (String category : categories.keySet()) {
|
||||||
Tab tab = new Tab();
|
Tab tab = new Tab();
|
||||||
|
|
|
@ -35,6 +35,8 @@ public interface AppResources extends ClientBundle {
|
||||||
|
|
||||||
String uiDataReportPanel();
|
String uiDataReportPanel();
|
||||||
|
|
||||||
|
String uiDataReportTabPanel();
|
||||||
|
|
||||||
String uiDataChartWrapper();
|
String uiDataChartWrapper();
|
||||||
|
|
||||||
String uiDataChartCanvas();
|
String uiDataChartCanvas();
|
||||||
|
|
|
@ -50,11 +50,20 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Report*/
|
/* Report*/
|
||||||
.uiDataReportPanel {
|
.uiDataReportPanel {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* TabPanel */
|
||||||
|
.uiDataReportTabPanel {
|
||||||
|
max-width: 800px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Chart */
|
/* Chart */
|
||||||
.uiDataChartWrapper {
|
.uiDataChartWrapper {
|
||||||
width: 800px;
|
width: 800px;
|
||||||
|
|
Loading…
Reference in New Issue