Differentiate ol levels in VRP

This commit is contained in:
str4d
2017-01-08 09:53:35 +00:00
parent 3706184973
commit 88b46dcda2
2 changed files with 9 additions and 0 deletions

View File

@ -1,6 +1,7 @@
{% extends "global/layout.html" %} {% extends "global/layout.html" %}
{% block title %}{{ _('Vulnerability Response Process') }}{% endblock %} {% block title %}{{ _('Vulnerability Response Process') }}{% endblock %}
{% block lastupdated %}{% trans %}January 2017{% endtrans %}{% endblock %} {% block lastupdated %}{% trans %}January 2017{% endtrans %}{% endblock %}
{% block content_id %}vrp{% endblock %}
{% block content %} {% block content %}
<p>{% trans %} <p>{% trans %}
This process is subject to change. Please refer to this page for the current VRP. This process is subject to change. Please refer to this page for the current VRP.

View File

@ -608,3 +608,11 @@ pre.literal-block {
width: auto; width: auto;
font-weight: bold; font-weight: bold;
} }
#vrp ol ol {
list-style-type: lower-latin;
}
#vrp ol ol ol {
list-style-type: lower-roman;
}