overrided breadcrumbs stylesheet

git-svn-id: http://svn.d4science-ii.research-infrastructures.eu/gcube/trunk/portlets/user/workspace@99046 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Francesco Mangiacrapa 2014-07-28 16:43:04 +00:00
parent 5e363e7074
commit 8ec136aee6
4 changed files with 62 additions and 2 deletions

View File

@ -0,0 +1,26 @@
package org.gcube.portlets.user.workspace.resources;
/**
*
*/
/**
* @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it
* @Jul 28, 2014
*
*/
import com.github.gwtbootstrap.client.ui.config.Configurator;
import com.github.gwtbootstrap.client.ui.resources.Resources;
import com.google.gwt.core.client.GWT;
public class ExampleConfigurator implements Configurator {
public Resources getResources() {
return GWT.create(ExampleResources.class);
}
public boolean hasResponsiveDesign() {
return false;
}
}

View File

@ -0,0 +1,18 @@
package org.gcube.portlets.user.workspace.resources;
/**
*
*/
/**
* @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it
* @Jul 28, 2014
*
*/
import com.github.gwtbootstrap.client.ui.resources.Resources;
import com.google.gwt.resources.client.TextResource;
public interface ExampleResources extends Resources {
@Source("css/bootstrap.min.css")
TextResource bootstrapCss();
}

View File

@ -0,0 +1,5 @@
@CHARSET "UTF-8";
.testcss{
}

View File

@ -5,9 +5,9 @@
<!-- inherits GCUBE Quick tour -->
<inherits name='org.gcube.portlets.widgets.guidedtour.GuidedTour' />
<inherits name="com.github.gwtbootstrap.Bootstrap" />
<!-- Moduel GXT -->
<inherits name='com.extjs.gxt.ui.GXT' />
@ -31,4 +31,15 @@
<source path='client' />
<source path='shared' />
<!--pay attention in this part -->
<source path='resources' />
<replace-with
class="org.gcube.portlets.user.workspace.resources.ExampleConfigurator">
<when-type-is class="com.github.gwtbootstrap.client.ui.config.Configurator" />
</replace-with>
<public path="resources">
<exclude name="** /*.java" />
<exclude name="** /*.class" />
</public>
</module>