Build mobile apps with simple HTML, CSS, and JS components. http://goratchet.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.2 KiB

//
// Popovers (to be used with popovers.js)
// --------------------------------------------------
12 years ago
.popover {
position: fixed;
top: 55px;
left: 50%;
z-index: 20;
display: none;
width: 280px;
margin-left: -140px;
background-color: $chrome-color;
border-radius: 12px;
12 years ago
opacity: 0;
box-shadow: 0 0 15px rgba(0, 0, 0, .1);
11 years ago
@include transform(translate3d(0, -15px, 0));
@include transition(-webkit-transform 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out);
12 years ago
// Caret on top of popover using CSS triangles (thanks to @chriscoyier for solution)
&:after {
position: absolute;
top: -15px;
left: 50%;
width: 0;
height: 0;
margin-left: -15px;
content: '';
border-right: 15px solid transparent;
border-bottom: 15px solid $chrome-color;
border-left: 15px solid transparent;
}
12 years ago
// Popover animation
// --------------------------------------------------
12 years ago
&.visible {
opacity: 1;
11 years ago
@include transform(translate3d(0, 0, 0));
}
12 years ago
}
// Backdrop (used as invisible touch escape)
// --------------------------------------------------
12 years ago
.backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 10;
background-color: rgba(0,0,0,.15);
12 years ago
}