/*
 * Copyright (C) 2013 Vanderbilt University, All rights reserved.
 * 
 * Author: Robert Kereskenyi
 */

.ptr-widget {
  height: 25px;
  line-height: 25px;
  vertical-align: middle;
  border-radius: 4px;
  position: relative;
  background-color: rgba(0, 0, 0, 0.025);
  padding-left: 3px;
  &.drop-area {
    border: 1px dashed #aaaaaa;
    &.accept-drop {
      background-color: rgba(0, 255, 0, 0.1);
    }
    &.reject-drop {
      background-color: rgba(255, 0, 0, 0.1);
  }
  }

  i {
    margin-top: 6px;
    position: absolute;
    right: 2px;
    cursor: pointer;
  }
}

span.user-select-on {
  &.btn-follow-pointer {
    font-size: 11px;
    color: #3160ab;
    padding-left: 0px;
    padding-right: 0px;
    &:hover {
      text-decoration: underline;
      color: #ff7700;
    }
  }
}

.property-editor {
  ul.nav {
    position: relative;
    margin-bottom: 0;
    height: 24px;
    white-space: nowrap;

    &.nav-tabs {
      > li {
        display: inline-block;
        float: none;

        > a {
          padding: 5px 3px 5px 3px;
          line-height: 13px;
          font-size: 11px;

          .tab-title {
            white-space: nowrap;
            display: inline-block;
            max-width: 120px;
            overflow: hidden;
            text-overflow: ellipsis;
          }
        }
      }
    }
  }

  .tab-content {
    overflow: visible;
  }
}