// (C) Copyright 2020 Hewlett-Packard Enterprise Company, L.P.

.hp-template {
  display: none;
}

/*.hp-dropper {
  width: 12px;
  height: 6px;
  background-image: url('#{$img-dir}/down-arrow.png');
  background-repeat: no-repeat;
  background-position: center;
  
  &:hover {
    background-image: url('#{$img-dir}/down-arrow-hover.png');
  }
}
.hp-selected {
  .hp-dropper {
    background-image: url('#{$img-dir}/collapse-open-select.png');
  }
  .hp-simple-select:hover {
    .hp-dropper {
      background-image: url('#{$img-dir}/collapse-open-select-over.png');
    }
  }
}*/

.hp-contents {
  
  .hp-value {
    display: none;
  }
  
  .hp-options {
    margin-bottom: 0px;
    
    li {
      display: inline-block;
      margin-right: -4px;
      
      a {
        color: $secondary-primary-color;
        display: block;
        padding: 2px 10px;
        
        &:hover {
          background-color: $menu-selection;
          color: $primary-color;
          text-decoration: none;
        }
      }
      
      &.hp-selected a {
        background-color: $selected-background;
        color: #000;
        //font-weight: bold; too jumpy
      }
      
    }
  }
}

.hp-reveal-control {
  .hp-control {
    display: none;
  }
  &:hover {
    .hp-value {
      display: none;
    }
    .hp-control {
      display: block;
    }
  }
}

.hp-tbd {
  width: 100%;
  height: 100%;
  font-family: 'HPLight', Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: normal;
  color: #ccc;
  margin: 0px;
  background: #fcfcfc $scratch-out-url;
  
  &:nth-child(even) {
    background-color: #f8f8f8;
  }
  
  &:after {
    content: 'TBD';
    padding-left: 5px;
  }
}

.ui-download-iframe {
  visibility:hidden;
  left:0;
  top:0;
  height:0;
  width:0;
}

/*ol.hp-address {
  margin: 0px;
  font-size: 0px;
  > li {
    display: inline;
    font-size: $body-font-size;
    &:after {
      content: ':';
      color: $secondary-color;
    }
    &:last-child {
      &:after {
        content: '';
      }
    }
  }
}*/

// jQueryUI styling

.ui-widget-content {
  border: none;
}
