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

« back to all changes in this revision

Viewing changes to openstack_dashboard/static/bootstrap/scss/bootstrap/_popovers.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
// POPOVERS
 
2
// --------
 
3
 
 
4
.popover {
 
5
  position: absolute;
 
6
  top: 0;
 
7
  left: 0;
 
8
  z-index: $zindexPopover;
 
9
  display: none;
 
10
  padding: 5px;
 
11
  &.top    { margin-top:  -5px; }
 
12
  &.right  { margin-left:  5px; }
 
13
  &.bottom { margin-top:   5px; }
 
14
  &.left   { margin-left: -5px; }
 
15
  &.top .arrow    { @include popoverArrowTop(); }
 
16
  &.right .arrow  { @include popoverArrowRight(); }
 
17
  &.bottom .arrow { @include popoverArrowBottom(); }
 
18
  &.left .arrow   { @include popoverArrowLeft();  }
 
19
  .arrow {
 
20
    position: absolute;
 
21
    width: 0;
 
22
    height: 0;
 
23
  }
 
24
}
 
25
.popover-inner {
 
26
  padding: 3px;
 
27
  width: 280px;
 
28
  overflow: hidden;
 
29
  background: $black; // has to be full background declaration for IE fallback
 
30
  background: rgba(0,0,0,.8);
 
31
  @include border-radius(6px);
 
32
  @include box-shadow(0 3px 7px rgba(0,0,0,0.3));
 
33
}
 
34
.popover-title {
 
35
  padding: 9px 15px;
 
36
  line-height: 1;
 
37
  background-color: #f5f5f5;
 
38
  border-bottom:1px solid #eee;
 
39
  @include border-radius(3px 3px 0 0);
 
40
}
 
41
.popover-content {
 
42
  padding: 14px;
 
43
  background-color: $white;
 
44
  @include border-radius(0 0 3px 3px);
 
45
  @include background-clip(padding-box);
 
46
  p, ul, ol {
 
47
    margin-bottom: 0;
 
48
  }
 
49
}
 
 
b'\\ No newline at end of file'