diff --git a/ietf/templates/doc/ad_list.html b/ietf/templates/doc/ad_list.html
index cac709021e..131b5f62ed 100644
--- a/ietf/templates/doc/ad_list.html
+++ b/ietf/templates/doc/ad_list.html
@@ -8,8 +8,8 @@
{% endblock %}
{% block morecss %}
table .border-bottom { border-bottom-color: var(--highcharts-neutral-color-80) !important; }
- .highcharts-container .highcharts-axis-labels {
- font-size: .7rem;
+ .highcharts-container .highcharts-axis-labels {
+ font-size: .7rem;
fill: var(--bs-body-color)
}
.highcharts-container .highcharts-graph { stroke-width: 2.5; }
@@ -45,7 +45,7 @@
{{ dt.type.1 }} State Counts
Area Director |
{% if dt.type.1 == "Internet-Draft" %}
Pre pubreq |
- {% endif %}
+ {% endif %}
{% for state, state_name in dt.states %}
@@ -72,7 +72,7 @@ {{ dt.type.1 }} State Counts
>
{{ ad.pre_pubreq }}
- {% endif %}
+ {% endif %}
{% for state, state_name in dt.states %}
|
@@ -130,7 +130,8 @@ {{ dt.type.1 }} State Counts
renderTo: element,
panning: { enabled: false },
spacing: [4, 0, 5, 0],
- height: "45%"
+ height: "45%",
+ reflow: false // reflow causes panels to grow on Firefox
},
scrollbar: { enabled: false },
tooltip: { enabled: false },
@@ -201,7 +202,7 @@ {{ dt.type.1 }} State Counts
const sums = Array.from(table.querySelectorAll("[data-sum]")).reduce((
sumsAccumulator,
cell
- ) => {
+ ) => {
const key = cell.dataset.sum
const value = safeParseFloat(cell.textContent)
if(key && !isNaN(value)) {
@@ -290,4 +291,26 @@ {{ dt.type.1 }} State Counts
})
})
+
{% endblock %}
\ No newline at end of file
|