_workflow-tasks.scss 844 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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-left: 9px;
  16. padding-right: 9px;
  17. }
  18. &__step {
  19. font-size: 10px;
  20. text-transform: uppercase;
  21. margin-top: 3px;
  22. }
  23. &__name {
  24. font-size: 16px;
  25. font-weight: bold;
  26. margin: 0;
  27. overflow: hidden;
  28. white-space: nowrap;
  29. text-overflow: ellipsis;
  30. }
  31. &__extra-tasks {
  32. display: inline-block;
  33. height: $task-height;
  34. vertical-align: middle;
  35. }
  36. }