You are here

modules.css in Module Filter 8

Same filename and directory in other branches
  1. 7.2 css/modules.css
#system-modules table {
  table-layout: fixed;
}
#system-modules th.checkbox {
  width: 8%;
}
#system-modules th.name {
  width: 25%;
}
#system-modules th.links {
  width: 15%;
}
#system-modules td {
  vertical-align: top;
}
#system-modules .expand.inner {
  background: transparent url(/core/misc/menu-collapsed.png) left 0.6em no-repeat;
  margin-left: -12px;
  padding-left: 12px;
}
#system-modules .expanded.expand.inner {
  background: transparent url(/core/misc/menu-expanded.png) left 0.6em no-repeat;
}
#system-modules .description {
  cursor: pointer;
}
#system-modules .description .inner {
  overflow: hidden; /* truncates descriptions if too long */
  text-overflow: ellipsis;
  white-space: nowrap;
}
#system-modules .description .requirements,
#system-modules .description .links {
  display: none;
}
#system-modules .description .expanded.inner {
  overflow: visible;
  white-space: normal;
}
#system-modules .description .expanded .requirements,
#system-modules .description .expanded .links {
  display: block;
}
#system-modules .requirements {
  padding: 5px 0;
  max-width: 490px;
}
#system-modules td.links {
    overflow: visible;
}

File

css/modules.css
View source
  1. #system-modules table {
  2. table-layout: fixed;
  3. }
  4. #system-modules th.checkbox {
  5. width: 8%;
  6. }
  7. #system-modules th.name {
  8. width: 25%;
  9. }
  10. #system-modules th.links {
  11. width: 15%;
  12. }
  13. #system-modules td {
  14. vertical-align: top;
  15. }
  16. #system-modules .expand.inner {
  17. background: transparent url(/core/misc/menu-collapsed.png) left 0.6em no-repeat;
  18. margin-left: -12px;
  19. padding-left: 12px;
  20. }
  21. #system-modules .expanded.expand.inner {
  22. background: transparent url(/core/misc/menu-expanded.png) left 0.6em no-repeat;
  23. }
  24. #system-modules .description {
  25. cursor: pointer;
  26. }
  27. #system-modules .description .inner {
  28. overflow: hidden; /* truncates descriptions if too long */
  29. text-overflow: ellipsis;
  30. white-space: nowrap;
  31. }
  32. #system-modules .description .requirements,
  33. #system-modules .description .links {
  34. display: none;
  35. }
  36. #system-modules .description .expanded.inner {
  37. overflow: visible;
  38. white-space: normal;
  39. }
  40. #system-modules .description .expanded .requirements,
  41. #system-modules .description .expanded .links {
  42. display: block;
  43. }
  44. #system-modules .requirements {
  45. padding: 5px 0;
  46. max-width: 490px;
  47. }
  48. #system-modules td.links {
  49. overflow: visible;
  50. }