modified css style name for arrows for gxt compatibility

git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portlets/widgets/image-previewer-widget@148961 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Massimiliano Assante 2017-05-24 10:43:01 +00:00
parent 0e2f646c6f
commit 35e157c801
2 changed files with 9 additions and 5 deletions

View File

@ -16,14 +16,14 @@
<g:HorizontalPanel ui:field="commands" styleName="command-container">
<g:SimplePanel styleName="arrowYPos-left">
<b:Button title="Previous" ui:field="prevButton"
styleName="arrow-left"></b:Button>
styleName="img-prev-arrow-left"></b:Button>
</g:SimplePanel>
<b:Button title="Download" ui:field="downloadButtonSmart"></b:Button>
<b:Button title="Close" ui:field="closeButtonSmart"></b:Button>
<b:Button title="Download" ui:field="downloadButton">Download</b:Button>
<b:Button title="Close" ui:field="closeButton">Close</b:Button>
<g:SimplePanel styleName="arrowYPos-right">
<b:Button title="Next" ui:field="nextButton" styleName="arrow-right"></b:Button>
<b:Button title="Next" ui:field="nextButton" styleName="img-prev-arrow-right"></b:Button>
</g:SimplePanel>
</g:HorizontalPanel>
</g:HTMLPanel>

View File

@ -117,15 +117,19 @@
width: auto;
}
.arrow-left {
.img-prev-arrow-left {
color: gray !important;
}
.arrow-left:hover {
.img-prev-arrow-left:hover {
color: white !important;
}
.arrow-right {
.img-prev-arrow-right {
color: white !important;
}
.img-prev-arrow-right:hover {
color: white !important;
}