Files
talk/client/coral-ui/components/PopupMenu.css
T
2017-04-25 16:31:33 -06:00

34 lines
590 B
CSS

.popupMenu {
display: block;
position: absolute;
width: 100%;
border: solid 1px #999;
box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.3);
box-sizing: border-box;
background: white;
border-radius: 3px;
padding: 20px 10px;
z-index: 300;
left: 0;
}
.popupMenu:before{
content: '';
border: 10px solid transparent;
border-top-color: white;
position: absolute;
right: 3em;
bottom: -20px;
z-index: 2;
}
.popupMenu:after{
content: '';
border: 10px solid transparent;
border-top-color: #999;
position: absolute;
right: 3em;
bottom: -21px;
z-index: 1;
}