소스 검색

Make full screen more tolerant of container element CSS positioning.

pull/132/merge
Matthew Petroff 7 년 전
부모
커밋
4f2f2bf79f
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. +4
    -0
      src/css/pannellum.css

+ 4
- 0
src/css/pannellum.css 파일 보기

@@ -40,18 +40,22 @@
.pnlm-container:-moz-full-screen {
height: 100% !important;
width: 100% !important;
position: static !important;
}
.pnlm-container:-webkit-full-screen {
height: 100% !important;
width: 100% !important;
position: static !important;
}
.pnlm-container:-ms-fullscreen {
height: 100% !important;
width: 100% !important;
position: static !important;
}
.pnlm-container:fullscreen {
height: 100% !important;
width: 100% !important;
position: static !important;
}

.pnlm-render-container {


불러오는 중...
취소
저장