@import "foundation/variables";
@import "foundation/mixins";

// --------------------------------------------------
// Discourse header
// --------------------------------------------------

.d-header {
  min-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid #9baab2;
  background-color: $white;
  @include box-shadow((0 1px 3px rgba($black, 0.12), inset 0 -4px 4px -4px rgba($black, 0.3)));
  .docked & {
    position: fixed;
  }
  .contents {
    margin: 10px 0;
  }
  .title {
    display: table;
    float: left;
    height: 40px;
    > a {
      display: table-cell;
      vertical-align: middle;
    }
  }
  #site-logo {
    width: 122px;
  }
  .icon-home {
    font-size: 20px;
    line-height: 40px;
  }
  .panel {
    float: right;
    position: relative;
  }
  .current-username {
    float: left;
    a {
      color: $black;
      font-size: 14px;
      line-height: 40px;
    }
    button {
      margin-top: 8px;
    }
  }
  .icons {
    float: left;
    margin: 0 0 0 15px;
    list-style: none;
    > li {
      float: left;
      &:first-child .icon {
        @include border-radius-all(4px 0 0 4px);
      }
      &:first-child.active .icon {
        @include border-radius-all(4px 0 0 0);
      }
      &:last-child .icon {
        border-right: 1px solid #ccc;
        @include border-radius-all(0 4px 4px 0);
      }
    }
    .icon {
      display: block;
      border-top: 1px solid #ccc;
      border-bottom: 1px solid #ccc;
      border-left: 1px solid #d6d6d6;
      padding: 3px;
      color: $nav-button-color;
      text-decoration: none;
      cursor: pointer;
      @include box-shadow(inset 0 -4px 4px -4px rgba($black, 0.14));
      &:hover {
        color: $nav-button-color-hover;
        background-color: $nav-button-background-color-hover;
      }
      &:active {
        color: $nav-button-color-active;
        background-color: $nav-button-background-color-active;
      }
    }
    .active .icon {
      position: relative;
      color: #7b7b7b;
      background-color: $white;
      cursor: default;
      @include box-shadow((6px 0 6px -6px rgba($black, 0.2), -6px 0 6px -6px rgba($black, 0.2), inset 0 13px 13px -13px rgba($black, 0.1)));
      &:after {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1101;
        width: 100%;
        height: 0;
        content: "";
        border-top: 1px solid $white;
      }
    }
    [class^="icon-"] {
      width: 32px;
      height: 32px;
      font-size: 20px;
      line-height: 32px;
    }
    .notifications {
      position: relative;
    }
    .badge-notification {
      position: absolute;
      top: -9px;
      z-index: 1;
      margin-left: 0;
    }
    .unread-notifications {
      right: -4px;
      background-color: #0088CC;
    }
    .unread-private-messages {
      left: -4px;
      background-color: #00953A;
    }
    .flagged-posts {
      background-color: #E53B2E;
    }
  }
}

#main {
  position: relative;
}

#main-outlet {
  padding-top: 75px;
}

// Dropdowns
// --------------------------------------------------

.d-dropdown {
  display: none;
  overflow: hidden;
  width: 320px;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1100;
  margin-top: -1px;
  border: 1px solid #ccc;
  background-color: $white;
  @include border-radius-all(4px);
  @include box-shadow(0 3px 3px rgba($black, 0.2));

  // Common

  ul {
    margin: 0;
    list-style: none;
  }
  li {
    padding: 5px;
    font-size: 13px;
    line-height: 16px;
  }
  .heading {
    border-top: 1px solid #c5c5c5;
    border-bottom: 1px solid #c5c5c5;
    color: #2d3234;
    font-weight: bold;
    font-size: 12px;
    line-height: 15px;
    text-shadow: 0 1px 0 $white;
    background-color: #f5f6f7;
    @include box-shadow(inset 0 1px 0 rgba($white, 0.8));
  }
  .selected {
    background-color: $header-item-highlight;
  }

  // Notifications

  &#notifications-dropdown {
    .icon {
      color: #777;
    }
    li {
      background-color: $header-item-highlight;
    }
    .read {
      background-color: $white;
    }
    .none {
      padding: 5px;
    }
  }

  // Search

  input[type='text'] {
    width: 298px;
    height: 22px;
    margin: 5px;
    padding: 5px;
    &:focus {
      @include box-shadow((inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 4px rgba(82, 168, 236, 0.6)));
    }
  }
  .searching {
    display: block;
    position: absolute;
    top: 13px;
    right: 13px;
    color: #777;
    font-size: 18px;
  }
  .no-results {
    padding: 0 5px 5px;
  }
  .filter {
    float: right;
  }

  // Categories
  
  .category {
    float: left;
    background-color: transparent;
  }
}