modal_flowaudit.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .flowform {
  2. }
  3. .flowform #flowstep1 {
  4. height: 36px;
  5. width: 100%;
  6. background-image: url('../../../content/images/workflow/step1.png');
  7. }
  8. .flowform #flowstep2 {
  9. height: 36px;
  10. width: 100%;
  11. background-image: url('../../../content/images/workflow/step2.png')
  12. }
  13. .flowform #flowstep3 {
  14. height: 36px;
  15. width: 100%;
  16. background-image: url('../../../content/images/workflow/step3.png')
  17. }
  18. .flowform #flowstep4 {
  19. height: 36px;
  20. width: 100%;
  21. background-image: url('../../../content/images/workflow/step4.png')
  22. }
  23. .flowform .div_selectinguser {
  24. max-height: 150px;
  25. margin-top: 5px;
  26. overflow-y: scroll
  27. }
  28. .flowform .div_selecteduser {
  29. width: 100%;
  30. height: 90px;
  31. display: flex;
  32. flex-flow: row wrap;
  33. align-content: flex-start;
  34. overflow: auto;
  35. }
  36. .flowform .selecteduser {
  37. box-sizing: border-box;
  38. flex: 0 0 30%;
  39. height: 30px;
  40. font-weight: normal;
  41. cursor: pointer;
  42. }
  43. .flowform .th-dp {
  44. max-width: 40%;
  45. }
  46. .flowform .td-dp {
  47. max-width: 40%;
  48. overflow: hidden;
  49. white-space: nowrap;
  50. text-overflow: ellipsis;
  51. }