Updating on Task #17248

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/performfish-analytics-portlet@181510 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Francesco Mangiacrapa 2019-09-06 09:16:28 +00:00
parent f983ca871c
commit 6fe0dfb0dc
3 changed files with 14 additions and 3 deletions

View File

@ -50,13 +50,10 @@ import com.github.gwtbootstrap.client.ui.Tab;
import com.github.gwtbootstrap.client.ui.constants.AlertType;
import com.github.gwtbootstrap.client.ui.constants.ControlGroupType;
import com.google.gwt.core.client.Scheduler;
import com.google.gwt.core.client.Scheduler.ScheduledCommand;
import com.google.gwt.core.shared.GWT;
import com.google.gwt.dom.client.Element;
import com.google.gwt.dom.client.Style.Unit;
import com.google.gwt.event.shared.HandlerManager;
import com.google.gwt.resources.client.TextResource;
import com.google.gwt.user.client.DOM;
import com.google.gwt.user.client.Window;
import com.google.gwt.user.client.rpc.AsyncCallback;
import com.google.gwt.user.client.ui.ComplexPanel;

View File

@ -12,6 +12,9 @@ import com.github.gwtbootstrap.client.ui.TabPanel.ShowEvent;
import com.github.gwtbootstrap.client.ui.TabPanel.ShowEvent.Handler;
import com.github.gwtbootstrap.client.ui.constants.IconType;
import com.google.gwt.core.client.GWT;
import com.google.gwt.dom.client.Style;
import com.google.gwt.dom.client.Style.TextAlign;
import com.google.gwt.dom.client.Style.Unit;
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.event.dom.client.ClickHandler;
import com.google.gwt.event.logical.shared.AttachEvent;
@ -138,7 +141,9 @@ public class TabPanelView extends Composite {
tab.setHeading(tabTitle);
results.add(tab);
if(tabDescr!=null) {
//tabDescr = "<h5>"+tabDescr+"</h5>";
HTML html = new HTML(tabDescr);
html.addStyleName("to-algorithms-descr");
tab.add(html);
}
tab.add(w);

View File

@ -323,3 +323,12 @@ table.simpletable-synoptic td:first-child{
font-size: 16px;
font-weight: bold;
}
.to-algorithms-descr {
margin: 20px;
font-size: 16px;
color: #888;
text-align: justify;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: bold;
}