planetfederal / wps-gui

Graphical User Interface (Model Builder) for OGC:WPS (Web Processing Services)
http://boundlessgeo.com
Apache License 2.0
27 stars 15 forks source link

wrong expand symbol in IE9 #172

Closed bartvde closed 10 years ago

bartvde commented 10 years ago

screen shot 2014-10-23 at 10 10 04

bartvde commented 10 years ago

should be > instead

bartvde commented 10 years ago

ah probably this part of our CSS does not work in IE9:

.palette-header i {
    float: right;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}
.palette-header i.expanded {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}