Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

Commit

Permalink
fix(image fuzzy): fix it
Browse files Browse the repository at this point in the history
  • Loading branch information
DR-Univer committed Oct 16, 2020
1 parent 1bf436a commit 8fb1a88
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/css/luckysheet-core.css
Original file line number Diff line number Diff line change
Expand Up @@ -6746,7 +6746,12 @@ fieldset[disabled] .btn-danger.focus {
left: 0;
top: 0;
cursor: move;
image-rendering: -moz-crisp-edges; /* Firefox */
image-rendering: -o-crisp-edges; /* Opera */
image-rendering: -webkit-optimize-contrast; /*Webkit (non-standard naming) */
image-rendering: crisp-edges;
}

#luckysheet-modal-dialog-cropping::before{
content: "";
outline: 1px solid #fff;
Expand Down Expand Up @@ -7039,6 +7044,10 @@ fieldset[disabled] .btn-danger.focus {
box-shadow:none;
background: none;
box-shadow:none;
image-rendering: -moz-crisp-edges; /* Firefox */
image-rendering: -o-crisp-edges; /* Opera */
image-rendering: -webkit-optimize-contrast; /*Webkit (non-standard naming) */
image-rendering: crisp-edges;
}

.luckysheet-modal-dialog-image .luckysheet-modal-dialog-content, #luckysheet-modal-dialog-activeImage .luckysheet-modal-dialog-content{
Expand Down

0 comments on commit 8fb1a88

Please sign in to comment.