11174-Background diagnostic info graphs

This commit is contained in:
Pablo Aragon 2023-06-20 09:26:52 +02:00
parent c451ee6fc5
commit f6203d4740
3 changed files with 30 additions and 1 deletions

View File

@ -8,7 +8,7 @@
text-align: center; text-align: center;
font-size: 1.5em; font-size: 1.5em;
font-weight: bolder; font-weight: bolder;
color: #000; color: var(--text-color);
background: var(--secondary-color); background: var(--secondary-color);
padding: 8px; padding: 8px;
} }
@ -47,16 +47,36 @@
font-size: 1.2em; font-size: 1.2em;
} }
.title-self-monitoring {
border-top: 1px solid var(--border-color);
border-right: 1px solid var(--border-color);
border-left: 1px solid var(--border-color);
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
.container-self-monitoring { .container-self-monitoring {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
flex-wrap: wrap; flex-wrap: wrap;
background-color: var(--secondary-color);
border-right: 1px solid var(--border-color);
border-bottom: 1px solid var(--border-color);
border-left: 1px solid var(--border-color);
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
padding-bottom: 15px;
} }
.element-self-monitoring { .element-self-monitoring {
flex: 2 1 600px; flex: 2 1 600px;
} }
.element-self-monitoring > img[data-title="No data"] {
margin-top: 5%;
margin-left: 20%;
}
.footer-self-monitoring { .footer-self-monitoring {
margin: 30px; margin: 30px;
font-style: italic; font-style: italic;

View File

@ -31,6 +31,8 @@
--primary-color: #14524f; --primary-color: #14524f;
--secondary-color: #ffffff; --secondary-color: #ffffff;
--input-border: #c0ccdc; --input-border: #c0ccdc;
--border-color: #eee;
--text-color: #333;
} }
/* /*

View File

@ -20,6 +20,13 @@ Description: The default Pandora FMS theme layout
// along with this program; if not, write to the Free Software // along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/ */
:root {
/* --primary-color: #14524f; */
--secondary-color: #222;
--text-color: #fff;
/* --input-border: #c0ccdc; */
--border-color: #484848;
}
/* General styles */ /* General styles */
body, body,