server-menu.component.scss 1.55 KB
.ES-menu {
  display: block;
  width: 120px;
  background-color: #2f2a2a;
  position: absolute;
}

.ES-menu ul {
  list-style-type: none;
  line-height: 24px;
}

.ES-menu li {
  display: inline-block;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown:hover {
  background-color: #2d2828;
}

.dropdown-content {
  position: absolute;
  background-color: black;
  color: #c6bcbc;
  padding: 4px 0;
  z-index: 999;
  float: none;
  list-style: none;
  line-height: normal;
  direction: ltr;
  width: auto;
  top: auto;
  left: 0px;
  margin-left: 0px;
  margin-top: 0px;
  min-width: 150px;
}

.ES-menu:hover .dropdown-content {
  display: block;
}

.ES-menu .dropdown-content li {
  float: left;
  display: flex;
}

.ES-menu .dropdown-content li a {
  padding: 6px 14px 6px 14px;
  white-space: nowrap;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 300;
  position: relative;
  text-decoration: none;
  min-width: 150px;
  line-height: normal;
}

.ES-menu .dropdown-content li a span {
  float: right;
}

.dropdown-content li:hover {
  background-color: #3a3333;
  color: black;
  width: 100%;
}

.dropdown-content li.disabled:hover {
  background-color: black;
}

.dropdown-content li.disabled a {
  color: #c5babc;
}

.dropdown-content li.disabled a:hover {
  cursor: default;
  color: #c5babc;
}

.ES-menu a {
  color: #f0f0f1;
  text-align: center;
  text-decoration: none;
  padding: 6px 15px 6px 15px;

}

.ES-menu a:hover {
  color: #fff;
  cursor: pointer
}

.ES-menu .line {
  height: 1px;
  width: 100%;
  background-color: white;
}