diff options
| -rw-r--r-- | docs/_ext/vyos.py | 2 | ||||
| -rw-r--r-- | docs/_static/css/custom.css | 9 | ||||
| -rw-r--r-- | docs/conf.py | 10 | 
3 files changed, 9 insertions, 12 deletions
| diff --git a/docs/_ext/vyos.py b/docs/_ext/vyos.py index 7a3d75ba..4ee87d63 100644 --- a/docs/_ext/vyos.py +++ b/docs/_ext/vyos.py @@ -245,7 +245,7 @@ class CfgCmdDirective(CmdDirective):  def process_cmd_node(app, cmd, fromdocname):      para = nodes.paragraph() -    newnode = nodes.reference(' ', ' ') +    newnode = nodes.reference('', '')      innernode = cmd['cmdnode']      newnode['refdocname'] = cmd['docname']      newnode['refuri'] = app.builder.get_relative_uri( diff --git a/docs/_static/css/custom.css b/docs/_static/css/custom.css index a1e34259..7faf7b7f 100644 --- a/docs/_static/css/custom.css +++ b/docs/_static/css/custom.css @@ -46,12 +46,19 @@ span.cfgcmd {  } -  a.cmdlink {      font-size: 80%;      margin-left: 6px;  } +a.cmdlink span{ +    color: #2980B9; +} + +a.cmdlink span:hover{ +    color: #3091d1; +} +  .wy-nav-content {    max-width : none;  } diff --git a/docs/conf.py b/docs/conf.py index 99a41450..b63d4a03 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -177,15 +177,5 @@ texinfo_documents = [  ] -def vytask_role(name, rawtext, text, lineno, inliner, options={}, content=[]): -    app = inliner.document.settings.env.app -    base = app.config.vyos_phabricator_url -    ref = base + str(text) -    set_classes(options) -    node = nodes.reference( -        rawtext, utils.unescape(str(text)), refuri=ref, **options) -    return [node], [] - -  def setup(app):      pass | 
