_workflow-tasks.scss 712 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .workflow-tasks {
  2. $task-width: 117px;
  3. $task-height: 56px;
  4. list-style-type: none;
  5. &__task {
  6. display: inline-block;
  7. background-color: #f8ffff;
  8. border: 2px solid #7ebebe;
  9. border-radius: 5px;
  10. color: #007d7e;
  11. box-sizing: border-box;
  12. width: $task-width;
  13. height: $task-height;
  14. margin: 7px;
  15. padding-inline-start: 9px;
  16. padding-inline-end: 9px;
  17. }
  18. &__step {
  19. font-size: 10px;
  20. margin-top: 3px;
  21. }
  22. &__name {
  23. font-size: 16px;
  24. font-weight: bold;
  25. margin: 0;
  26. overflow: hidden;
  27. white-space: nowrap;
  28. text-overflow: ellipsis;
  29. }
  30. &__extra-tasks {
  31. display: inline-block;
  32. height: $task-height;
  33. vertical-align: middle;
  34. }
  35. }