﻿/*
   Agenda.css
   Estilos relacionados con la Agenda de Tareas 
*/

.AgTareaContainer {
    position: relative; /* para permitir a los elementos hijos posicionarse relativos a este */
    padding: 10px;
    margin: 5px 5px 5px 0;
    
    color: #555; /* letra gris oscuro */
        
    border: 1px solid #CDCDCD;  /* borde gris oscuro */
    border-radius: 5px;
    -moz-border-radius: 5px;
    
    width: 45%;
    height: 180px;
    max-height: 180px;
    float: left;
}

@media (max-width: 640px) {
    .AgTareaContainer {
        width: 95%;
        text-align: left;
    }
}

.AgTareaHead {
    width: 100%;
    
    background: #BFEAFF;
    border: 1px solid #3AC0FF;
    }
    
.AgTareaHead-inner {
    margin: 3px;
    }

.AgTareaCliente {
    margin-top: 5px;
    width: 100%;
    
    background: #FFF1CA;
    border: 1px solid #FFDA70;
    }

.AgTareaCliente-inner {
    margin: 3px;
    }
    
.AgTareaFecha {    
    font-weight: bold;
    }
    
.AgTareaResponsable {
    position: absolute;
    right: 40px;
    top: 15px;
    }

.AgTareaBody {
    margin-top: 10px;
    max-height: 60px;
    height: 60px;
    overflow-y: scroll;
}
    
.AgTareaStatus {
    position:absolute;
    top: 5px;
    right: 5px;
    }
    
.AgTareaStatus img {
    width: 24px;
}

.AgTareaToolBar {
    position: absolute;
    bottom: 5px;
    right: 5px;
    }

.AgTareaToolBar a {
    color: #555; /* gris oscuro */
}

.AgTareaToolBar a:hover {
    text-decoration: none;
}

/***************************************
    Vista semanal 
******************************************/

/* Contenedor del calendario del mes */
.AgWeekViewMonthCalendarContainer {
    float:left;
    width: 18%;
    }

.AgWeekViewMonthCalendar {
	background-color: white;	
	font-family: Tahoma;
	font-size: 8pt;
	
	border: 1px solid #ACA899;
}

.AgWeekViewMonthCalendar td {
	font-family: Tahoma;
	font-size: 8pt;
	padding: 2px 2px 2px 2px;
}

.AgWeekViewMonthCalendar table  {
	background-color: #9EBEF5;
}

.AgWeekViewMonthCalendar tr td a {
	text-decoration: none;
}

.AgWeekViewMonthCalendar td a {
	text-decoration: none;
}

.AgWeekViewMonthCalendar td.today {
    border: solid 1px red !important;   
}

.AgWeekViewMonthCalendar td.selected {
    color: Black !important;
    background-color: #FBE694 !important;
}
.AgWeekViewMonthCalendar td.selected a {
    color: Black !important;
}

.AgWeekViewMonthCalendar td.otherMonth {
    color: #ACA899;
}

.AgWeekViewMonthCalendar td.otherMonth a {
    color: #ACA899 !important;
}

/* Contenedor del calendario Semanal */
.AgWeekViewWeekCalendarContainer {
    float:left;
    width: 82%;
    }