Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_cloaking.scss « startup « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
  }
}