Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16825 efrain 1
// npm package: sweetalert2
2
// github link: https://github.com/sweetalert2/sweetalert2
3
 
4
.swal2-popup {
5
  font-size: $font-size-base;
6
  background: lighten($card-bg, 5%);
7
  box-shadow: $card-box-shadow;
8
 
9
  &.swal2-toast {
10
    box-shadow: $card-box-shadow;
11
    background: lighten($card-bg, 5%);
12
  }
13
 
14
  .swal2-title {
15
    font-size: 25px;
16
    line-height: 1;
17
    font-weight: 500;
18
    color: $body-color;
19
    margin-bottom: 0;
20
  }
21
 
22
  .swal2-html-container {
23
    font-size: $font-size-base;
24
    color: $text-muted;
25
    font-weight: initial;
26
    margin-top: 11px;
27
    text-decoration: none;
28
  }
29
 
30
  .swal2-actions {
31
    button {
32
      @extend .btn;
33
      &.swal2-confirm {
34
        @extend .btn-primary;
35
      }
36
      &.swal2-cancel {
37
        @extend .btn-danger;
38
        @extend .border-danger;
39
      }
40
      svg {
41
        width: 16px;
42
        height: 16px;
43
      }
44
    }
45
  }
46
 
47
  .swal2-close {
48
    font-size: 22px;
49
    &:focus {
50
      box-shadow: none;
51
    }
52
  }
53
 
54
  .swal2-timer-progress-bar {
55
    background: $secondary;
56
  }
57
 
58
}