﻿ 
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: @zindex-dropdown;
  display: none;  
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;  
  list-style: none;
  font-size: @font-size-base;
  text-align: left;  
  background-color: @dropdown-bg;
  border: 1px solid @dropdown-fallback-border;  
  border: 1px solid @dropdown-border;
  border-radius: @border-radius-base;
  .box-shadow(0 6px 12px rgba(0,0,0,.175));
  background-clip: padding-box;
   
  &.pull-right {
    right: 0;
    left: auto;
  }

  .divider {
    .nav-divider(@dropdown-divider-bg);
  }

  > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: @line-height-base;
    color: @dropdown-link-color;
    white-space: nowrap;  
  }
}

.dropdown-menu > li > a {
  &:hover,
  &:focus {
    text-decoration: none;
    color: @dropdown-link-hover-color;
    background-color: @dropdown-link-hover-bg;
  }
}

.dropdown-menu > .active > a {
  &,
  &:hover,
  &:focus {
    color: @dropdown-link-active-color;
    text-decoration: none;
    outline: 0;
    background-color: @dropdown-link-active-bg;
  }
}

.dropdown-menu > .disabled > a {
  &,
  &:hover,
  &:focus {
    color: @dropdown-link-disabled-color;
  }

  
  &:hover,
  &:focus {
    text-decoration: none;
    background-color: transparent;
    background-image: none; // Remove CSS gradient
    .reset-filter();
    cursor: @cursor-disabled;
  }
}
 
.open {

  > .dropdown-menu {
    display: block;
  }

  > a {
    outline: 0;
    color:black;
  }
}
 
.dropdown-menu-right {
  left: auto;  
  right: 0;
}
 
.dropdown-menu-left {
  left: 0;
  right: auto;
}
 
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: @font-size-small;
  line-height: @line-height-base;
  color: @dropdown-header-color;
  white-space: nowrap;  
}
 
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: (@zindex-dropdown - 10);
}
