_iwb-modal.scss 964 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .modal {
  2. .modal-dialog {
  3. width: 500px;
  4. &.modal-lg {
  5. width: 1000px
  6. }
  7. &.modal-md {
  8. width: 800px
  9. }
  10. &.modal-sm {
  11. width: 500px
  12. }
  13. &.modal-xl {
  14. width: 300px
  15. }
  16. }
  17. .modal-header {
  18. padding: .5rem 1rem;
  19. .modal-title {
  20. color: $iwb-color;
  21. .modal-title-span {
  22. padding-right: 2px;
  23. }
  24. }
  25. }
  26. .modal-body {
  27. color: $gray-700;
  28. min-height:250px;
  29. label {
  30. color: $gray-900
  31. }
  32. .form-horizontal {
  33. width: 100%;
  34. }
  35. }
  36. .modal-footer {
  37. justify-content: space-between;
  38. padding: .5rem 1rem;
  39. button {
  40. min-width: 100px;
  41. &.close-button,
  42. &.save-button, &.save-btn {
  43. min-width: 100px;
  44. }
  45. }
  46. }
  47. }