Project

General

Profile

Task #2767

Task #2674: Responsive design

Popup dialogs are off of the screen (like the word parse dialog)

Added by Luke Murphey almost 4 years ago. Updated almost 4 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Target version:
Start date:
05/25/2020
Due date:
% Done:

100%

History

#1 Updated by Luke Murphey almost 4 years ago

I think the solution is to statically fix the position of the dialog in the top half or bottom half

Qs:
  • Where is the logic for positioning the dialog?
    • Popup
  • How do I detect that I need to enter mobile mode?
  • Where should the logic go for resizing it for mobile?
    • screen media query
  • What is the style to make this work?
        top: 55px;
        left: 5px;
        width: calc(100% - 10px);
        position: fixed;
    
        top: 55px;
        left: 5px;
        width: calc(100% - 10px);
    
  • What are the test cases?
    • Click on the top half
    • Click on the bottom half
    • Click word with a long definition
    • Click word with a short definition (like νυν in John 8)
      • Fails on mobile for short defs
  • What is the difference between absolute and fixed?
  • Can I inject the popup at the top level like modals do?
    **Yes: https://react.semantic-ui.com/addons/portal/#types-portal
Obs:
  • [Done] I need to set the z-index to put the popup over the paginators.
  • This could be done better using media queries (would allow the UI to be dynamically responsive)
  • Ths dialog is now always fixed

#2 Updated by Luke Murphey almost 4 years ago

  • Status changed from New to Closed
  • % Done changed from 0 to 100

Also available in: Atom PDF