diff options
author | Berend <please@frique.me> | 2013-08-13 23:15:31 +0700 |
---|---|---|
committer | Berend <please@frique.me> | 2013-08-13 23:15:31 +0700 |
commit | aa4622e8052d27e713c195d9ec2c8c63a4cb805e (patch) | |
tree | b66150b6ab802c3485380b93ab402f29bfab0031 | |
parent | b2f767aaff1496b4a26a387cfb94c473450b0f00 (diff) | |
download | multi-select-aa4622e8052d27e713c195d9ec2c8c63a4cb805e.zip multi-select-aa4622e8052d27e713c195d9ec2c8c63a4cb805e.tar.gz multi-select-aa4622e8052d27e713c195d9ec2c8c63a4cb805e.tar.bz2 |
Places the columns next to eachother instead of underneath
The 45% + 10% + 45% failed in IE7, making the 2nd column fall
underneath the first. This fixes that by changing the widths to 45% +
45% + [whatever is left].
-rw-r--r-- | css/multi-select.css | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/css/multi-select.css b/css/multi-select.css index 1b2db13..8b3bb5e 100644 --- a/css/multi-select.css +++ b/css/multi-select.css @@ -20,6 +20,9 @@ float: left;
width: 45%;
}
+.ms-container .ms-selection{
+ float: right;
+}
.ms-container .ms-list{
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
@@ -40,10 +43,6 @@ overflow-y: auto;
}
-.ms-container .ms-selectable{
- margin-right: 10%;
-}
-
.ms-container .ms-list.ms-focus{
border-color: rgba(82, 168, 236, 0.8);
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|