2020-01-07 07:50:59 +05:00
|
|
|
.context-menu {
|
|
|
|
position: relative;
|
|
|
|
border-radius: 4px;
|
|
|
|
box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
user-select: none;
|
2020-01-11 15:59:42 -08:00
|
|
|
margin: -4px 0 0 1px;
|
|
|
|
padding: 4px 0;
|
|
|
|
background-color: #f2f2f2;
|
|
|
|
border: 1px solid #bcbcbc;
|
2020-01-07 07:50:59 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
.context-menu__option {
|
|
|
|
width: 150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.context-menu-option {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
text-align: left;
|
|
|
|
border-radius: 0;
|
2020-01-11 15:59:42 -08:00
|
|
|
padding-left: 20px;
|
|
|
|
background-color: #f2f2f2;
|
|
|
|
border: none;
|
2020-01-07 07:50:59 +05:00
|
|
|
}
|
|
|
|
|
2020-01-11 15:59:42 -08:00
|
|
|
.context-menu-option:hover {
|
|
|
|
color: white;
|
|
|
|
background-color: #4e95f5;
|
2020-01-07 07:50:59 +05:00
|
|
|
}
|
|
|
|
|
2020-01-11 15:59:42 -08:00
|
|
|
.context-menu-option:focus {
|
|
|
|
z-index: 1;
|
2020-01-07 07:50:59 +05:00
|
|
|
}
|