_modal.less 591 B

123456789101112131415161718192021222324252627282930
  1. .dialog-ux {
  2. .backdrop-ux {
  3. background: rgba(@dialog-ux-backdrop-background-color, 0.8);
  4. }
  5. .modal-ux {
  6. border: 1px solid @dialog-ux-modal-border-color;
  7. background: @dialog-ux-modal-background-color;
  8. box-shadow: 0 10px 30px 0 rgba(@dialog-ux-modal-box-shadow-color, 0.2);
  9. }
  10. .modal-ux-content {
  11. p {
  12. color: @dialog-ux-modal-content-font-color;
  13. .text_body();
  14. }
  15. h4 {
  16. .text_headline();
  17. }
  18. }
  19. .modal-ux-header {
  20. border-bottom: 1px solid @dialog-ux-modal-header-border-bottom-color;
  21. h3 {
  22. .text_headline();
  23. }
  24. }
  25. }