diff options
author | patrickdo <patrickdo@users.noreply.github.com> | 2014-09-03 20:36:28 -0700 |
---|---|---|
committer | patrickdo <patrickdo@users.noreply.github.com> | 2014-09-03 20:36:28 -0700 |
commit | c737aa6b0c3d932b1e14d51b2505f479710d2505 (patch) | |
tree | 24550528b96904e4cd6d21ed10fa3eb9b4d387ec | |
parent | f2402d9209b48693b3093962173ecb5495026193 (diff) | |
download | multiple-select-c737aa6b0c3d932b1e14d51b2505f479710d2505.zip multiple-select-c737aa6b0c3d932b1e14d51b2505f479710d2505.tar.gz multiple-select-c737aa6b0c3d932b1e14d51b2505f479710d2505.tar.bz2 |
switching up/down arrows to be more consistent
See http://ivaynberg.github.io/select2/ and http://harvesthq.github.io/chosen/ .
Arrow should be pointing down when selectbox is closed, and pointing up when selectbox is open.
-rw-r--r-- | multiple-select.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/multiple-select.css b/multiple-select.css index 4aeb323..5c6a017 100644 --- a/multiple-select.css +++ b/multiple-select.css @@ -56,11 +56,11 @@ right: 0; width: 20px; height: 25px; - background: url('multiple-select.png') right top no-repeat; + background: url('multiple-select.png') left top no-repeat; } .ms-choice > div.open { - background: url('multiple-select.png') left top no-repeat; + background: url('multiple-select.png') right top no-repeat; } .ms-drop { |