Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 7317 | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |

#react-chat {
  bottom: 0;
  margin: 0;
  padding: 0;
  right: 5%;
  position: fixed;
  z-index: 1000;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  gap: 1rem;
  font-family: Arial, sans-serif;
}

.chat-helper {
  background-color: $bg-color;
  border-top-left-radius: $border-radius;
  border-top-right-radius: $border-radius;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.06), 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  display: grid;
  gap: 0.5rem;
  max-height: 25rem;
  height: fit-content;
  width: 235px;

  .chat_options {
    border-bottom: 1px solid $border-primary;
    overflow: hidden;
    position: relative;

    a {
      border-left: 1px solid $border-primary;
      color: $font-color;
      padding: 3px 8px 3px 3px;
      border: 0;
      font-size: 0.9rem;
      cursor: pointer;
      font-weight: bold;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  }
}

.actions-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.action-btn {
  position: relative;
  font-weight: 700;
  color: $font-color;
  display: inline-flex;
  align-items: center;

  &.active {
    padding-bottom: 5px !important;

    &::before {
      content: "";
      position: absolute;
      top: 100%;
      width: 100%;
      height: 3px;
      background: $border-primary;
    }
  }
}

.search-input {
  display: flex;
  align-items: center;
  border-radius: 5px;
  height: 34px;
  color: gray;
  cursor: pointer;
  width: -webkit-fill-available;
  padding: 0.5rem;
  background-color: #eef3f0;

  &>input {
    border: none;
    outline: none;
    background: none;
    width: 100%;
  }
}

.contacts-list {
  width: 100%;
  overflow-y: auto;
  max-height: 250px;

  .contacts-list__item {
    align-items: center;
    display: flex;
    height: auto;
    padding: 0.2rem 1rem;
    gap: 0.5rem;

    img {
      height: 36px;
      width: 36px;
      border-radius: 50%;
    }

    .contacts-list__item-content {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    span {
      font-size: 0.9rem;
      cursor: pointer;
      font-weight: bold;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 20ch;
    }
  }
}