_popover.scss 643 Bytes
Newer Older
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
/* ========================================================================
 * POPOVER
 * ======================================================================== */
.popover{
  @include border-radius(0);
  &.top {
    > .arrow {
      &:after{
        border-top-color: #FFFFFF;
      }
    }
  }
  &.bottom {
    > .arrow {
      &:after{
        border-bottom-color: #F7F7F7;
      }
    }
  }
  &.left {
    > .arrow {
      &:after{
        border-left-color: #F7F7F7;
      }
    }
  }
  &.right {
    > .arrow {
      &:after{
        border-right-color: #F7F7F7;
      }
    }
  }
  .popover-title{
    @include border-radius(0);
  }
}