/* Global overrides are in this file */

/* @group _files.less */

/* @NOTE this fixes ugly scrollbars in animations */
#sbox-content {
  overflow: hidden;
}

/* @NOTE default border-radius is horrendous */
#sbox-window {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;

  .well {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }
}

/* Sometimes there's a margin or padding on the <body> or <html> element, screwing up the flash button positioning */
.uploader-flash-container  {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 99999;

  /* @NOTE the following code makes sure that the flash adapter of plupload does not break when the modal is closed */
  object, embed {
    display: block !important;
    visibility: visible !important;
  }
}

/* @end */