You are here

modules.css in Module Filter 7.2

Same filename and directory in other branches
  1. 8 css/modules.css
#system-modules table {
  table-layout: fixed;
}
#system-modules th.checkbox {
  width: 8%;
}
#system-modules th.name {
  width: 25%;
}
#system-modules th.version {
  width: 10%;
}
#system-modules th.links {
  width: 15%;
}
#system-modules td {
  vertical-align: top;
}
#system-modules .expand.inner {
  background: transparent url(../images/collapsed.png) left 0.6em no-repeat;
  margin-left: -12px;
  padding-left: 12px;
}
#system-modules .expanded.expand.inner {
  background: transparent url(../images/expanded.png) left 0.6em no-repeat;
}
#system-modules .description {
  cursor: pointer;
}
#system-modules .description .inner,
#system-modules .path {
  overflow: hidden; /* truncates text if too long */
  text-overflow: ellipsis;
  white-space: nowrap;
}
#system-modules .description .inner.expanded > * {
  cursor: auto;
}
#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;
}

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.version {
  11. width: 10%;
  12. }
  13. #system-modules th.links {
  14. width: 15%;
  15. }
  16. #system-modules td {
  17. vertical-align: top;
  18. }
  19. #system-modules .expand.inner {
  20. background: transparent url(../images/collapsed.png) left 0.6em no-repeat;
  21. margin-left: -12px;
  22. padding-left: 12px;
  23. }
  24. #system-modules .expanded.expand.inner {
  25. background: transparent url(../images/expanded.png) left 0.6em no-repeat;
  26. }
  27. #system-modules .description {
  28. cursor: pointer;
  29. }
  30. #system-modules .description .inner,
  31. #system-modules .path {
  32. overflow: hidden; /* truncates text if too long */
  33. text-overflow: ellipsis;
  34. white-space: nowrap;
  35. }
  36. #system-modules .description .inner.expanded > * {
  37. cursor: auto;
  38. }
  39. #system-modules .description .requirements,
  40. #system-modules .description .links {
  41. display: none;
  42. }
  43. #system-modules .description .expanded.inner {
  44. overflow: visible;
  45. white-space: normal;
  46. }
  47. #system-modules .description .expanded .requirements,
  48. #system-modules .description .expanded .links {
  49. display: block;
  50. }
  51. #system-modules .requirements {
  52. padding: 5px 0;
  53. max-width: 490px;
  54. }