styleResponsive.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. @media screen and (max-width: 720px) {
  2. .chat-context {
  3. display: none;
  4. position: absolute;
  5. z-index: 500;
  6. top: 0;
  7. bottom: 0;
  8. left: 0;
  9. right: 0;
  10. width: auto;
  11. padding-top: 62px;
  12. background-repeat: repeat-x;
  13. }
  14. .chat-context.opened {
  15. display: block;
  16. }
  17. .chat-context-menuButton {
  18. display: inline-block;
  19. }
  20. .chatsystem-container {
  21. position: fixed;
  22. top: 0;
  23. bottom: 0;
  24. left: 0;
  25. right: 0;
  26. }
  27. .chat-context .chat-context-roominfo {
  28. position: static;
  29. display: block;
  30. width: 100%;
  31. color: white;
  32. }
  33. .chatsystem-content .chat-context-roominfo, .chatsystem-content .chatmsg-item:hover .chatmsg-hover {
  34. display: none;
  35. }
  36. .maci-wrapper {
  37. position: fixed;
  38. z-index: 5000;
  39. top: 50%;
  40. left: 0;
  41. width: 100%;
  42. transform: translate(0, -50%);
  43. }
  44. .login-services {
  45. display: block;
  46. width: 100%;
  47. }
  48. }
  49. body.native .chatsystem-header, body.native .chat-context-menuButton {
  50. display: none;
  51. }