.context-menu {
  position: fixed;
  z-index: 5000;
  color: $context-menu-color;
  background: $context-menu-background-color;
  border: solid 1px $context-menu-border-color;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.28);
  ul {
    padding: 0;
    margin: 0;
    li {
      padding: 5px 10px 5px 5px;
      border: none;
      cursor: pointer;
      list-style: none;
      &::before{
        display:inline-block;
        width: 1.28571em; //fa-fw width
        content: '';
      }
      &:hover {
        background: $dropdown-hover-background-color;
      }
      .icon{
        margin-right: 7px;
      }
    }
    li.with-icon{
      &::before{
        display:none;
      }
    }
    .hotkey {
      float: right;
      color: $text-light-color;
      margin-left: 20px;
    }    
  }
}
