0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-30 01:46:24 +01:00
wagtail/client/scss/layouts/_workflow-progress.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
678 B
SCSS
Raw Normal View History

/*
* 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 {
width: 100%;
border-top: 1px solid rgb(229, 229, 229);
border-bottom: 1px solid rgb(229, 229, 229);
font-size: 0.8em;
2020-02-21 13:22:31 +01:00
td,
th {
padding: 20px;
}
th {
font-size: 1.2em;
}
2020-02-20 17:50:01 +01:00
&__left-column {
font-size: 1.2em;
font-weight: bold;
color: #555;
}
2020-02-21 13:22:31 +01:00
&--tasks {
2020-02-20 17:50:01 +01:00
background-color: rgb(250, 250, 250);
2020-02-20 17:50:01 +01:00
.workflow-progress-table__left-column {
background-color: rgb(245, 245, 245);
}
}
2020-02-20 17:50:01 +01:00
&--timeline tr {
border-bottom: 1px solid rgb(229, 229, 229);
}
}