/*
Scroll Auto Wrapper - Auto-wraps ".wikitable" and pre elements in a wrapper with helper elements to guarantee 100% width and indicate scrollability
See detailed documentation in Dev/mediawiki
deferrable:YES -- The user will not need (or see) this info immediately anyways
*/

.scroll-auto-wrapper {
  position: relative;
  max-width: 100%;
}

.scroll-auto-wrapper > .viewport {
  max-width: 100%;
}

.scroll-auto-wrapper > .viewport > .overview {
  margin: 0 !important;
}

.scroll-auto-wrapper > .before,
.scroll-auto-wrapper > .after {
  height: 10px;
  line-height: 10px;
  position: absolute;
}

.scroll-auto-wrapper > .before {
  top: -10px;
}

.scroll-auto-wrapper:not(.top-scrollbar-needed) > .before {
  display: none;
}

/*
[[Category:MultiWiki]]
*/
