-
+ 5FC76E85EB473E5BACB61C94D25D71E70271E3E1ED04D8EECB97BAE9290B5BB64B8874CCD73EEF665B51A1519B914F569945DDBE1292691367D3929913F18F6E
mp-wp/wp-includes/js/crop/cropper.css
(0 . 0)(1 . 165)
100340 .imgCrop_wrap {
100341 /* width: 500px; @done_in_js */
100342 /* height: 375px; @done_in_js */
100343 position: relative;
100344 cursor: crosshair;
100345 }
100346
100347 /* an extra classname is applied for Opera < 9.0 to fix it's lack of opacity support */
100348 .imgCrop_wrap.opera8 .imgCrop_overlay,
100349 .imgCrop_wrap.opera8 .imgCrop_clickArea {
100350 background-color: transparent;
100351 }
100352
100353 /* fix for IE displaying all boxes at line-height by default, although they are still 1 pixel high until we combine them with the pointless span */
100354 .imgCrop_wrap,
100355 .imgCrop_wrap * {
100356 font-size: 0;
100357 }
100358
100359 .imgCrop_overlay {
100360 background-color: #000;
100361 opacity: 0.5;
100362 filter:alpha(opacity=50);
100363 position: absolute;
100364 width: 100%;
100365 height: 100%;
100366 }
100367
100368 .imgCrop_selArea {
100369 position: absolute;
100370 /* @done_in_js
100371 top: 20px;
100372 left: 20px;
100373 width: 200px;
100374 height: 200px;
100375 background: transparent url(castle.jpg) no-repeat -210px -110px;
100376 */
100377 cursor: move;
100378 z-index: 2;
100379 }
100380
100381 /* clickArea is all a fix for IE 5.5 & 6 to allow the user to click on the given area */
100382 .imgCrop_clickArea {
100383 width: 100%;
100384 height: 100%;
100385 background-color: #FFF;
100386 opacity: 0.01;
100387 filter:alpha(opacity=01);
100388 }
100389
100390 .imgCrop_marqueeHoriz {
100391 position: absolute;
100392 width: 100%;
100393 height: 1px;
100394 background: transparent url(marqueeHoriz.gif) repeat-x 0 0;
100395 z-index: 3;
100396 }
100397
100398 .imgCrop_marqueeVert {
100399 position: absolute;
100400 height: 100%;
100401 width: 1px;
100402 background: transparent url(marqueeVert.gif) repeat-y 0 0;
100403 z-index: 3;
100404 }
100405
100406 .imgCrop_marqueeNorth { top: 0; left: 0; }
100407 .imgCrop_marqueeEast { top: 0; right: 0; }
100408 .imgCrop_marqueeSouth { bottom: 0px; left: 0; }
100409 .imgCrop_marqueeWest { top: 0; left: 0; }
100410
100411
100412 .imgCrop_handle {
100413 position: absolute;
100414 border: 1px solid #333;
100415 width: 6px;
100416 height: 6px;
100417 background: #FFF;
100418 opacity: 0.5;
100419 filter:alpha(opacity=50);
100420 z-index: 4;
100421 }
100422
100423 /* fix IE 5 box model */
100424 * html .imgCrop_handle {
100425 width: 8px;
100426 height: 8px;
100427 wid\th: 6px;
100428 hei\ght: 6px;
100429 }
100430
100431 .imgCrop_handleN {
100432 top: -3px;
100433 left: 0;
100434 /* margin-left: 49%; @done_in_js */
100435 cursor: n-resize;
100436 }
100437
100438 .imgCrop_handleNE {
100439 top: -3px;
100440 right: -3px;
100441 cursor: ne-resize;
100442 }
100443
100444 .imgCrop_handleE {
100445 top: 0;
100446 right: -3px;
100447 /* margin-top: 49%; @done_in_js */
100448 cursor: e-resize;
100449 }
100450
100451 .imgCrop_handleSE {
100452 right: -3px;
100453 bottom: -3px;
100454 cursor: se-resize;
100455 }
100456
100457 .imgCrop_handleS {
100458 right: 0;
100459 bottom: -3px;
100460 /* margin-right: 49%; @done_in_js */
100461 cursor: s-resize;
100462 }
100463
100464 .imgCrop_handleSW {
100465 left: -3px;
100466 bottom: -3px;
100467 cursor: sw-resize;
100468 }
100469
100470 .imgCrop_handleW {
100471 top: 0;
100472 left: -3px;
100473 /* margin-top: 49%; @done_in_js */
100474 cursor: e-resize;
100475 }
100476
100477 .imgCrop_handleNW {
100478 top: -3px;
100479 left: -3px;
100480 cursor: nw-resize;
100481 }
100482
100483 /**
100484 * Create an area to click & drag around on as the default browser behaviour is to let you drag the image
100485 */
100486 .imgCrop_dragArea {
100487 width: 100%;
100488 height: 100%;
100489 z-index: 200;
100490 position: absolute;
100491 top: 0;
100492 left: 0;
100493 }
100494
100495 .imgCrop_previewWrap {
100496 /* width: 200px; @done_in_js */
100497 /* height: 200px; @done_in_js */
100498 overflow: hidden;
100499 position: relative;
100500 }
100501
100502 .imgCrop_previewWrap img {
100503 position: absolute;
100504 }