BigW Consortium Gitlab

flash.scss 736 Bytes
Newer Older
Dmitriy Zaporozhets committed
1 2 3
.flash-container {
  cursor: pointer;
  margin: 0;
4
  margin-bottom: $gl-padding;
Dmitriy Zaporozhets committed
5
  font-size: 14px;
6 7
  position: relative;
  z-index: 1;
Dmitriy Zaporozhets committed
8 9

  .flash-notice {
10 11
    @extend .alert;
    @extend .alert-info;
12
    margin: 0;
Dmitriy Zaporozhets committed
13 14 15
  }

  .flash-alert {
16 17
    @extend .alert;
    @extend .alert-danger;
18
    margin: 0;
Dmitriy Zaporozhets committed
19
  }
20

21 22
  .flash-notice,
  .flash-alert {
23 24
    border-radius: $border-radius-default;

25 26
    .container-fluid,
    .container-fluid.container-limited {
27 28 29
      background: transparent;
    }
  }
30 31 32 33

  &.flash-container-page {
    margin-bottom: 0;

34 35
    .flash-notice,
    .flash-alert {
36 37 38 39 40
      border-radius: 0;
    }
  }
}

41
@media (max-width: $screen-sm-max) {
42 43 44 45 46
  ul.notes {
    .flash-container.timeline-content {
      margin-left: 0;
    }
  }
Dmitriy Zaporozhets committed
47
}