使用Syntaxhighlighter3时如何禁用内置代码框?

时间:2013-02-19 03:20:20

标签: dokuwiki syntaxhighlighter

enter image description here

我正在使用Dokuwiki并希望在使用Syntaxhighlighter3时摆脱内置代码框(带灰色轮廓的框)。

感谢是否有人知道如何做到这一点。

1 个答案:

答案 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;