mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-29 17:36:49 +01:00
5c362bf831
Co-authored-by: Scott Cranfill <scott@scottcranfill.com>
39 lines
665 B
SCSS
39 lines
665 B
SCSS
/*
|
|
* Styling for the workflow progress view
|
|
* See: wagtail/wagtail/admin/templates/wagtailadmin/pages/workflow_history/detail.html
|
|
*/
|
|
|
|
.workflow-progress-table {
|
|
width: 100%;
|
|
border-top: 1px solid $color-grey-3;
|
|
border-bottom: 1px solid $color-grey-3;
|
|
font-size: 0.8em;
|
|
|
|
td,
|
|
th {
|
|
padding: 20px;
|
|
}
|
|
|
|
th {
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
&__left-column {
|
|
font-size: 1.2em;
|
|
font-weight: bold;
|
|
color: $color-text-base;
|
|
}
|
|
|
|
&--tasks {
|
|
background-color: $color-grey-5;
|
|
|
|
.workflow-progress-table__left-column {
|
|
background-color: $color-grey-4;
|
|
}
|
|
}
|
|
|
|
&--timeline tr {
|
|
border-bottom: 1px solid $color-grey-3;
|
|
}
|
|
}
|