liuxiaolong
2019-05-06 8700cf1dc46c350371d865532c2914595187788e
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
// Popovers
//
 
.popover {
  box-shadow: $popover-box-shadow;
 
  .arrow {
    z-index: 1;
  }
}
 
.modal-open .popover {
  z-index: $zindex-modal-top + 1;
}
 
@each $color, $value in $theme-colors {
  @if $color != primary and $color != light {
    @include appwork-popover-variant('.popover-#{$color}, .popover-#{$color} > .popover, .ngb-popover-#{$color} + ngb-popover-window', rgba-to-hex($value));
  }
}
 
// *******************************************************************************
// * Material
 
@if $material-style {
  .popover {
    transition: none !important;
  }
 
  .popover-header {
    border-bottom-width: 1px;
  }
 
  .bs-popover-top,
  .bs-popover-auto[x-placement^="top"] {
    animation: topTooltipAnimation .25s;
  }
 
  .bs-popover-right,
  .bs-popover-auto[x-placement^="right"] {
    animation: rightTooltipAnimation .25s;
  }
 
  .bs-popover-bottom,
  .bs-popover-auto[x-placement^="bottom"] {
    animation: bottomTooltipAnimation .25s;
  }
 
  .bs-popover-left,
  .bs-popover-auto[x-placement^="left"] {
    animation: leftTooltipAnimation .25s;
  }
}