/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 13/Jan/2015, 16:48:25
    Author     : joes
*/

.dashboard {
    position: fixed;
    right: 0;
    top: 109px;
    width: 0px;
}
.dashboard > .dashboard-tab {
    display: block;
    position: absolute;
}
.dashboard > .dashboard-tab:first-child {
    z-index: 1000
}
.dashboard > .dashboard-tab:last-child {
    z-index: 999;
    margin-top: 41px;
}
.dashboard > .dashboard-tab .content-dashboard {
    display: block;
    width: 400px;
    height: 300px;
    background: #e5e5e5;
    -webkit-box-shadow: -16px 2px 26px 0px rgba(50, 50, 50, 0.07);
    -moz-box-shadow:    -16px 2px 26px 0px rgba(50, 50, 50, 0.07);
    box-shadow:         -16px 2px 26px 0px rgba(50, 50, 50, 0.07);
    border-radius: 0px 0px 0px 7px;
    -moz-border-radius: 0px 0px 0px 7px;
    -webkit-border-radius: 0px 0px 0px 7px;
}
.dashboard > .dashboard-tab .command-close-open {
    height: 38px;
    margin-left: -48px;
    padding-top: 0%;
    vertical-align: bottom;
    box-sizing: border-box;
    width: 48px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    position: absolute;
    cursor: pointer;
    background: #e5e5e5;
    border-radius: 10px 0px 0px 10px;
    -webkit-border-radius: 10px 0px 0px 10px;
    -moz-border-radius: 10px 0px 0px 10px;
    display: block;
    -webkit-box-shadow: -16px 2px 26px 0px rgba(50, 50, 50, 0.07);
    -moz-box-shadow:    -16px 2px 26px 0px rgba(50, 50, 50, 0.07);
    box-shadow:         -16px 2px 26px 0px rgba(50, 50, 50, 0.07);
}
.dashboard > .dashboard-tab.history .command-close-open {
    background: url(../img/icon-history-small.png) no-repeat center center #e5e5e5;
}
.dashboard > .dashboard-tab.bookmarks .command-close-open {
    background: url(../img/icon-bookmarks-small.png) no-repeat center center #e5e5e5;
}
.dashboard > .dashboard-tab .content-dashboard {
    padding: 7px 0px 0px 17px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.dashboard > .dashboard-tab .content-dashboard h1 {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 25px;
    border-bottom: solid rgb(30, 40, 64) 1px;
    margin-bottom: 8px;
}
.dashboard > .dashboard-tab .content-dashboard ul {
    overflow-x: hidden;
    overflow-y: scroll;
    height: 245px;
    margin: 0;
    padding: 0;
}
.dashboard > .dashboard-tab .content-dashboard ul li {
    list-style: none;
    color: rgb(30, 40, 64);
    font-size: 12px;
    line-height: 20px;
    width: 362px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dashboard > .dashboard-tab .content-dashboard ul li span {
    display: inline;
    white-space: nowrap;
    overflow: hidden;
}
.dashboard > .dashboard-tab .content-dashboard ul li:hover {
    cursor: pointer;
    color: rgba(255, 255, 255, .5);
    background: rgb(30, 40, 64);
}
.dashboard > .dashboard-tab .content-dashboard ul li:hover span span.type-document{
    color: rgba(255, 255, 255, .3);
}
.dashboard > .dashboard-tab .content-dashboard ul li span span.type-document {
    color: rgba(30, 40, 64, .5);
}