update colore blu (+ chiaro)

This commit is contained in:
Samuele E. Locatelli
2017-04-14 08:47:28 +02:00
parent cee488af52
commit dec7306d47
10 changed files with 46 additions and 19 deletions
+16 -4
View File
@@ -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%;
+1 -1
View File
@@ -264,7 +264,7 @@ body{
text-align: left;
width: 100%;
height: 100%;
background-color: #003690;
background-color: #0036DD;
color: Yellow;
}
.semaforoSpento, .sGr
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -296,7 +296,7 @@ body {
text-align: left;
width: 100%;
height: 100%;
background-color: #003690;
background-color: #0036DD;
color: #ffb6fa;
}
.sBl a {
+1 -1
View File
@@ -352,7 +352,7 @@ body{
text-align: left;
width: 100%;
height: 100%;
background-color: #003690;
background-color: #0036DD;
color: #ffb6fa;
a {
+1 -1
View File
File diff suppressed because one or more lines are too long
+16 -4
View File
@@ -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);
+1 -1
View File
@@ -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;
File diff suppressed because one or more lines are too long
+7 -4
View File
@@ -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;
}