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

.object-browser {
  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;
  }
}