/**
 * Dashboard Todos
 *
 */

.navbar-nav {
  li {
    .badge.todos-pending-count {
      margin-top: -5px;
      font-weight: normal;
      background: $todo-alert-blue;
      margin-left: -17px;
      font-size: 11px;
      color: white;
      padding: 3px;
      padding-top: 1px;
      padding-bottom: 1px;
      border-radius: 3px;
    }
  }
}

.todo {
  &:hover {
    cursor: pointer;
  }
}

.todo-item {
  .todo-title {
    @include str-truncated(calc(100% - 174px));
    overflow: visible;
  }

  .status-box {
    margin: 0;
    float: none;
    display: inline-block;
    font-weight: normal;
    padding: 0 5px;
    line-height: inherit;
    font-size: 14px;
  }

  .todo-body {
    margin-right: 174px;

    .todo-note {
      word-wrap: break-word;

      .md {
        color: #7f8fa4;
        font-size: $gl-font-size;

        .label {
          color: $gl-text-color;
          font-size: inherit;
        }

        p {
          color: #5c5d5e;
        }
      }

      pre {
        border: none;
        background: #f9f9f9;
        border-radius: 0;
        color: #777;
        margin: 0 20px;
        overflow: hidden;
      }

      .note-image-attach {
        margin-top: 4px;
        margin-left: 0;
        max-width: 200px;
        float: none;
      }

      p:last-child {
        margin-bottom: 0;
      }
    }
  }
}

@media (max-width: $screen-xs-max) {
  .todo-item {
    .todo-title {
      white-space: normal;
      overflow: visible;
      max-width: 100%;
      margin-bottom: 10px;
    }

    .avatar {
      display: none;
    }

    .todo-body {
      margin: 0;
      border-left: 2px solid #ddd;
      padding-left: 10px;
    }
  }
}