/*
 * 展示终端在浏览器 F11 / Electron kiosk / 页面原生全屏时继续允许内容滚动，
 * 但不占用或显示右侧原生滚动条。普通窗口不受此规则影响。
 */
html.magicmirror-fullscreen,
html.magicmirror-shell-fullscreen,
html:fullscreen {
  -ms-overflow-style: none !important;
  scrollbar-gutter: auto !important;
  scrollbar-width: none !important;
}

html.magicmirror-fullscreen,
html.magicmirror-shell-fullscreen,
html:fullscreen,
html.magicmirror-fullscreen body,
html.magicmirror-shell-fullscreen body,
html:fullscreen body {
  scrollbar-width: none !important;
}

html.magicmirror-fullscreen *,
html.magicmirror-shell-fullscreen *,
html:fullscreen * {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

html.magicmirror-fullscreen::-webkit-scrollbar,
html.magicmirror-shell-fullscreen::-webkit-scrollbar,
html:fullscreen::-webkit-scrollbar,
html.magicmirror-fullscreen body::-webkit-scrollbar,
html.magicmirror-shell-fullscreen body::-webkit-scrollbar,
html:fullscreen body::-webkit-scrollbar,
html.magicmirror-fullscreen *::-webkit-scrollbar,
html.magicmirror-shell-fullscreen *::-webkit-scrollbar,
html:fullscreen *::-webkit-scrollbar,
html:fullscreen *::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
