summaryrefslogtreecommitdiff
path: root/system/admin/static/editor/sass/components/_toast.scss
blob: 87bd7dd2dc4981446e38bde9d7427b75a1d53787 (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
55
56
57
58
59
60
61
62
63
#toast-container {
  display:block;
  position: fixed;
  z-index: 1001;

  @media #{$small-and-down} {
    min-width: 100%;
    bottom: 0%;
  }
  @media #{$medium-only} {
    min-width: 30%;
    left: 5%;
    bottom: 7%;
  }
  @media #{$large-and-up} {
    min-width: 8%;
    top: 10%;
    right: 7%;
  }
}

.toast {
  @extend .z-depth-1;
  border-radius: 2px;
  top: 0;
  width: auto;
  clear: both;
  margin-top: 10px;
  position: relative;
  max-width:100%;
  height: $toast-height;
  line-height: $toast-height;
  background-color: $toast-color;
  padding: 0 25px;
  font-size: 1.1rem;
  font-weight: 300;
  color: $toast-text-color;

  @include flexbox();
  @include align(center);
  @include justify-content(space-between);

  .btn, .btn-flat {
    margin: 0;
    margin-left: 3rem;
  }

  &.rounded{
    border-radius: 24px;
  }

  @media #{$small-and-down} {
    width:100%;
    border-radius: 0;
  }
  @media #{$medium-only} {
    float: left;
  }
  @media #{$large-and-up} {
    float: right;
  }

}