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

broadcast_messages.scss « framework « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9903d10d27cee845a96dd8d4bf7d8cde9d393ead (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
.broadcast-message {
  padding: $gl-padding-8;

  div,
  p {
    display: inline;
    margin: 0;

    a {
      color: inherit;
      text-decoration: underline;
    }
  }
}

.broadcast-banner-message {
  @extend .broadcast-message;
  @extend .alert-warning;
  text-align: center;

  .broadcast-message-dismiss {
    color: inherit;
  }
}

.broadcast-notification-message {
  @extend .broadcast-message;

  position: fixed;
  bottom: $gl-padding;
  right: $gl-padding;
  max-width: 300px;
  width: auto;
  background: $white;
  border: 1px solid $gray-200;
  box-shadow: 0 1px 2px 0 rgba($black, 0.1);
  border-radius: $border-radius-default;
  z-index: 999;

  &.preview {
    position: static;
  }

  .broadcast-message-dismiss {
    height: 100%;
    color: $gray-800;
  }
}

.toggle-colors {
  input {
    min-height: 34px;
  }
}