Sha256: 25ff2b1085f4ace5a2685ddb219de3f7c4461d5a894d129b3c0f3de19512ce59

Contents?: true

Size: 842 Bytes

Versions: 1

Compression:

Stored size: 842 Bytes

Contents

// TOOLTIP
// ------=

.tooltip {
  position: absolute;
  z-index: $zindexTooltip;
  display: block;
  visibility: visible;
  padding: 5px;
  font-size: 11px;
  @include opacity(0);
  &.in     { @include opacity(80); }
  &.top    { margin-top:  -2px; }
  &.right  { margin-left:  2px; }
  &.bottom { margin-top:   2px; }
  &.left   { margin-left: -2px; }
  &.top .tooltip-arrow    { @include popoverArrowTop(); }
  &.left .tooltip-arrow   { @include popoverArrowLeft(); }
  &.bottom .tooltip-arrow { @include popoverArrowBottom(); }
  &.right .tooltip-arrow  { @include popoverArrowRight(); }
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: $white;
  text-align: center;
  text-decoration: none;
  background-color: $black;
  @include border-radius(4px);
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bootstrap-sass-2.0.0 vendor/assets/stylesheets/bootstrap/_tooltip.scss