question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

CSS issue on responsive fullscreen mode

See original GitHub issue

Hi, as you can see in the following screen shot, in the responsive fullscreen mode, the .widget-container always has height: 100% width: 100% and z-index: 9999 , all other elements in my page are beneath this widget-containe layer, so nothing accessible in this mode.

image

Thanks in advance for your help.

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Reactions:2
  • Comments:6 (2 by maintainers)

github_iconTop GitHub Comments

4reactions
shye0000commented, Nov 9, 2017

@mcallegari10 I use this quick fix for the moment.

.widget-container {
  height: auto;
  width: auto;
  .conversation-container {
    width: 370px;
    margin-bottom: 10px;
  }
  .launcher {
    margin-top: 0;
  }
  @media screen and (max-width: 800px) {
    height: auto;
    width: auto;
    .conversation-container {
      height: 100vh;
      width: 100vw;
      margin-bottom: 0;
    }
  }
}
0reactions
servoicecommented, Feb 6, 2021

Just ran into this issue where the widget blocked the page on a smaller screen size. Changing .widget-container in the solution above to .rcw-widget-container fixed the the issue.

Read more comments on GitHub >

github_iconTop Results From Across the Web

fullscreen - CSS: Cascading Style Sheets - MDN Web Docs
The :fullscreen pseudo-class lets you configure your stylesheets to automatically adjust the size, style, or layout of content when elements ...
Read more >
Responsive Image full screen and centered - maintain aspect ...
To center it, you can use the technique shown here: Absolute centering. To make it as big as possible, give it max-width and...
Read more >
How To Change The Browser To Fullscreen with JavaScript
Click on the button to open the video in fullscreen mode: Your browser does not support the video tag.
Read more >
CSS Make A Div Height Full Screen [THREE SIMPLE WAYS]
Learn the three QUIKEST ways to make a div full screen using pure CSS that are height:100%, height:100vh and position:absolute.
Read more >
Fullscreen Mode not working - WordPress.org
a new update is available in which we have added the option for force fullscreen and force responsive. You can download it and...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found