mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 03:55:09 +08:00
46 lines
881 B
CSS
46 lines
881 B
CSS
|
|
.menu {
|
|
background-color: white;
|
|
border: solid 1px #999;
|
|
border-radius: 3px;
|
|
padding: 10px;
|
|
position: absolute;
|
|
-webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
|
|
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
|
|
z-index: 9;
|
|
top: 26px;
|
|
left: 0px;
|
|
min-width: 20px;
|
|
text-align: left;
|
|
}
|
|
|
|
.menu::before{
|
|
content: '';
|
|
border: 10px solid transparent;
|
|
border-top-color: #999;
|
|
position: absolute;
|
|
left: 6px;
|
|
top: -21px;
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.menu::after{
|
|
content: '';
|
|
border: 10px solid transparent;
|
|
border-top-color: white;
|
|
position: absolute;
|
|
left: 6px;
|
|
top: -20px;
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-top: 8px;
|
|
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
}
|