BigW Consortium Gitlab

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

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

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

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

    .container-fluid.container-limited.flash-text {
24 25 26
      background: transparent;
    }
  }
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42

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

    .flash-notice, .flash-alert {
      border-radius: 0;
    }
  }
}

@media (max-width: $screen-md-min) {
  ul.notes {
    .flash-container.timeline-content {
      margin-left: 0;
    }
  }
Dmitriy Zaporozhets committed
43
}
44