You are here

multiselect.css in Multiselect 6

Same filename and directory in other branches
  1. 5.2 multiselect.css
  2. 7 multiselect.css
select.multiselect_unsel {
  width: 250px;
}
select.multiselect_sel {
  width: 250px;
}
/* LABELS ABOVE FIELDS */
.multiselect_labels {
	font-weight: bold;
	color: #999;
	width: 575px;
}
.multiselect_labels .label_unselected {
	float: left;
}
.multiselect_labels .label_selected {
	float: right;
	margin-right: 145px;
}
/* FIELDS */
.multiselect_available {
	float: left;
	width: 250px; /* Fix for IE8 - http://drupal.org/node/990806 */
}
/* BUTTONS */
ul.multiselect_btns {
  list-style: none;
  margin: 10px 10px 0px 20px;
	padding: 0px;
	float: left;
}
li.multiselect_add, li.multiselect_remove {
	background: none;
  height: 38px;
  overflow: hidden;
	width: 33px;
	margin: 0px;
	padding: 0px;
}
li.multiselect_add {
	margin-bottom: 15px;
}
.multiselect_add a {
  display: block;
  height: 38px;
  text-indent: -9999px;
  background: url(images/add.png) no-repeat;
  background-position: 0 0;
}
.multiselect_remove a {
  display: block;
  height: 38px;
  text-indent: -9999px;
  background: url(images/remove.png) no-repeat;
  background-position: 0 0;
}
.multiselect_add a:hover {background-position: -33px 0px;}
.multiselect_add a:active {background-position: -66px 0px;}
.multiselect_remove a:hover {background-position: -33px 0px;}
.multiselect_remove a:active {background-position: -66px 0px;}
/* FIELD DESCRIPTION */
.multiselect .description {
	display: block;
	clear: both;
}
/* Hide the original label placement. */
.multiselect .form-item label {
  display: none;
}

File

multiselect.css
View source
  1. select.multiselect_unsel {
  2. width: 250px;
  3. }
  4. select.multiselect_sel {
  5. width: 250px;
  6. }
  7. /* LABELS ABOVE FIELDS */
  8. .multiselect_labels {
  9. font-weight: bold;
  10. color: #999;
  11. width: 575px;
  12. }
  13. .multiselect_labels .label_unselected {
  14. float: left;
  15. }
  16. .multiselect_labels .label_selected {
  17. float: right;
  18. margin-right: 145px;
  19. }
  20. /* FIELDS */
  21. .multiselect_available {
  22. float: left;
  23. width: 250px; /* Fix for IE8 - http://drupal.org/node/990806 */
  24. }
  25. /* BUTTONS */
  26. ul.multiselect_btns {
  27. list-style: none;
  28. margin: 10px 10px 0px 20px;
  29. padding: 0px;
  30. float: left;
  31. }
  32. li.multiselect_add, li.multiselect_remove {
  33. background: none;
  34. height: 38px;
  35. overflow: hidden;
  36. width: 33px;
  37. margin: 0px;
  38. padding: 0px;
  39. }
  40. li.multiselect_add {
  41. margin-bottom: 15px;
  42. }
  43. .multiselect_add a {
  44. display: block;
  45. height: 38px;
  46. text-indent: -9999px;
  47. background: url(images/add.png) no-repeat;
  48. background-position: 0 0;
  49. }
  50. .multiselect_remove a {
  51. display: block;
  52. height: 38px;
  53. text-indent: -9999px;
  54. background: url(images/remove.png) no-repeat;
  55. background-position: 0 0;
  56. }
  57. .multiselect_add a:hover {background-position: -33px 0px;}
  58. .multiselect_add a:active {background-position: -66px 0px;}
  59. .multiselect_remove a:hover {background-position: -33px 0px;}
  60. .multiselect_remove a:active {background-position: -66px 0px;}
  61. /* FIELD DESCRIPTION */
  62. .multiselect .description {
  63. display: block;
  64. clear: both;
  65. }
  66. /* Hide the original label placement. */
  67. .multiselect .form-item label {
  68. display: none;
  69. }