update colore blu (+ chiaro)
This commit is contained in:
@@ -199,26 +199,38 @@ body {
|
||||
font-size: 7pt;
|
||||
border-left: #bababa 1px dotted;
|
||||
}
|
||||
.semaforoVerde {
|
||||
.semaforoVerde,
|
||||
.sVe {
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #009036;
|
||||
color: Yellow;
|
||||
}
|
||||
.semaforoGiallo {
|
||||
.semaforoGiallo,
|
||||
.sGi {
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #ffec00;
|
||||
}
|
||||
.semaforoRosso {
|
||||
.semaforoRosso,
|
||||
.sRo {
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #e2001a;
|
||||
}
|
||||
.semaforoSpento {
|
||||
.semaforoBlu,
|
||||
.sBl {
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #0036DD;
|
||||
color: Yellow;
|
||||
}
|
||||
.semaforoSpento,
|
||||
.sGr {
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
@@ -264,7 +264,7 @@ body{
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #003690;
|
||||
background-color: #0036DD;
|
||||
color: Yellow;
|
||||
}
|
||||
.semaforoSpento, .sGr
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -296,7 +296,7 @@ body {
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #003690;
|
||||
background-color: #0036DD;
|
||||
color: #ffb6fa;
|
||||
}
|
||||
.sBl a {
|
||||
|
||||
@@ -352,7 +352,7 @@ body{
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #003690;
|
||||
background-color: #0036DD;
|
||||
color: #ffb6fa;
|
||||
|
||||
a {
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -313,26 +313,38 @@ body .ui-overlay-c {
|
||||
}
|
||||
/* END: gestione layout dinamico mappa... */
|
||||
/* area semafori*/
|
||||
.semaforoVerde {
|
||||
.semaforoVerde,
|
||||
.sVe {
|
||||
text-align: left;
|
||||
background: #009036;
|
||||
background: rgba(0, 255, 80, 0.6);
|
||||
padding: 0px 4px 0px 4px;
|
||||
color: Yellow;
|
||||
}
|
||||
.semaforoGiallo {
|
||||
.semaforoGiallo,
|
||||
.sGi {
|
||||
text-align: left;
|
||||
background: #ffec00;
|
||||
background: rgba(255, 220, 0, 0.6);
|
||||
padding: 0px 4px 0px 4px;
|
||||
}
|
||||
.semaforoRosso {
|
||||
.semaforoRosso,
|
||||
.sRo {
|
||||
text-align: left;
|
||||
background-color: #e2001a;
|
||||
background: rgba(240, 0, 10, 0.6);
|
||||
padding: 0px 4px 0px 4px;
|
||||
}
|
||||
.semaforoSpento {
|
||||
.semaforoBlu,
|
||||
.sBl {
|
||||
text-align: left;
|
||||
background: #0036DD;
|
||||
background: rgba(0, 80, 255, 0.6);
|
||||
padding: 0px 4px 0px 4px;
|
||||
color: Yellow;
|
||||
}
|
||||
.semaforoSpento,
|
||||
.sGr {
|
||||
text-align: left;
|
||||
background-color: #bcbcbc;
|
||||
background: rgba(180, 180, 180, 0.6);
|
||||
|
||||
@@ -388,7 +388,7 @@ body .ui-body-a, body .ui-body-c, body .ui-overlay-c
|
||||
}
|
||||
.semaforoBlu, .sBl {
|
||||
text-align: left;
|
||||
background: #003690;
|
||||
background: #0036DD;
|
||||
background: rgba(0,80,255,.6);
|
||||
padding: 0px 4px 0px 4px;
|
||||
color: Yellow;
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
+7
-4
@@ -352,18 +352,21 @@ public class resoconti
|
||||
string _answ = "";
|
||||
switch (Stati.FindByIdxStato(idx).Semaforo)
|
||||
{
|
||||
case "G": // giallo
|
||||
case "sGi": // giallo
|
||||
_answ = "#ffec00";
|
||||
break;
|
||||
case "R": // rosso
|
||||
case "sRo": // rosso
|
||||
_answ = "#e2001a";
|
||||
break;
|
||||
case "S": // grigio - spenta
|
||||
case "sGr": // grigio - spenta
|
||||
_answ = "#bcbcbc";
|
||||
break;
|
||||
case "V": // verde
|
||||
case "sVe": // verde
|
||||
_answ = "#009036";
|
||||
break;
|
||||
case "sBl": // blu
|
||||
_answ = "#0036DD";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user