Minor styling fixes

pull/6257/head
Karl Hobley 2020-03-10 10:53:59 +00:00 zatwierdzone przez Matt Westcott
rodzic f6ea6e9c33
commit b2b8fd6eb1
3 zmienionych plików z 3 dodań i 4 usunięć

Wyświetl plik

@ -10,7 +10,7 @@
&__button {
background: none;
border-style: 0;
border: 0;
padding-bottom: 5px;
font-weight: bold;

Wyświetl plik

@ -37,9 +37,9 @@
<div class="workflow-progress-tabs__tab workflow-progress-tabs__tab--active" data-tab="tasks">
<table class="workflow-progress-table workflow-progress-table--tasks">
<colgroup width="{% widthratio 100 grid_size 1 %}%"></colgroup>
<colgroup width="20%"></colgroup>
{% for task in tasks %}
<colgroup width="{% widthratio 100 grid_size 2 %}%"></colgroup>
<colgroup width="{% widthratio 80 tasks|length 1 %}%"></colgroup>
{% endfor %}
<thead>
<th class="workflow-progress-table__left-column"></th>

Wyświetl plik

@ -1621,6 +1621,5 @@ def workflow_history_detail(request, page_id, workflow_state_id):
'workflow_state': workflow_state,
'tasks': tasks,
'task_states_by_revision': task_states_by_revision,
'grid_size': len(tasks) * 2 + 1,
'timeline': timeline,
})