_workflow-progress.scss 783 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * Styling for the workflow progress view
  3. * See: wagtail/wagtail/admin/templates/wagtailadmin/shared/workflow_history/detail.html
  4. */
  5. .workflow-progress-table {
  6. width: 100%;
  7. border-top: 1px solid theme('colors.border-field-default');
  8. border-bottom: 1px solid theme('colors.border-field-default');
  9. font-size: 0.8em;
  10. td,
  11. th {
  12. padding: 20px;
  13. }
  14. th {
  15. font-size: 1.2em;
  16. }
  17. &__left-column {
  18. font-size: 1.2em;
  19. font-weight: bold;
  20. color: theme('colors.text-context');
  21. }
  22. &--tasks {
  23. background-color: theme('colors.surface-header');
  24. .workflow-progress-table__left-column {
  25. background-color: theme('colors.border-furniture');
  26. }
  27. }
  28. &--timeline tr {
  29. border-bottom: 1px solid theme('colors.border-field-default');
  30. }
  31. }