minor fix for role button
git-svn-id: http://svn.d4science-ii.research-infrastructures.eu/gcube/trunk/portlets/user/gcube-ckan-datacatalog@131941 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
f27fda3d63
commit
ab7518009d
|
@ -4,6 +4,9 @@
|
|||
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/>
|
||||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
|
||||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
|
||||
<dependent-module archiveName="ckan-util-library-1.1.0-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/ckan-util-library/ckan-util-library">
|
||||
<dependency-type>uses</dependency-type>
|
||||
</dependent-module>
|
||||
<property name="context-root" value="gcube-ckan-datacatalog"/>
|
||||
<property name="java-output-path" value="/gcube-ckan-datacatalog/target/gcube-ckan-datacatalog-1.0.0-SNAPSHOT/WEB-INF/classes"/>
|
||||
</wb-module>
|
||||
|
|
|
@ -85,6 +85,7 @@ public class CkanOrganizationsPanel extends VerticalPanel{
|
|||
Button role = new Button();
|
||||
role.setType(ButtonType.LINK);
|
||||
role.setText("as Catalogue-" + org.getRole().toString().toLowerCase());
|
||||
role.addStyleName("button-as-role-style");
|
||||
role.getElement().getStyle().setProperty("pointer-events", "none");
|
||||
line.add(role);
|
||||
ListItem item = new ListItem(line);
|
||||
|
|
|
@ -105,4 +105,9 @@ h1 {
|
|||
|
||||
.footer-organizations>a {
|
||||
color: rgba(255, 255, 255, 0.6) !important;
|
||||
}
|
||||
|
||||
.button-as-role-style {
|
||||
padding-left: 0px !important;
|
||||
color: black !important;
|
||||
}
|
Loading…
Reference in New Issue