not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
501 B

  1. .enyo-arranger {
  2. position: relative;
  3. overflow: hidden;
  4. }
  5. .enyo-arranger.enyo-fit {
  6. position: absolute;
  7. }
  8. .enyo-arranger > * {
  9. position: absolute;
  10. left: 0;
  11. top: 0;
  12. box-sizing: border-box;
  13. -webkit-box-sizing: border-box;
  14. -moz-box-sizing: border-box;
  15. }
  16. .enyo-arranger-fit > * {
  17. /*
  18. override any width/height set on panels
  19. */
  20. width: 100% !important;
  21. height: 100% !important;
  22. min-width: 0 !important;
  23. max-width: auto !important;
  24. min-height: 0 !important;
  25. max-height: auto !important;
  26. }