﻿/* Progress spinner */
.loader {
    border: 16px solid #cdddde; /* Light grey */
    border-top: 16px solid #0067a6; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Adjust entire body to handle the top navigation */
.withnavigation {
    padding-top: 50px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}
.main-content{
    padding-left:0px;
    padding-right:0px;
}
/* Top header bar */
.navbar-header{
    width: 100%;
}

.info-icon{
    padding:15px;
}
.navbar-header-rightsection {
    float: right;
    padding:7px;
}
.navbar-userinfo {
    float: left;
    padding: 8px;
    color: #9d9d9d;
    margin-right: 10px;
}
/* Top drop-down */
.dropdown-menu {
    top: auto;
    float: left;
    right: 0px;
}
.navbar-header .navbar-functionselect {
    margin: 0px;
    float:right;
}
.navbar-header .navbar-functionselect ul li {
    padding:5px;
}
.navbar-header .navbar-functionselect ul li:hover {
    background-color: #428bca;
    color: white;
}

/* Main content - Bootstrap overrides */
.container{
    width:auto;
}
.row{
    margin-left: 0px;
    margin-right: 0px;
}

/* Left Directory navigation */
.dir-nav {

}
/* Up-navigation above tree */
#cmdNavigateUp{
    margin:10px;
}
/* Tree */
.gj-picker-md, ul.gj-list-md li {
    font-size: 14px;
}
.list-group-item {
    border:none;
}

.navigate-tree-start{
    padding:10px;
}
.navigate-tree-start:hover {
    background-color: #F5F5F5;
}

/* Toolbar */
.btn-primary {
    background-color: #428bca;
}
.toolbar-buttons .glyphicon {
    padding-top: 4px;
    padding-bottom: 6px;
}

/* Table */
.main-content{
    margin-top: 2px;
}
.no-border-table > tbody > tr > td, 
.no-border-table > tbody > tr > th, 
.no-border-table > tfoot > tr > td, 
.no-border-table > tfoot > tr > th, 
.no-border-table > thead > tr > td, 
.no-border-table > thead > tr > th 
{
    border: none;
}
.bootstrap-table .fixed-table-container .fixed-table-body {
    height: auto;
}
.bootstrap-table .fixed-table-container .table th, .bootstrap-table .fixed-table-container .table td {
    font-size: 0.8em;
}

.bootstrap-table > thead > tr > th:last-child {
    width:55px;
}
.bootstrap-table > thead > tr > th:nth-last-child(2) {
    width: 55px;
}
.table > thead > tr > th.hide-column, .table > tbody > tr > td.hide-column {
    display: none;
}

.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
    padding: 6px;
}

.manage-versions {
    color: #337ab7;
}
/* Modal Dialog */
.modal-dialog {
    position: absolute;
    left: 50%;
    /* now you must set a margin left under zero - value is a half width your window */
    margin-left: -312px;
}

/* Fileshare Information */
.link-section{
    clear:both;
}
.link-name{
    float:left;
}
.link-url {
    float: left;
    color: #31708f;
}

/* IE Specific fixes */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .main-content {
        margin-top: 16px;
    }
}

/* Access Denied */
.access-denied-section h3{
    margin-left : 20px;
}
