dialog.less 759 B

12345678910111213141516171819202122232425262728293031323334
  1. .cip-dialog__wrapper{
  2. &.el-dialog{
  3. .el-dialog__header{
  4. border-bottom: 1px solid #ddd;
  5. display: flex;
  6. align-items: center;
  7. .el-dialog__mainTitle {
  8. margin-right: 20px;
  9. }
  10. .el-dialog__subTitle {
  11. font-size: 14px;
  12. font-weight: 400;
  13. color: #555;
  14. }
  15. }
  16. .el-dialog__body{
  17. max-height: 60vh;
  18. overflow-y: auto;
  19. overflow-x: hidden;
  20. padding-bottom: 12px;
  21. box-sizing: border-box;
  22. }
  23. .el-dialog__footer{
  24. border-top: 1px solid #ddd;
  25. }
  26. }
  27. &.is-fullscreen.el-dialog{
  28. .el-dialog__body{
  29. box-sizing: border-box;
  30. height: calc(100% - 55px - 63px);
  31. max-height: calc(100% - 55px - 63px); // header 55px footer 63px
  32. }
  33. }
  34. }