modals.less 903 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // Modals
  3. // --------------------------------------------------
  4. .modal {
  5. .modal-dialog {
  6. border-radius: @border-radius-large;
  7. box-shadow: 0px 0px 0px 6px @dropdown-shadow;
  8. .modal-content {
  9. .modal-header {
  10. background: @modal-header-bg-color;
  11. border-radius: @border-radius-large @border-radius-large 0px 0px;
  12. .modal-title {
  13. color: @modal-title-color;
  14. }
  15. }
  16. .modal-form {
  17. padding-bottom: @line-height-computed / 5;
  18. }
  19. .modal-footer {
  20. background: @modal-footer-bg-color;
  21. border-radius: 0px 0px @border-radius-large @border-radius-large;
  22. &.text-center {
  23. text-align: center;
  24. &>* {
  25. float: none;
  26. }
  27. }
  28. &.text-left {
  29. text-align: left;
  30. &>* {
  31. float: none;
  32. }
  33. }
  34. }
  35. }
  36. }
  37. }