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: 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;
  }
}