
.widget-users {
  .list {
    padding: 12px 6px 0 6px;
    ul {
      list-style: none;
      padding: 0;
      margin: 0;
      height: 210px;
      overflow: hidden;

      li {
        cursor: pointer;
        padding: 9px 0;
        display: flex;

        .img-wrapper {
          display: flex;
          width: 32px;
          height: 32px;

          .img-thumbnail, .user-icon {
            width: 100%;
            height: 100%;
            border-radius: 100%;
          }
        }
      }

      .user-info {
        margin-left: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        .username {
          color: #000;
          font-size: 14px;
          line-height: 14px;
          text-overflow: ellipsis;
          white-space: nowrap;
        }

        .stats {
          font-size: 12px;
          color: @gray-light;
          line-height: 14px;

          span {
            margin-right: 8px;
          }
        }
      }
    }
  }
}