如何隐藏右侧TOC中的水平滚动条?

时间:2015-02-18 08:13:30

标签: maven asciidoctor

我使用asciidoctor-maven-plugin生成asciidoctor。 输出包含右侧TOC。

当此TOC中的链接变大时,TOC显示水平滚动条。

我可以通过asciidoctor-maven-plugin添加一些简单的CSS来轻松禁用它吗?

1 个答案:

答案 0 :(得分:0)

是的,这是asciidoctor.css中的默认定义:

#toc.toc2 {
  width: 20em;
}

在css文件(my-theme.css)的自己的副本中将其更改为您的要求,并通过以下方式在asciidoctor-maven-plugin中使用它:

<configuration>
  <attributes>
    <stylesheet>my-theme.css</stylesheet>
  </attributes>
</configuration>