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

flash.scss « framework « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1b723021d76d2d8ea998eba507a48e43e1a676a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.flash-container {
  cursor: pointer;
  margin: 0;
  font-size: 14px;
  width: 100%;
  z-index: 100;

  .flash-notice {
    @extend .alert;
    @extend .alert-info;
  }

  .flash-alert {
    @extend .alert;
    @extend .alert-danger;
  }
}

.flash-pinned {
  position: fixed;
  top: 80px;
  width: 80%;
}

.flash-raised {
  z-index: 1000;
}