Skip to content

Commit add1dae

Browse files
committed
Table coloring needs table- prefix.
- Legacy-Id: 19614
1 parent f17a7ed commit add1dae

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

ietf/templates/doc/drafts_in_iesg_process.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ <h1>{{ title }}</h1>
2626
</thead>
2727
{% for state, docs in grouped_docs %}
2828
<tbody>
29-
<tr class="info"><th colspan="5">{{ state.name }}</th></tr>
29+
<tr class="table-info"><th colspan="5">{{ state.name }}</th></tr>
3030
</tbody>
3131
<tbody>
3232
{% for doc in docs %}

ietf/templates/doc/status_change/status_changes.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h1>RFC status changes</h1>
2828

2929
{% for state in state_groups %}
3030
<tbody>
31-
<tr class="info"><th colspan="2">{{state.grouper}}</th></tr>
31+
<tr class="table-info"><th colspan="2">{{state.grouper}}</th></tr>
3232
</tbody>
3333

3434
<tbody>

ietf/templates/doc/submit_to_iesg.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h1>Publication request<br><small>{{doc.name}}-{{doc.rev}}</small></h1>
1717
</p>
1818

1919
<table class="table table-sm">
20-
<tr {% if warn.intended_std_level %}class="warning"{% endif %}>
20+
<tr {% if warn.intended_std_level %}class="table-warning"{% endif %}>
2121
<th class="text-nowrap">Intended status level</th>
2222
<td>{% if warn.intended_std_level %}<span class="bi bi-exclamation"></span>{% endif %}</td>
2323
<td>{{doc.intended_std_level}}</td>
@@ -29,13 +29,13 @@ <h1>Publication request<br><small>{{doc.name}}-{{doc.rev}}</small></h1>
2929
<td>{{ad}}</td>
3030
</tr>
3131

32-
<tr {% if warn.shepherd %}class="warning"{% endif %}>
32+
<tr {% if warn.shepherd %}class="table-warning"{% endif %}>
3333
<th class="text-nowrap">Document shepherd</th>
3434
<td>{% if warn.shepherd %}<span class="bi bi-exclamation"></span>{% endif %}</td>
3535
<td>{% if doc.shepherd %}{{ doc.shepherd.person }}{% endif %}</td>
3636
</tr>
3737

38-
<tr {% if warn.shepherd_writeup %}class="warning"{% endif %}>
38+
<tr {% if warn.shepherd_writeup %}class="table-warning"{% endif %}>
3939
<th class="text-nowrap">Shepherd write-up exists</th>
4040
<td>{% if warn.shepherd_writeup %}<span class="bi bi-exclamation"></span>{% endif %}</td>
4141
<td>{%if shepherd_writeup %}Yes{%else%}No{%endif%}</td>
@@ -47,7 +47,7 @@ <h1>Publication request<br><small>{{doc.name}}-{{doc.rev}}</small></h1>
4747
<td>{% if notify %}{{notify}}{%else%}(None){%endif%}</td>
4848
</tr>
4949

50-
<tr {% if warn.tags %}class="warning"{% endif %}>
50+
<tr {% if warn.tags %}class="table-warning"{% endif %}>
5151
<th class="text-nowrap">Annotation tags</th>
5252
<td>{% if warn.tags %}<span class="bi bi-exclamation"></span>{% endif %}</td>
5353
<td>{% if not tags %}(None){%else%}{% for tag in tags %}{{ tag }}{% if not forloop.last%}, {%endif%}{% endfor %}{% endif %}</td>

ietf/templates/meeting/agenda.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ <h2>
134134

135135
{% ifchanged item.timeslot.time|date:"Y-m-d" %}
136136
<tr><th class="gap" colspan="7"></th></tr>
137-
<tr class="warning">
137+
<tr class="table-warning">
138138
<th colspan="7">
139139
{# The anchor here needs to be in a div, not in the th, in order for the anchor-target margin hack to work #}
140140
<div class="anchor-target" id="{{item.timeslot.time|slugify}}"></div>
@@ -145,7 +145,7 @@ <h2>
145145

146146
{% if item.timeslot.type_id == 'regular' %}
147147
{% ifchanged %}
148-
<tr class="info session-label-row"
148+
<tr class="table-info session-label-row"
149149
data-slot-start-ts="{{item.start_timestamp}}"
150150
data-slot-end-ts="{{item.end_timestamp}}">
151151
<td class="leftmarker"></td>

ietf/templates/meeting/agenda_personalize.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ <h2>
100100
<tr>
101101
<th class="gap" colspan="7"></th>
102102
</tr>
103-
<tr class="warning">
103+
<tr class="table-warning">
104104
<th colspan="7">
105105
{# The anchor here needs to be in a div, not in the th, in order for the anchor-target margin hack to work #}
106106
<div class="anchor-target" id="{{ item.timeslot.time|slugify }}"></div>
@@ -111,7 +111,7 @@ <h2>
111111

112112
{% if item.timeslot.type_id == 'regular' %}
113113
{% ifchanged %}
114-
<tr class="info session-label-row"
114+
<tr class="table-info session-label-row"
115115
data-slot-start-ts="{{ item.start_timestamp }}"
116116
data-slot-end-ts="{{ item.end_timestamp }}">
117117
<td class="leftmarker"></td>

ietf/templates/meeting/requests.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ <h2 class="anchor-target" id="{{area.grouper.acronym}}">
5252
{% ifchanged %}
5353
</tbody>
5454
<tbody>
55-
<tr><th class="warning" colspan="7">{{session.current_status_name|capfirst}}</th></tr>
55+
<tr><th class="table-warning" colspan="7">{{session.current_status_name|capfirst}}</th></tr>
5656
</tbody>
5757
<tbody>
5858
{% endifchanged %}

0 commit comments

Comments
 (0)