﻿/* Asp.net Disabled Button */
.btn.aspNetDisabled {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}

a.btn.aspNetDisabled {
    pointer-events: none;
}

.btn-default.aspNetDisabled:hover,
.btn-default.aspNetDisabled:focus,
.btn-default.aspNetDisabled.focus {
    background-color: #fff;
    border-color: #ccc;
}

.btn-primary.aspNetDisabled:hover,
.btn-primary.aspNetDisabled:focus,
.btn-primary.aspNetDisabled.focus {
    background-color: #337ab7;
    border-color: #2e6da4;
}

.btn-success.aspNetDisabled:hover,
.btn-success.aspNetDisabled:focus,
.btn-success.aspNetDisabled.focus {
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.btn-info.aspNetDisabled:hover,
.btn-info.aspNetDisabled:focus,
.btn-info.aspNetDisabled.focus {
    background-color: #5bc0de;
    border-color: #46b8da;
}

.btn-warning.aspNetDisabled:hover,
.btn-warning.aspNetDisabled:focus,
.btn-warning.aspNetDisabled.focus {
    background-color: #f0ad4e;
    border-color: #eea236;
}

.btn-danger.aspNetDisabled:hover,
.btn-danger.aspNetDisabled:focus,
.btn-danger.aspNetDisabled.focus {
    background-color: #d9534f;
    border-color: #d43f3a;
}

.dropdown-menu > .aspNetDisabled > a,
.dropdown-menu > .aspNetDisabled > a:hover,
.dropdown-menu > .aspNetDisabled > a:focus {
    color: #777;
}

    .dropdown-menu > .aspNetDisabled > a:hover,
    .dropdown-menu > .aspNetDisabled > a:focus {
        text-decoration: none;
        cursor: not-allowed;
        background-color: transparent;
        background-image: none;
        filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    }

.nav > li.aspNetDisabled > a {
    color: #777;
}

    .nav > li.aspNetDisabled > a:hover,
    .nav > li.aspNetDisabled > a:focus {
        color: #777;
        text-decoration: none;
        cursor: not-allowed;
        background-color: transparent;
    }

.navbar-default .navbar-nav > .aspNetDisabled > a,
.navbar-default .navbar-nav > .aspNetDisabled > a:hover,
.navbar-default .navbar-nav > .aspNetDisabled > a:focus {
    color: #ccc;
    background-color: transparent;
}

@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > .aspNetDisabled > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .aspNetDisabled > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > .aspNetDisabled > a:focus {
        color: #ccc;
        background-color: transparent;
    }
}

.navbar-inverse .navbar-nav > .aspNetDisabled > a,
.navbar-inverse .navbar-nav > .aspNetDisabled > a:hover,
.navbar-inverse .navbar-nav > .aspNetDisabled > a:focus {
    color: #444;
    background-color: transparent;
}

@media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .aspNetDisabled > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .aspNetDisabled > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .aspNetDisabled > a:focus {
        color: #444;
        background-color: transparent;
    }
}

.pagination > .aspNetDisabled > span,
.pagination > .aspNetDisabled > span:hover,
.pagination > .aspNetDisabled > span:focus,
.pagination > .aspNetDisabled > a,
.pagination > .aspNetDisabled > a:hover,
.pagination > .aspNetDisabled > a:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}

.pager .aspNetDisabled > a,
.pager .aspNetDisabled > a:hover,
.pager .aspNetDisabled > a:focus,
.pager .aspNetDisabled > span {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
}

.list-group-item.aspNetDisabled,
.list-group-item.aspNetDisabled:hover,
.list-group-item.aspNetDisabled:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #eee;
}

    .list-group-item.aspNetDisabled .list-group-item-heading,
    .list-group-item.aspNetDisabled:hover .list-group-item-heading,
    .list-group-item.aspNetDisabled:focus .list-group-item-heading {
        color: inherit;
    }

    .list-group-item.aspNetDisabled .list-group-item-text,
    .list-group-item.aspNetDisabled:hover .list-group-item-text,
    .list-group-item.aspNetDisabled:focus .list-group-item-text {
        color: #777;
    }
