summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/broadcast_messages.scss
blob: f7836213e5ce832543a1abe151067e2fa63b6341 (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
.broadcast-message {
  padding: $gl-padding-8;

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

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

.broadcast-banner-message {
  text-align: center;

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

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

  &.preview {
    position: static;
  }

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

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