You are here

codefilter.css in Code Filter 7

Same filename and directory in other branches
  1. 8 codefilter.css
  2. 5 codefilter.css
  3. 6 codefilter.css
div.codeblock {
  padding: 5px;
  border: 1px solid #ccc;
  background-color: #eee;
}

/*
Multiclass not supported in IE6.
*/
.codeblock.nowrap-expand pre,
.codeblock.nowrap-expand[class*="language-"] {
  /*
  Not supported in IE6 or 7.
  */
  white-space: nowrap;
  overflow: hidden;
}

.codeblock.nowrap-expand:hover {
  overflow-x: visible;
}

File

codefilter.css
View source
  1. div.codeblock {
  2. padding: 5px;
  3. border: 1px solid #ccc;
  4. background-color: #eee;
  5. }
  6. /*
  7. Multiclass not supported in IE6.
  8. */
  9. .codeblock.nowrap-expand pre,
  10. .codeblock.nowrap-expand[class*="language-"] {
  11. /*
  12. Not supported in IE6 or 7.
  13. */
  14. white-space: nowrap;
  15. overflow: hidden;
  16. }
  17. .codeblock.nowrap-expand:hover {
  18. overflow-x: visible;
  19. }