solve #7 Completado el procedimiento para cambiar el color. Solucionado que en la cabecera de los informes hubiese desaparecido el nombre del centro.

Falta ver por qué aparece el nombre de la aplicación con caracteres raros en los informes. html_decode
This commit is contained in:
2014-02-28 00:22:10 +01:00
parent 2a6680173a
commit 4aa32ff705
9 changed files with 154 additions and 93 deletions

102
css/dashboard.php Normal file
View File

@@ -0,0 +1,102 @@
<?php
include('../inc/configuracion.inc');
header("Content-type: text/css");
?>
/*
* Base structure
*/
/* Move down content because we have a fixed navbar that is 50px tall */
body {
padding-top: 50px;
background-color: <?php echo COLORFON; ?>; /*Fondo*/
}
/*
* Global add-ons
*/
.sub-header {
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}
/*
* Sidebar
*/
/* Hide for mobile, show later */
.sidebar {
display: none;
}
@media (min-width: 768px) {
.sidebar {
position: fixed;
top: 51px;
bottom: 0;
left: 0;
z-index: 1000;
display: block;
padding: 5px;
overflow-x: hidden;
overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
background-color: <?php echo COLORLAT; ?>;/*Lateral*/
border-right: 1px solid #eee;
}
}
/* Sidebar navigation */
.nav-sidebar {
margin-right: -6px; /* 20px padding + 1px border */
margin-bottom: 1px;
margin-left: -1px;
}
.nav-sidebar > li > a {
padding-right: 5px;
padding-left: 5px;
}
.nav-sidebar > .active > a {
color: #fff;
background-color: #428bca;
}
/*
* Main content
*/
.main {
padding: 10px;
}
@media (min-width: 768px) {
.main {
padding-right: 20px;
padding-left: 20px;
}
}
.main .page-header {
margin-top: 0;
}
/*
* Placeholder dashboard ideas
*/
.placeholders {
margin-bottom: 5px;
text-align: center;
}
.placeholders h4 {
margin-bottom: 0;
}
.placeholder {
margin-bottom: 5px;
}
.placeholder img {
display: inline-block;
border-radius: 25%;
}