Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • 7b548f5463ed784d7b2ba798b8b5b50f08743589
  • 12.0-evo-202003 par défaut
  • 14-RV-20250324
  • 14-RV-20240830
  • 14-RV-20231222
  • 12-RV-Bug_ecrasement_date_radiation
  • 12-RV-revision-staff
  • 12-RV-copadev
  • 12-RV-Correctif-open-instagram
  • 12-RV-Tree-Coop-Ajout-effectif
  • 12.0-RV-Instagram
  • 12.0-RV-segment_visibility
  • 12.0 protégée
  • 12.0-RV-Abonnements
14 résultats

scop_action_rse.py

Blame
  • Bifurcation depuis Le Filament / Confédération Générale des SCOP / cgscop_partner
    Le projet source a une visibilité limitée.
    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;
    }