//
// Bootstrap Datepicker
//
// Overwrite/Extend styles
// --------------------------------------------------

.datepicker {
    border-radius: $border-radius;
    border: $border-style $border-width $border-color;
    &-inline {
        width: 220px;
    }
    direction: ltr;
    &-rtl {
        direction: rtl;
        &.dropdown-menu { left: auto; }
        table tr td span {
            float: right;
        }
    }
    &-dropdown {
        top: 0;
        left: 0;
        padding: 4px;
        &:before {
            content: '';
            display: inline-block;
            border-left:   7px solid transparent;
            border-right:  7px solid transparent;
            border-bottom: 7px solid transparent;
            border-top:    0;
            position: absolute;
        }
        &:after {
            content: '';
            display: inline-block;
            border-left:   6px solid transparent;
            border-right:  6px solid transparent;
            border-bottom: 6px solid transparent;
            border-top:    0;
            position: absolute;
        }
        &.datepicker-orient-left:before   { left: 6px; }
        &.datepicker-orient-left:after    { left: 7px; }
        &.datepicker-orient-right:before  { right: 6px; }
        &.datepicker-orient-right:after   { right: 7px; }
        &.datepicker-orient-bottom:before { top: -7px; }
        &.datepicker-orient-bottom:after  { top: -6px; }
        &.datepicker-orient-top:before {
            bottom: -7px;
            border-bottom: 0;
            border-top:    7px solid transparent;
        }
        &.datepicker-orient-top:after {
            bottom: -6px;
            border-bottom: 0;
            border-top:    6px solid transparent;
        }
    }
    table {
        margin: 0;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        tr {
            td, th {
                text-align: center;
                width: 30px;
                height: 30px;
                border-radius: 4px;
                border: none;
            }
            th.dow {
                color: $gray-500;
            }
        }
    }
    // Inline display inside a table presents some problems with
    // border and background colors.
    .table-striped & table tr {
        td, th {
            background-color: transparent;
        }
    }
    table tr td {
        &.old,
        &.new {
            color: $btn-link-disabled-color;
        }
        &.day:hover,
        &.focused {
            background: $primary-light;
            cursor: pointer;
        }
        &.disabled,
        &.disabled:hover {
            background: none;
            color: $btn-link-disabled-color;
            cursor: default;
        }
        &.highlighted {
            color: $black;
            background: $gray-300;
            border-color: darken($gray-300, 20%);
            border-radius: 0;

            &.focused {
                background: darken($gray-300, 10%);
            }

            &.disabled,
            &.disabled:active {
                background: $gray-300;
                color: $btn-link-disabled-color;
            }
        }
        &.today {
            color: $warning-darker;
            background: $warning-lighter;
            border-color: darken($warning-lighter, 20%);

            &.focused {
                background: darken($warning-lighter, 10%);
            }

            &.disabled,
            &.disabled:active {
                background: $warning-lighter;
                color: $btn-link-disabled-color;
            }
        }
        &.range {
            color: $black;
            background: $gray-400;
            border-color: darken($gray-400, 20%);
            border-radius: 0;

            &.focused {
                background: darken($gray-400, 10%);
            }

            &.disabled,
            &.disabled:active {
                background: $gray-400;
                color: $btn-link-disabled-color;
            }
        }
        &.range.highlighted {
            color: $black;
            background: $info-lighter;
            border-color: darken($info-lighter, 20%);

            &.focused {
                background: darken($info-lighter, 10%);
            }

            &.disabled,
            &.disabled:active {
                background: $info-lighter;
                color: $btn-link-disabled-color;
            }
        }
        &.range.today {
            color: $black;
            background: $gray-400;
            border-color: darken($gray-400, 20%);

            &.disabled,
            &.disabled:active {
                background: $gray-400;
                color: $btn-link-disabled-color;
            }
        }
        &.selected,
        &.selected.highlighted {
            color: $white;
            background: $gray-300;
            border-color: $gray-500;
            text-shadow: 0 -1px 0 rgba(0,0,0,.25);
        }
        &.active,
        &.active.highlighted {
            color: $primary-lighter;
            background: $primary;
            border-color: $primary-dark;
            text-shadow: 0 -1px 0 rgba(0,0,0,.25);
        }
        span {
            display: block;
            width: 23%;
            height: 54px;
            line-height: 54px;
            float: left;
            margin: 1%;
            cursor: pointer;
            border-radius: 4px;
            &:hover,
            &.focused {
                background: $gray-300;
            }
            &.disabled,
            &.disabled:hover {
                background: none;
                color: $btn-link-disabled-color;
                cursor: default;
            }
            &.active,
            &.active:hover,
            &.active.disabled,
            &.active.disabled:hover {
                color: $primary-text-emphasis;
                background: $primary-light;
                border-color: $primary-dark;
                text-shadow: 0 -1px 0 rgba(0,0,0,.25);
            }
            &.old,
            &.new {
                color: $btn-link-disabled-color;
            }
        }
    }

    .datepicker-switch {
        width: 145px;
        color: $primary-dark;
    }

    .datepicker-switch,
    .prev,
    .next,
    tfoot tr th {
        cursor: pointer;
        &:hover {
            background: $gray-300;
        }
    }

    .prev, .next {
        &.disabled {
            visibility: hidden;
        }
    }

    // Basic styling for calendar-week cells
    .cw {
        font-size: 10px;
        width: 12px;
        padding: 0 2px 0 5px;
        vertical-align: middle;
    }
}
.input-group.date .input-group-addon {
    cursor: pointer;
}
.input-daterange {
    width: 100%;
    input {
        text-align: center;
    }
    input:first-child {
        border-radius: 3px 0 0 3px;
    }
    input:last-child {
        border-radius: 0 3px 3px 0;
    }
    .input-group-addon {
        width: auto;
        min-width: 16px;
        padding: 4px 5px;
        line-height: $line-height-base;
        border-width: 1px 0;
        margin-left: -5px;
        margin-right: -5px;
    }
}
