style.css 707 B

12345678910111213141516171819202122232425262728293031
  1. @media (min-width:1366px)
  2. {
  3. .edui-notadd .edui-for-insertimage .edui-dialog-content {
  4. width: 1200px !important;
  5. height: 500px !important;
  6. }
  7. }
  8. @media (min-width:1000px) and (max-width:1365px)
  9. {
  10. .edui-notadd .edui-for-insertimage .edui-dialog-content {
  11. width: 900px !important;
  12. height: 500px !important;
  13. }
  14. }
  15. @media (min-width:768px) and (max-width:999px)
  16. {
  17. .edui-notadd .edui-for-insertimage .edui-dialog-content {
  18. width: 700px !important;
  19. height: 300px !important;
  20. }
  21. }
  22. @media (max-width:768px)
  23. {
  24. .edui-notadd .edui-for-insertimage .edui-dialog-content {
  25. width: 500px !important;
  26. height: 300px !important;
  27. }
  28. }