瀏覽代碼

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 {


Loading…
取消
儲存