我正在使用Dokuwiki并希望在使用Syntaxhighlighter3时摆脱内置代码框(带灰色轮廓的框)。
感谢是否有人知道如何做到这一点。
答案 0 :(得分:3)
将这些行添加到css文件中(在您的情况下 shCore.css )
box-shadow: 0 0 0 0 !important;
文件 sxh3 \ styles \ shCore.css (当在第28行插入上面的行时)如下所示:
.syntaxhighlighter table tbody,
.syntaxhighlighter table thead,
.syntaxhighlighter table caption,
.syntaxhighlighter textarea {
-moz-border-radius: 0 0 0 0 !important;
-webkit-border-radius: 0 0 0 0 !important;
box-shadow: 0 0 0 0 !important; /* <-- this line */
background: none !important;
border: 0 !important;
bottom: auto !important;
float: none !important;
height: auto !important;