Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • dac534bfa600c55f5ed1c1a1b657c1b19743f609
  • master par défaut protégée
  • v1.5.0
  • v1.4.0
  • v1.3.1
  • v1.3.0
  • v1.2.9
  • v1.2.8
  • v1.2.7
  • v1.2.6
  • v1.2.5
  • v1.2.4
  • v1.2.3
  • v1.2.2
  • v1.2.1
  • v1.2.0
  • v1.1.2
  • v1.1.1
  • v1.1.0
  • v1.0.1
  • v1.0.0
21 résultats

histogram.css

Blame
  • histogramgraph.css 1,87 Kio
    /* General text style */
    text {
    	font-family: sans-serif;
    	font-size: 11px;
    }
    
    /* Colors for text representing states */
    text.up {
    	fill: rgb(0, 128, 0);
    }
    text.down {
    	fill: rgb(255, 0, 0);
    }
    text.unreachable {
    	fill: rgb(128, 0, 0);
    }
    text.ok {
    	fill: rgb(0, 128, 0);
    }
    text.warning {
    	fill: rgb(176, 178, 20);
    }
    text.unknown {
    	fill: rgb(255, 100, 25);
    }
    text.critical {
    	fill: rgb(255, 0, 0);
    }
    
    /* Colors for text representing states */
    path.up {
    	stroke: rgb(0, 128, 0);
    }
    path.down {
    	stroke: rgb(255, 0, 0);
    }
    path.unreachable {
    	stroke: rgb(128, 0, 0);
    }
    path.ok {
    	stroke: rgb(0, 128, 0);
    }
    path.warning {
    	stroke: rgb(176, 178, 20);
    }
    path.unknown {
    	stroke: rgb(255, 100, 25);
    }
    path.critical {
    	stroke: rgb(255, 0, 0);
    }
    
    /* Class to hide elements */
    .hidden {
    	display: none;
    }
    
    /* Trend SVG style */
    div#histogramsvg {
    	position: absolute;
    	z-index: 10;
    	left: 0;
    	top: 0;
    }
    
    /* Center header text */
    g#header text,
    g#yaxis-label text {
    	text-anchor: middle;
    }
    
    /* Anchor the y-axis text to the end of the text */
    g#xaxis text,
    g#yaxis text {
    	text-anchor: end;
    }
    
    /* Draw grid lines as dashed lines */
    g#xaxis line,
    g#yaxis line {
    	stroke-width: 1;
    	stroke: #c0c0c0;
    	stroke-dasharray: 2,4;
    	pointer-events: none;
    }
    
    /* Hide the axes path */
    g#xaxis path,
    g#yaxis path {
    	display: none;
    }
    
    /* Styles for data lines */
    g#grid path {
    	fill: none;
    	stroke-width: 1;
    }
    
    /* Styles for grid spinner */
    div#gridspinner {
    	position: absolute;
    	top: 74px;
    	left: 355px;
    	height: 50px;
    	width: 50px;
    	z-index: 40;
    }
    
    /* Styles for the summary table */
    g.summary .label {
    	text-anchor: left;
    }
    
    g.summary .value {
    	text-anchor: end;
    }
    
    g.summary line {
    	stroke-width: 1;
    	stroke: black;
    }
    
    /* Styles for menu button */
    div#menubutton {
    	position: absolute;
    	top: 5px;
    	left: 871px;
    	height: 25px;
    	width: 22px;
    	z-index: 40;
    }
    
    div#menubutton button {
    	padding: 0px;
    	border: none;
    	background-color: white;
    }