2020-02-19 16:26:04 +01:00
|
|
|
/*
|
|
|
|
* Styling for the workflow progress view
|
|
|
|
* See: wagtail/wagtail/admin/templates/wagtailadmin/pages/workflow_history/detail.html
|
|
|
|
*/
|
|
|
|
|
2020-02-20 17:50:01 +01:00
|
|
|
.workflow-progress-table {
|
2020-02-19 16:26:04 +01:00
|
|
|
width: 100%;
|
2022-07-09 08:32:51 +02:00
|
|
|
border-top: 1px solid $color-grey-3;
|
|
|
|
border-bottom: 1px solid $color-grey-3;
|
2020-02-19 16:26:04 +01:00
|
|
|
font-size: 0.8em;
|
|
|
|
|
2020-02-21 13:22:31 +01:00
|
|
|
td,
|
|
|
|
th {
|
2020-02-19 16:26:04 +01:00
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
|
|
|
|
2020-02-20 17:50:01 +01:00
|
|
|
&__left-column {
|
2020-02-19 16:26:04 +01:00
|
|
|
font-size: 1.2em;
|
|
|
|
font-weight: bold;
|
2022-07-09 08:32:51 +02:00
|
|
|
color: $color-text-base;
|
2020-02-19 16:26:04 +01:00
|
|
|
}
|
|
|
|
|
2020-02-21 13:22:31 +01:00
|
|
|
&--tasks {
|
2022-07-09 08:32:51 +02:00
|
|
|
background-color: $color-grey-5;
|
2020-02-19 16:26:04 +01:00
|
|
|
|
2020-02-20 17:50:01 +01:00
|
|
|
.workflow-progress-table__left-column {
|
2022-07-09 08:32:51 +02:00
|
|
|
background-color: $color-grey-4;
|
2020-02-19 16:26:04 +01:00
|
|
|
}
|
2022-02-04 12:57:55 +01:00
|
|
|
}
|
2020-02-19 16:26:04 +01:00
|
|
|
|
2020-02-20 17:50:01 +01:00
|
|
|
&--timeline tr {
|
2022-07-09 08:32:51 +02:00
|
|
|
border-bottom: 1px solid $color-grey-3;
|
2020-02-20 17:50:01 +01:00
|
|
|
}
|
2020-02-19 16:26:04 +01:00
|
|
|
}
|