~ubuntu-branches/ubuntu/utopic/horizon/utopic

« back to all changes in this revision

Viewing changes to openstack_dashboard/static/bootstrap/scss/bootstrap/_tooltip.scss

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2014-07-25 11:39:09 UTC
  • mfrom: (1.1.42)
  • Revision ID: package-import@ubuntu.com-20140725113909-b8920pdy87itn1ro
Tags: 1:2014.2~b2-0ubuntu1
* New upstream release.
* debian/patches/ubuntu_settings.patch: Refresed
* debian/patches/fix-dashboard-manage.patch: Refreshed
* debian/patches/fix-dashboard-django-wsgi.patch: Refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// TOOLTIP
 
2
// ------=
 
3
 
 
4
.tooltip {
 
5
  position: absolute;
 
6
  z-index: $zindexTooltip;
 
7
  display: block;
 
8
  visibility: visible;
 
9
  padding: 5px;
 
10
  font-size: 11px;
 
11
  @include opacity(0);
 
12
  &.in     { @include opacity(0.8); }
 
13
  &.top    { margin-top:  -2px; }
 
14
  &.right  { margin-left:  2px; }
 
15
  &.bottom { margin-top:   2px; }
 
16
  &.left   { margin-left: -2px; }
 
17
  &.top .tooltip-arrow    { @include popoverArrowTop(); }
 
18
  &.left .tooltip-arrow   { @include popoverArrowLeft(); }
 
19
  &.bottom .tooltip-arrow { @include popoverArrowBottom(); }
 
20
  &.right .tooltip-arrow  { @include popoverArrowRight(); }
 
21
}
 
22
.tooltip-inner {
 
23
  max-width: 200px;
 
24
  padding: 3px 8px;
 
25
  color: $white;
 
26
  text-align: center;
 
27
  text-decoration: none;
 
28
  background-color: $black;
 
29
  @include border-radius(4px);
 
30
}
 
31
.tooltip-arrow {
 
32
  position: absolute;
 
33
  width: 0;
 
34
  height: 0;
 
35
}