codefilter.css in Code Filter 7
Same filename and directory in other branches
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.cssView source
- 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;
- }