Mailspring/static/components/popover.less
2015-03-26 14:49:03 -04:00

55 lines
1.2 KiB
Plaintext

@import "ui-variables";
.popover-container {
display:inline-block;
position:relative;
}
.popover {
position: absolute;
top: -10px;
left: 50%;
width: 250px;
max-height:400px;
background-color: @background-color;
transform: translate(-50%,-100%);
box-shadow: 0 4px 30px rgba(0,0,0,0.19), inset 0 0 1px rgba(0,0,0,0.5);
border-radius: @border-radius-base;
z-index: 40;
.menu {
z-index:1;
position: relative;
.content-container {
background: none;
}
.header-container {
border-top-left-radius: @border-radius-base;
border-top-right-radius: @border-radius-base;
background: none;
}
.footer-container {
border-bottom-left-radius: @border-radius-base;
border-bottom-right-radius: @border-radius-base;
background: none;
.item:last-child:hover {
border-bottom-left-radius: @border-radius-base;
border-bottom-right-radius: @border-radius-base;
}
}
}
.popover-pointer {
position: absolute;
width: 22.5px;
height: 11px;
background: transparent url('images/tooltip/tooltip-bg-pointer@2x.png') no-repeat;
background-size: 22.5px 10.5px;
margin-left: 50%;
transform: translateX(-50%);
z-index:0;
bottom: -10px;
}
}