com.google.code.gwt.crop.client.GWTCropperIE.css Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-crop Show documentation
Show all versions of gwt-crop Show documentation
GWT plugin for image cropping
@CHARSET "UTF-8";
/* recommended to choose a value that is divisible by 2 */
@def handleSize 10px;
.base {
background-color: #000;
position: relative;
}
.imageCanvas {
opacity: 0.4;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
filter: alpha(opacity=40);
}
.selection {
border: 1px dashed white;
background: #FFFFFF;
}
.selectionDraggableBackground {
/* we need this 'hack', because without this magic IE didn't see the draggable area */
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
background: #FFF;
}
.handlesContainer {
overflow: visible;
}
.handle {
width: handleSize;
height: handleSize;
border: 1px solid white;
background: #FFFFFF;
position: absolute;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
filter: alpha(opacity=25);
opacity: 0.25;
}
.base DIV {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}