4

在此处输入图像描述

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

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

4

1 回答 1

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;
于 2013-02-27T04:29:58.303 回答