summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/startup/_cloaking.scss
blob: f60d72a51fb20fc6827985bb9a679952adcb7536 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
  Prevent flashing of content when using startup.css
 */
@mixin cloak-startup-scss($display) {
  // General selector for cloaking until ready
  .cloak-startup,
  // 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;
  }
}