mirror of
https://github.com/wagtail/wagtail.git
synced 2024-12-01 11:41:20 +01:00
764d3bc1fd
- resolves #8562
39 lines
678 B
SCSS
39 lines
678 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 rgb(229, 229, 229);
|
|
border-bottom: 1px solid rgb(229, 229, 229);
|
|
font-size: 0.8em;
|
|
|
|
td,
|
|
th {
|
|
padding: 20px;
|
|
}
|
|
|
|
th {
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
&__left-column {
|
|
font-size: 1.2em;
|
|
font-weight: bold;
|
|
color: #555;
|
|
}
|
|
|
|
&--tasks {
|
|
background-color: rgb(250, 250, 250);
|
|
|
|
.workflow-progress-table__left-column {
|
|
background-color: rgb(245, 245, 245);
|
|
}
|
|
}
|
|
|
|
&--timeline tr {
|
|
border-bottom: 1px solid rgb(229, 229, 229);
|
|
}
|
|
}
|