You are here

multiselect.css in Multiselect 5.2

Same filename and directory in other branches
  1. 6 multiselect.css
  2. 7 multiselect.css
fieldset.multiselect
{
  width: 90%;
  /*keeps the select boxes from dropping down when window is shrunk*/
  min-width: 300px;
}

fieldset.multiselect div 
{
  float: left;
  width: 40%;
}

fieldset.multiselect div select
{
  width: 100%;
}

select.selected
{
  width: 100%;
}

fieldset.multiselect span.select img
{
  display: block;
  float: left;
  margin-top: 50px;
}


fieldset.multiselect span.deselect img
{
  display: block;
  float: left;
  margin-top: 100px;
  margin-left: -45px;
}

fieldset.multiselect div.description
{
  width: 100%;
}

File

multiselect.css
View source
  1. fieldset.multiselect
  2. {
  3. width: 90%;
  4. /*keeps the select boxes from dropping down when window is shrunk*/
  5. min-width: 300px;
  6. }
  7. fieldset.multiselect div
  8. {
  9. float: left;
  10. width: 40%;
  11. }
  12. fieldset.multiselect div select
  13. {
  14. width: 100%;
  15. }
  16. select.selected
  17. {
  18. width: 100%;
  19. }
  20. fieldset.multiselect span.select img
  21. {
  22. display: block;
  23. float: left;
  24. margin-top: 50px;
  25. }
  26. fieldset.multiselect span.deselect img
  27. {
  28. display: block;
  29. float: left;
  30. margin-top: 100px;
  31. margin-left: -45px;
  32. }
  33. fieldset.multiselect div.description
  34. {
  35. width: 100%;
  36. }