summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/startup/_cloaking.scss
blob: 3c25feb0c5ca7f947c7f727574213d855bd03259 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
  Prevent flashing of content when using startup.css
 */
@mixin cloak-startup-scss($display) {
  // Breadcrumbs and alerts on the top of the page
  .content-wrapper > .alert-wrapper,
  // Content on pages
  #content-body,
  // Prevent flashing of haml generated modal contents
  .modal-dialog {
    display: $display;
  }
}