modals.less 521 B

1234567891011121314151617181920212223
  1. //
  2. // Admin 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-color: @body-bg;
  11. border-radius: @border-radius-large @border-radius-large 0px 0px;
  12. }
  13. .modal-footer {
  14. background-color: @form-panel-footer-bg;
  15. border-radius: 0px 0px @border-radius-large @border-radius-large;
  16. }
  17. }
  18. }
  19. }