37 lines
642 B
CSS
37 lines
642 B
CSS
/*
|
|
* imgAreaSelect style to be used with deprecated options
|
|
*/
|
|
|
|
.imgareaselect-border1, .imgareaselect-border2,
|
|
.imgareaselect-border3, .imgareaselect-border4 {
|
|
filter: alpha(opacity=50);
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.imgareaselect-border1 {
|
|
border: solid 1px #000000;
|
|
}
|
|
|
|
.imgareaselect-border2 {
|
|
border: dashed 1px #ffffff;
|
|
}
|
|
|
|
.imgareaselect-handle {
|
|
background-color: #ffffff;
|
|
border: solid 1px #000000;
|
|
filter: alpha(opacity=50);
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.imgareaselect-outer {
|
|
background-color: #000000;
|
|
filter: alpha(opacity=40);
|
|
opacity: 0.4;
|
|
}
|
|
|
|
.imgareaselect-selection {
|
|
background-color: #ffffff;
|
|
filter: alpha(opacity=0);
|
|
opacity: 0;
|
|
}
|