36 lines
698 B
CSS
36 lines
698 B
CSS
.table td.fit,
|
|
.table th.fit {
|
|
white-space: nowrap;
|
|
width: 1%;
|
|
}
|
|
.table > tbody > tr > td.valign {
|
|
vertical-align: middle;
|
|
}
|
|
@media (max-width: 576px) {
|
|
ul>li>a.indent-nav-xs{
|
|
padding-left: 50px;
|
|
}
|
|
}
|
|
.bootstrap-datetimepicker-widget tr:hover {
|
|
background-color: #a9a9a9;
|
|
}
|
|
.datepicker tr.highlight {
|
|
background: #eeeeee;
|
|
cursor: pointer;
|
|
}
|
|
.footer {
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
/* Set the fixed height of the footer here */
|
|
height: 132px;
|
|
/*background-color: #f5f5f5;*/
|
|
}
|
|
.footerBody {
|
|
/* Margin bottom by footer height */
|
|
margin-bottom: 132px;
|
|
}
|
|
/*Make the cursor a pointer for all hyperlinks*/
|
|
a:hover {
|
|
cursor: pointer;
|
|
} |