summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormtomasz@chromium.org <mtomasz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-12 01:29:53 +0000
committermtomasz@chromium.org <mtomasz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-12 01:29:53 +0000
commit69f75a9870fb740478affc77b87cbc8531e015d2 (patch)
treee159d89d61afc7c518979ae936767cff07834635
parent6fe3d470113c0472f02602f5275f43b85fa0ce21 (diff)
downloadchromium_src-69f75a9870fb740478affc77b87cbc8531e015d2.zip
chromium_src-69f75a9870fb740478affc77b87cbc8531e015d2.tar.gz
chromium_src-69f75a9870fb740478affc77b87cbc8531e015d2.tar.bz2
Merge 229723 "Fix cropping cursors in the gallery."
> Fix cropping cursors in the gallery. > > This patch fixes the CSS rules, so they have proper syntax. > > TEST=Try to crop, mouse cursors should be visible. > BUG=305087 > > Review URL: https://codereview.chromium.org/26897006 TBR=mtomasz@chromium.org Review URL: https://codereview.chromium.org/108483005 git-svn-id: svn://svn.chromium.org/chrome/branches/1650/src@240235 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/resources/file_manager/css/gallery.css12
1 files changed, 6 insertions, 6 deletions
diff --git a/chrome/browser/resources/file_manager/css/gallery.css b/chrome/browser/resources/file_manager/css/gallery.css
index 30aac69..9e2db7a 100644
--- a/chrome/browser/resources/file_manager/css/gallery.css
+++ b/chrome/browser/resources/file_manager/css/gallery.css
@@ -79,41 +79,41 @@ body {
.gallery[tools] .image-container[cursor='move'] {
cursor: -webkit-image-set(
url('../images/gallery/cursor_move.png') 1x,
- url('../images/gallery/2x/cursor_move.png') 2x) 15 15;
+ url('../images/gallery/2x/cursor_move.png') 2x) 15 15, auto;
}
.gallery[tools] .image-container[cursor='crop'] {
cursor: -webkit-image-set(
url('../images/gallery/cursor_crop.png') 1x,
- url('../images/gallery/2x/cursor_crop.png') 2x) 15 15;
+ url('../images/gallery/2x/cursor_crop.png') 2x) 15 15, auto;
}
.gallery[tools] .image-container[cursor='n-resize'],
.gallery[tools] .image-container[cursor='s-resize'] {
cursor: -webkit-image-set(
url('../images/gallery/cursor_updown.png') 1x,
- url('../images/gallery/2x/cursor_updown.png') 2x) 15 15;
+ url('../images/gallery/2x/cursor_updown.png') 2x) 15 15, auto;
}
.gallery[tools] .image-container[cursor='e-resize'],
.gallery[tools] .image-container[cursor='w-resize'] {
cursor: -webkit-image-set(
url('../images/gallery/cursor_leftright.png') 1x,
- url('../images/gallery/2x/cursor_leftright.png') 2x) 15 15;
+ url('../images/gallery/2x/cursor_leftright.png') 2x) 15 15, auto;
}
.gallery[tools] .image-container[cursor='nw-resize'],
.gallery[tools] .image-container[cursor='se-resize'] {
cursor: -webkit-image-set(
url('../images/gallery/cursor_nwse.png') 1x,
- url('../images/gallery/2x/cursor_nwse.png') 2x) 15 15;
+ url('../images/gallery/2x/cursor_nwse.png') 2x) 15 15, auto;
}
.gallery[tools] .image-container[cursor='ne-resize'],
.gallery[tools] .image-container[cursor='sw-resize'] {
cursor: -webkit-image-set(
url('../images/gallery/cursor_swne.png') 1x,
- url('../images/gallery/2x/cursor_swne.png') 2x) 15 15;
+ url('../images/gallery/2x/cursor_swne.png') 2x) 15 15, auto;
}
.gallery .image-container > .image {