@import '../../imports';

.pinboard-measure-tile {
  @extend %module;
  height: 36px;
  margin-bottom: 1px;

  .title {
    margin-left: $padding-compact;
    margin-top: 12px;
    font-size: 12px;
    color: $text-light;
    text-transform: uppercase;
  }

  .dropdown {
    display: inline-block;
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 12px;
    border-radius: $corner;

    .selected-item {
      @include ellipsis;
      line-height: 19px;
      padding: 2px 22px 2px 7px;
      border: 1px solid transparent;
      color: $text-light;
      max-width: 104px;
      height: auto;
      box-shadow: none;

      .caret-icon {
        position: absolute;
        right: 7px;
        bottom: 6px;

        path {
          fill: $text-lighter;
        }
      }

      &:hover {
        @extend %input-cont;
        color: $text-standard;

        .caret-icon {
          path {
            fill: $text-light;
          }
        }
      }
    }

    .dropdown-menu {
      margin-top: 1px;
      right: 0;
      width: 190px;
      max-height: 600px;
      overflow-y: auto;
    }
  }
}
