diff --git a/PROJ-ETS/PROJ-ETS/Content/Style.css b/PROJ-ETS/PROJ-ETS/Content/Style.css index 6836c0e..eab8cc9 100644 --- a/PROJ-ETS/PROJ-ETS/Content/Style.css +++ b/PROJ-ETS/PROJ-ETS/Content/Style.css @@ -1098,29 +1098,69 @@ div > ul > li > a.selected.menuNav { height: 30px; border: solid 1px #777777; } -.cLib { - background-image: url('../Images/grigioChiaro_80.png'); +.cEmp { + /*background-image: url('../Images/grigio_80.png');*/ + + background-color: #ffffff; + background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cdd5c4)); + background-image: -webkit-linear-gradient(#ffffff, #cdd5c4); + background-image: -moz-linear-gradient(#ffffff, #cdd5c4); + background-image: -ms-linear-gradient(#ffffff, #cdd5c4); + background-image: -o-linear-gradient(#ffffff, #cdd5c4); + background-image: linear-gradient(#ffffff, #cdd5c4); } -.cSDet { - background-image: url('../Images/giallo_80.png'); +.cS01 { + /*background-image: url('../Images/grigioChiaro_80.png');*/ + background-color: #cdd5c4; + background-image: -webkit-gradient(linear, left top, left bottom, from(#cbff4e), to(#cdd5c4)); + background-image: -webkit-linear-gradient(#cbff4e, #cdd5c4); + background-image: -moz-linear-gradient(#cbff4e, #cdd5c4); + background-image: -ms-linear-gradient(#cbff4e, #cdd5c4); + background-image: -o-linear-gradient(#cbff4e, #cdd5c4); + background-image: linear-gradient(#cbff4e, #cdd5c4); } -.cOcc { - background-image: url('../Images/arancio_80.png'); +.cS02 { + /*background-image: url('../Images/verde_80.png');*/ + background-color: #ffff73; + background-image: -webkit-gradient(linear, left top, left bottom, from(#cbff4e), to(#ffff73)); + background-image: -webkit-linear-gradient(#cbff4e, #ffff73); + background-image: -moz-linear-gradient(#cbff4e, #ffff73); + background-image: -ms-linear-gradient(#cbff4e, #ffff73); + background-image: -o-linear-gradient(#cbff4e, #ffff73); + background-image: linear-gradient(#cbff4e, #ffff73); color: White; } -.cPie { - background-image: url('../Images/verde_80.png'); +.cS03 { + /*background-image: url('../Images/giallo_80.png');*/ + background-color: #ffff73; + background-image: -webkit-gradient(linear, left top, left bottom, from(#ffd88d), to(#ffff73)); + background-image: -webkit-linear-gradient(#ffd88d, #ffff73); + background-image: -moz-linear-gradient(#ffd88d, #ffff73); + background-image: -ms-linear-gradient(#ffd88d, #ffff73); + background-image: -o-linear-gradient(#ffd88d, #ffff73); + background-image: linear-gradient(#ffd88d, #ffff73); color: White; } -.cIna { - background-image: url('../Images/grigio_80.png'); +.cS04 { + /*background-image: url('../Images/arancio_80.png');*/ + background-color: #ffd88d; + background-image: -webkit-gradient(linear, left top, left bottom, from(#ee8b8b), to(#ffd88d)); + background-image: -webkit-linear-gradient(#ee8b8b, #ffd88d); + background-image: -moz-linear-gradient(#ee8b8b, #ffd88d); + background-image: -ms-linear-gradient(#ee8b8b, #ffd88d); + background-image: -o-linear-gradient(#ee8b8b, #ffd88d); + background-image: linear-gradient(#ee8b8b, #ffd88d); color: White; } -.cIna a { - color: White; -} -.cSAll { - background-image: url('../Images/blu_80.png'); +.cOvr { + /*background-image: url('../Images/rosso_80.png');*/ + background-color: #ee8b8b; + background-image: -webkit-gradient(linear, left top, left bottom, from(#d52323), to(#ee8b8b)); + background-image: -webkit-linear-gradient(#d52323, #ee8b8b); + background-image: -moz-linear-gradient(#d52323, #ee8b8b); + background-image: -ms-linear-gradient(#d52323, #ee8b8b); + background-image: -o-linear-gradient(#d52323, #ee8b8b); + background-image: linear-gradient(#d52323, #ee8b8b); } .cBia { text-align: center; diff --git a/PROJ-ETS/PROJ-ETS/Content/Style.less b/PROJ-ETS/PROJ-ETS/Content/Style.less index 95da788..695a8df 100644 --- a/PROJ-ETS/PROJ-ETS/Content/Style.less +++ b/PROJ-ETS/PROJ-ETS/Content/Style.less @@ -1226,36 +1226,81 @@ div > ul > li > a.selected.menuNav { height: @altezzaCella; border: solid 1px @grigioCella; } -.cLib +@S00: #FFF; +@S01: #cdd5c4; +@S02: #cbff4e; +@S03: #ffff73; +@S04: #ffd88d; +@S05: #ee8b8b; +@S06: #d52323; +.cEmp { - background-image: url('../Images/grigioChiaro_80.png'); + /*background-image: url('../Images/grigio_80.png');*/ + background-color: @S00; + background-image: -webkit-gradient(linear,left top,left bottom,from( @S00 ),to( @S01 )); + background-image: -webkit-linear-gradient( @S00,@S01 ); + background-image: -moz-linear-gradient( @S00,@S01 ); + background-image: -ms-linear-gradient( @S00,@S01 ); + background-image: -o-linear-gradient( @S00,@S01 ); + background-image: linear-gradient( @S00,@S01 ); } -.cSDet +.cS01 { - background-image: url('../Images/giallo_80.png'); + /*background-image: url('../Images/grigioChiaro_80.png');*/ + background-color: @S01; + background-image: -webkit-gradient(linear,left top,left bottom,from( @S02 ),to( @S01 )); + background-image: -webkit-linear-gradient( @S02,@S01 ); + background-image: -moz-linear-gradient( @S02,@S01 ); + background-image: -ms-linear-gradient( @S02,@S01 ); + background-image: -o-linear-gradient( @S02,@S01 ); + background-image: linear-gradient( @S02,@S01 ); } -.cOcc +.cS02 { - background-image: url('../Images/arancio_80.png'); + /*background-image: url('../Images/verde_80.png');*/ + background-color: @S03; + background-image: -webkit-gradient(linear,left top,left bottom,from( @S02 ),to( @S03 )); + background-image: -webkit-linear-gradient( @S02,@S03 ); + background-image: -moz-linear-gradient( @S02,@S03 ); + background-image: -ms-linear-gradient( @S02,@S03 ); + background-image: -o-linear-gradient( @S02,@S03 ); + background-image: linear-gradient( @S02,@S03 ); color: White; } -.cPie +.cS03 { - background-image: url('../Images/verde_80.png'); + /*background-image: url('../Images/giallo_80.png');*/ + background-color: @S03; + background-image: -webkit-gradient(linear,left top,left bottom,from( @S04 ),to( @S03 )); + background-image: -webkit-linear-gradient( @S04,@S03 ); + background-image: -moz-linear-gradient( @S04,@S03 ); + background-image: -ms-linear-gradient( @S04,@S03 ); + background-image: -o-linear-gradient( @S04,@S03 ); + background-image: linear-gradient( @S04,@S03 ); color: White; } -.cIna +.cS04 { - background-image: url('../Images/grigio_80.png'); + /*background-image: url('../Images/arancio_80.png');*/ + background-color: @S04; + background-image: -webkit-gradient(linear,left top,left bottom,from( @S05 ),to( @S04 )); + background-image: -webkit-linear-gradient( @S05,@S04 ); + background-image: -moz-linear-gradient( @S05,@S04 ); + background-image: -ms-linear-gradient( @S05,@S04 ); + background-image: -o-linear-gradient( @S05,@S04 ); + background-image: linear-gradient( @S05,@S04 ); color: White; } -.cIna a +.cOvr { - color: White; -} -.cSAll -{ - background-image: url('../Images/blu_80.png'); + /*background-image: url('../Images/rosso_80.png');*/ + background-color: @S05; + background-image: -webkit-gradient(linear,left top,left bottom,from( @S06 ),to( @S05 )); + background-image: -webkit-linear-gradient( @S06,@S05 ); + background-image: -moz-linear-gradient( @S06,@S05 ); + background-image: -ms-linear-gradient( @S06,@S05 ); + background-image: -o-linear-gradient( @S06,@S05 ); + background-image: linear-gradient( @S06,@S05 ); } .cBia { diff --git a/PROJ-ETS/PROJ-ETS/Content/Style.min.css b/PROJ-ETS/PROJ-ETS/Content/Style.min.css index b265c32..098ac8e 100644 --- a/PROJ-ETS/PROJ-ETS/Content/Style.min.css +++ b/PROJ-ETS/PROJ-ETS/Content/Style.min.css @@ -1 +1 @@ -html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;outline:0;font-weight:inherit;font-style:inherit;font-family:Verdana,Arial}:focus{outline:0}body{line-height:1;color:#000;background:#fff}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}caption,th,td{text-align:left;font-weight:normal}blockquote:before,blockquote:after,q:before,q:after{content:""}blockquote,q{quotes:"" ""}.fullscreen{display:block;top:0;left:0;width:100%;height:100%}.bottomWrite{vertical-align:bottom;border-top:#0d0083 1px solid;margin-top:2px;padding-top:2px}.smallText{font-size:8pt}.ui-dialog-sw{padding:.2em;overflow:hidden;-moz-box-shadow:0 5px 10px rgba(0,0,0,.8);-webkit-box-shadow:0 5px 10px rgba(0,0,0,.8);box-shadow:0 5px 10px rgba(0,0,0,.8)}.ui-dialog-sw .ui-dialog-sw-titlebar{padding:.5em 1em .3em;position:relative}.ui-dialog-sw .ui-dialog-sw-title{float:left;margin:.1em 16px .2em 0}.ui-dialog-sw .ui-dialog-sw-titlebar-close{position:absolute;right:.3em;top:50%;width:19px;margin:-10px 0 0 0;padding:1px;height:18px;-moz-border-radius:10px}.ui-dialog-sw .ui-dialog-sw-titlebar-close span{display:block;margin:1px}.ui-dialog-sw .ui-dialog-sw-titlebar-close:hover,.ui-dialog-sw .ui-dialog-sw-titlebar-close:focus{padding:0}.ui-dialog-sw .ui-dialog-sw-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto;zoom:1}.ui-dialog-sw .ui-dialog-sw-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em .4em}.ui-dialog-sw .ui-dialog-sw-buttonpane .ui-dialog-sw-buttonset{float:right}.ui-dialog-sw .ui-dialog-sw-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog-sw .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-sw-titlebar{cursor:move}.ui-dialog-sw{padding:0}.ui-dialog-sw .ui-dialog-sw-titlebar{border-top:none;border-right:none;border-left:none;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.ui-widget-sw{font-family:Arial,sans-serif;font-size:1.1em}.ui-widget-sw .ui-widget-sw{font-size:1em}.ui-widget-sw input,.ui-widget-sw select,.ui-widget-sw textarea,.ui-widget-sw button{font-family:Arial,sans-serif;font-size:1em}.ui-widget-sw-content{border:1px solid #a8a8a8;background:#fff;color:#4f4f4f}.ui-widget-sw-header{border:1px solid #a8a8a8;background:silver url('../images/ui-bg_highlight-soft_100_c0c0c0_1x100.png') repeat-x 50% top;color:#333;font-weight:bold;text-shadow:0 1px 0 rgba(255,255,255,.7)}.ui-widget-sw-header a{color:#4f4f4f}.areaTitolo{background-color:#0a64a4;background-image:url('../images/bg-menu-main.png');background-repeat:repeat-x;color:#ececec}.priCol-1{background-color:#00b060}.priCol-2{background-color:#218457}.priCol-3{background-color:#00733e}.priCol-4{background-color:#36d88e}.priCol-5{background-color:#c3ffe4}.secColA-1{background-color:#2d9eff;background-image:-webkit-gradient(linear,left top,left bottom,from(#0a64a4),to(#4481df));background-image:-webkit-linear-gradient(#0a64a4,#4481df);background-image:-moz-linear-gradient(#0a64a4,#4481df);background-image:-ms-linear-gradient(#0a64a4,#4481df);background-image:-o-linear-gradient(#0a64a4,#4481df);background-image:linear-gradient(#0a64a4,#4481df)}.secColA-2{background-color:#24577b}.secColA-3{background-color:#03406a}.secColA-4{background-image:-webkit-gradient(linear,left top,left bottom,from(#4683ff),to(#2461bf));background-image:-webkit-linear-gradient(#4683ff,#2461bf);background-image:-moz-linear-gradient(#4683ff,#2461bf);background-image:-ms-linear-gradient(#4683ff,#2461bf);background-image:-o-linear-gradient(#4683ff,#2461bf);background-image:linear-gradient(#4683ff,#2461bf)}.secColA-5{background-image:-webkit-gradient(linear,left top,left bottom,from(#b8e1fd),to(#2461bf));background-image:-webkit-linear-gradient(#b8e1fd,#2461bf);background-image:-moz-linear-gradient(#b8e1fd,#2461bf);background-image:-ms-linear-gradient(#b8e1fd,#2461bf);background-image:-o-linear-gradient(#b8e1fd,#2461bf);background-image:linear-gradient(#b8e1fd,#2461bf)}.secColB-1{background-color:#ff9000}.secColB-2{background-color:#bf8130}.secColB-3{background-color:#a65e00}.secColB-4{background-color:#ffac40}.secColB-5{background-color:#fdd7a6}.comCol-1{background-color:#ff4500}.comCol-2{background-color:#bf5730}.comCol-3{background-color:#a62d00}.comCol-4{background-color:#ff7340}.comCol-5{background-color:#ffcebc}.lightBlue{border:1px solid #cdcdcd;background-image:-webkit-gradient(linear,left top,left bottom,from(#ddf),to(#e1f1ff));background-image:-webkit-linear-gradient(#ddf,#e1f1ff);background-image:-moz-linear-gradient(#ddf,#e1f1ff);background-image:-ms-linear-gradient(#ddf,#e1f1ff);background-image:-o-linear-gradient(#ddf,#e1f1ff);background-image:linear-gradient(#ddf,#e1f1ff)}.lightGray{background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f1f1f1));background-image:-webkit-linear-gradient(#fff,#f1f1f1);background-image:-moz-linear-gradient(#fff,#f1f1f1);background-image:-ms-linear-gradient(#fff,#f1f1f1);background-image:-o-linear-gradient(#fff,#f1f1f1);background-image:linear-gradient(#fff,#f1f1f1);border:1px solid #cdcdcd}.headerStyle{background-color:#507cd1;font-weight:bold;color:#fff;white-space:nowrap}.footeStyle{background-color:#507cd1;font-weight:bold;color:#fff;white-space:nowrap}.footerRowStyle{background-image:-webkit-gradient(linear,left top,left bottom,from(#ff7a00),to(#cc3800));background-image:-webkit-linear-gradient(#ff7a00,#cc3800);background-image:-moz-linear-gradient(#ff7a00,#cc3800);background-image:-ms-linear-gradient(#ff7a00,#cc3800);background-image:-o-linear-gradient(#ff7a00,#cc3800);background-image:linear-gradient(#ff7a00,#cc3800)}.pagerStyle{background-color:#2461bf;color:#fff;white-space:nowrap;text-align:center;margin:auto;font-size:medium}.rowStyle{background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f1f1f1));background-image:-webkit-linear-gradient(#fff,#f1f1f1);background-image:-moz-linear-gradient(#fff,#f1f1f1);background-image:-ms-linear-gradient(#fff,#f1f1f1);background-image:-o-linear-gradient(#fff,#f1f1f1);background-image:linear-gradient(#fff,#f1f1f1);border:1px solid #cdcdcd}.alternatingRowStyle{border:1px solid #cdcdcd;background-image:-webkit-gradient(linear,left top,left bottom,from(#ddf),to(#e1f1ff));background-image:-webkit-linear-gradient(#ddf,#e1f1ff);background-image:-moz-linear-gradient(#ddf,#e1f1ff);background-image:-ms-linear-gradient(#ddf,#e1f1ff);background-image:-o-linear-gradient(#ddf,#e1f1ff);background-image:linear-gradient(#ddf,#e1f1ff)}.editRowStyle{border:1px solid #5282de;background-image:-webkit-gradient(linear,left top,left bottom,from(#e2ebff),to(#94b4ea));background-image:-webkit-linear-gradient(#e2ebff,#94b4ea);background-image:-moz-linear-gradient(#e2ebff,#94b4ea);background-image:-ms-linear-gradient(#e2ebff,#94b4ea);background-image:-o-linear-gradient(#e2ebff,#94b4ea);background-image:linear-gradient(#e2ebff,#94b4ea)}.selectedRowStyle{background-image:-webkit-gradient(linear,left top,left bottom,from(#dfd),to(#80ff80));background-image:-webkit-linear-gradient(#dfd,#80ff80);background-image:-moz-linear-gradient(#dfd,#80ff80);background-image:-ms-linear-gradient(#dfd,#80ff80);background-image:-o-linear-gradient(#dfd,#80ff80);background-image:linear-gradient(#dfd,#80ff80);font-weight:bold}.sortAscHead{background-color:#6d95e1}.sortDescHead{background-color:#4870be}.sortAscCell{background-color:#f5f7fb}.sortDescCell{background-color:#e9ebef}.divTitoloAdmin{background-color:#bf8130;padding:5px 0 5px 5px;color:#fff}A:hover{color:red}.float-left{float:left}.float-right{float:right}.divSx{float:left}.divDx{float:right}.divCenter{float:none;text-align:center;padding:0;margin:0 auto 0 auto}.clearDiv{clear:both}.padSxDx{padding-left:2px;padding-right:2px}.shadowBox{-moz-box-shadow:0 4px 8px rgba(0,0,0,.5);-webkit-box-shadow:0 4px 8px rgba(0,0,0,.5);box-shadow:0 4px 8px rgba(0,0,0,.5)}.half{width:50%}.third{width:33%}.quarter{width:25%}.fifth{width:20%}.modalBackground{background-color:gray;filter:alpha(opacity=70);opacity:.7}.btnNew{background-image:url(../images/new_m.png);background-repeat:no-repeat;background-position:right;border:1px solid #333;padding:4px;padding-right:28px}.btnDelete{background-image:url(../images/elimina_m.png);background-repeat:no-repeat;background-position:right;border:1px solid #333;padding:4px;padding-right:28px}.btnUpdate{background-image:url(../images/reload_l.png);background-repeat:no-repeat;background-position:center right;background-color:#dedede;width:160px;height:40px;border:1px solid #333;vertical-align:middle;margin:auto;font-size:10pt;font-family:Arial}.btnMoveBig{background-image:url(../images/InOutArrows_l.png);background-repeat:no-repeat;background-position:right;border:1px solid #333;padding:8px;padding-right:32px}.btnEditBig{background-image:url(../images/edit_l.png);background-repeat:no-repeat;background-position:right;border:1px solid #333;padding:4px;padding-right:28px}.btnEdit{background-image:url(../images/edit_m.png);background-repeat:no-repeat;background-position:right;border:1px solid #333;padding:4px;padding-right:28px}.btnClonaBig{background-image:url(../images/clonaObj_l.png);background-repeat:no-repeat;background-position:right;border:1px solid #333;padding:4px;padding-right:28px}.btnClona{background-image:url(../images/clonaObj_m.png);background-repeat:no-repeat;background-position:right;border:1px solid #333;padding:4px;padding-right:28px}.btnRosso{border:solid 2px red;background-color:#faa;width:100%;text-align:center}.btnRossoGrad{border:solid 2px red;background-color:#faa;text-align:center;background-image:-webkit-gradient(linear,left top,left bottom,from(#faa),to(red));background-image:-webkit-linear-gradient(#faa,red);background-image:-moz-linear-gradient(#faa,red);background-image:-ms-linear-gradient(#faa,red);background-image:-o-linear-gradient(#faa,red);background-image:linear-gradient(#faa,red)}.btnArancio{border:solid 2px #e48800;background-color:#ffb44d;width:100%;text-align:center}.btnArancioGrad{border:solid 2px #e48800;background-color:#ffb44d;text-align:center;background-image:-webkit-gradient(linear,left top,left bottom,from(#ffb44d),to(#e48800));background-image:-webkit-linear-gradient(#ffb44d,#e48800);background-image:-moz-linear-gradient(#ffb44d,#e48800);background-image:-ms-linear-gradient(#ffb44d,#e48800);background-image:-o-linear-gradient(#ffb44d,#e48800);background-image:linear-gradient(#ffb44d,#e48800)}.btnVerde{border:solid 2px green;background-color:#afa;width:100%;text-align:center}.btnVerdeGrad{border:solid 2px green;background-color:#afa;text-align:center;background-image:-webkit-gradient(linear,left top,left bottom,from(#afa),to(green));background-image:-webkit-linear-gradient(#afa,green);background-image:-moz-linear-gradient(#afa,green);background-image:-ms-linear-gradient(#afa,green);background-image:-o-linear-gradient(#afa,green);background-image:linear-gradient(#afa,green)}.btnBlu{border:solid 2px blue;background-color:#aaf;width:100%;text-align:center}.btnPreferred{font-size:3em;border:solid 4px red;background-color:#ffacac;width:100%;min-height:200px;height:100%;text-align:center;white-space:pre}.btnStd{font-size:3em;color:#696969;border:solid 4px #333;background-color:#acacac;width:100%;min-height:200px;height:100%;text-align:center;white-space:pre}.btnDisabled{border:solid 2px #999;background-color:#dedede;text-align:center;background-image:-webkit-gradient(linear,left top,left bottom,from(#dedede),to(#999));background-image:-webkit-linear-gradient(#dedede,#999);background-image:-moz-linear-gradient(#dedede,#999);background-image:-ms-linear-gradient(#dedede,#999);background-image:-o-linear-gradient(#dedede,#999);background-image:linear-gradient(#dedede,#999)}.btnGialloGrad{border:solid 2px #a93;background-color:#fe6;text-align:center;background-image:-webkit-gradient(linear,left top,left bottom,from(#fe6),to(#a93));background-image:-webkit-linear-gradient(#fe6,#a93);background-image:-moz-linear-gradient(#fe6,#a93);background-image:-ms-linear-gradient(#fe6,#a93);background-image:-o-linear-gradient(#fe6,#a93);background-image:linear-gradient(#fe6,#a93)}.pad26{padding:2px 6px}.textArancio{color:#fa3}.textAzzurro{color:#36f}.textNero{color:#000}.textGrigio{color:#888}.badgeRosso{border:solid 2px red;background-color:#faa;width:100%;text-align:center}.badgeStd{border:solid 2px #333;background-color:#eee;width:100%;text-align:center}.badgeVerde{border:solid 2px green;background-color:#afa;width:100%;text-align:center}.badgeArancio{border:solid 2px #980;background-color:#fe6;width:100%;text-align:center}.rltUpdate{background-color:#ff3}.ui-autocomplete{max-height:200px;overflow-y:auto;overflow-x:hidden;padding-right:20px}li.static{margin:2px 4px 0 0;border-color:#cdcdcd;border-style:solid;border-width:1px 1px 0 1px;border-top-right-radius:4px;border-top-left-radius:4px}.menuNav{background-color:#e6e6e6;color:#284e98;font-size:1em;border-top-right-radius:4px;border-top-left-radius:4px}.menuNav:hover{background-color:#b5c7de;color:#000}div>ul>li>a.selected.menuNav{background-color:#fff;color:#000}.areaContMenu{background-color:#fff;padding:4px;border-color:#cdcdcd;border-style:solid;border-width:1px 1px 1px 1px}.roundedCorner{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px}.padStd{padding:4px}.sfondoGrigio{background-color:#ececec}.bordoGrigio{padding:4px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border:2px solid #818181}.bordoVerde{padding:4px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border:2px solid green}.bordoRosso{padding:4px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border:2px solid red}.bordoNero{padding:4px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border:2px solid #000;background-color:#fff}.bordoAzzurro{padding:4px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border:2px solid #4da3ff}.placardGrigio{padding:4px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border:2px solid #818181;background-color:#ececec}.docIcon{background-image:url(../images/download_s.png);background-repeat:no-repeat;background-position:right;padding:2px;padding-right:16px;min-height:16px}.filtro_1{background-color:#88f}.filtro_2{background-color:#aaf}.filtro_2:hover{color:#88f;background-color:#dedeff}.filtro_2 a:link{color:#fff;background-color:transparent}.filtro_3{background-color:#ccf}.filtro_4{background-color:#dedeff}.filtro_5{background-color:#efefff}.tabLabelGreen{background-color:#dfd;border-top:1px solid #393;border-left:1px solid #393;border-right:1px solid #393;height:1.5em;vertical-align:middle;padding-top:.5em;font-size:13pt;font-weight:bold}.tabBodyGreen{background-color:#dfd;border-bottom:1px solid green;border-left:1px solid green;border-right:1px solid green}.tabLabelGray{background-color:#dedede;border-top:1px solid #333;border-left:1px solid #333;border-right:1px solid #333;height:1.5em;vertical-align:middle;padding-top:.5em;font-size:13pt;font-weight:bold}.tabBodyGray{background-color:#dedede;border-bottom:1px solid #000;border-left:1px solid #000;border-right:1px solid #000}.fontTitolo{font-size:24pt;height:36px}.fontMedio{font-size:16pt}.fontStd{font-size:10pt}.fontPiccolo{font-size:8pt}.fontMini{font-size:7pt}.fontMicro{font-size:6pt}.labelInput{font-size:9pt;color:#555}.watermark{color:gray;font-style:italic}.autocomplete{width:400px;color:gray;background-color:#fff;font-size:8pt;padding:4px 1px 4px 1px;border-bottom:1px solid #888}.autocompleteHiglight{width:400px;color:#000;background-color:#ff0;font-size:8pt;padding:4px 1px 4px 1px;border-bottom:1px solid #888}.autocompleteElemID{width:400px;background-color:red;font-weight:bold}.autocompleteListCssClass{width:400px;font-size:8pt;background-color:#fff;padding:2px 2px 2px 2px;border:1px solid #333}.dataBlock{background-color:#fff;font-size:9pt;float:left;border-top:solid 1px gray;border-bottom:solid 1px gray;border-left:solid 1px gray;border-right:solid 1px gray;margin:0;padding:4px;vertical-align:text-top;text-align:left}.dataBlockHeader{border-top:solid 2px gray;border-bottom:solid 1px gray;border-left:solid 2px gray;border-right:solid 2px gray;background-color:#efefef;font-weight:bold;padding:2px}.dataBlockSx{float:left;text-align:left}.dataBlockDx{float:right;text-align:right}.dataBlockLabel{border-top:solid 1px #fefefe;padding-right:2px;padding-left:2px}.dataBlockValue{color:#000;font-weight:bold;padding-right:4px;padding-left:4px;margin-bottom:0}.dataBlockReset{clear:both;padding-bottom:2px;margin-bottom:2px}.dataBlockResetGray{border-bottom:solid 1px #cecece;clear:both;padding-bottom:2px;margin-bottom:2px}.dataBlockResetDark{border-bottom:solid 1px #363636;clear:both;padding-bottom:2px;margin-bottom:2px}.dataBlockBtn{background-color:#fafafa;border:solid 1px gray;padding-top:4px;padding-bottom:4px;vertical-align:text-top;margin:0;text-align:center}.blockSizeSmallest{width:175px}.blockSizeSmaller{width:200px}.blockSizeSmall{width:225px}.blockSizeMed{width:250px}.blockSizeLarge{width:275px}.blockSizeXLarge{width:300px}.blockSizeXXLarge{width:350px}.blockSizeXXXLarge{width:400px}.grView{color:#333;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;padding-bottom:1px}.ctrHeaderPager{background-color:#b8b8b8;font-weight:bold;color:#fff}.ctrHeaderPagerRight{background-color:#b8b8b8;font-weight:bold;color:#fff;text-align:right}.ctrHeaderPagerBlue{background-color:#507cd1;height:1px}.ctrHeaderPagerBlueRight{background-color:#507cd1;height:1px;text-align:right}.ctrFooter{background-color:#507cd1;font-weight:bold;color:#fff}.ctrRowStyle{vertical-align:top;background-color:#eff3fb}.valignMiddle{vertical-align:middle}.lblErrore{color:red}.cTab{text-align:center;height:30px;border:solid 1px #777}.cLib{background-image:url('../Images/grigioChiaro_80.png')}.cSDet{background-image:url('../Images/giallo_80.png')}.cOcc{background-image:url('../Images/arancio_80.png');color:#fff}.cPie{background-image:url('../Images/verde_80.png');color:#fff}.cIna{background-image:url('../Images/grigio_80.png');color:#fff}.cIna a{color:#fff}.cSAll{background-image:url('../Images/blu_80.png')}.cBia{text-align:center;font-weight:bold}.selCel{border:dashed 2px #000;text-align:center} \ No newline at end of file +html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;outline:0;font-weight:inherit;font-style:inherit;font-family:Verdana,Arial}:focus{outline:0}body{line-height:1;color:#000;background:#fff}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}caption,th,td{text-align:left;font-weight:normal}blockquote:before,blockquote:after,q:before,q:after{content:""}blockquote,q{quotes:"" ""}.fullscreen{display:block;top:0;left:0;width:100%;height:100%}.bottomWrite{vertical-align:bottom;border-top:#0d0083 1px solid;margin-top:2px;padding-top:2px}.smallText{font-size:8pt}.ui-dialog-sw{padding:.2em;overflow:hidden;-moz-box-shadow:0 5px 10px rgba(0,0,0,.8);-webkit-box-shadow:0 5px 10px rgba(0,0,0,.8);box-shadow:0 5px 10px rgba(0,0,0,.8)}.ui-dialog-sw .ui-dialog-sw-titlebar{padding:.5em 1em .3em;position:relative}.ui-dialog-sw .ui-dialog-sw-title{float:left;margin:.1em 16px .2em 0}.ui-dialog-sw .ui-dialog-sw-titlebar-close{position:absolute;right:.3em;top:50%;width:19px;margin:-10px 0 0 0;padding:1px;height:18px;-moz-border-radius:10px}.ui-dialog-sw .ui-dialog-sw-titlebar-close span{display:block;margin:1px}.ui-dialog-sw .ui-dialog-sw-titlebar-close:hover,.ui-dialog-sw .ui-dialog-sw-titlebar-close:focus{padding:0}.ui-dialog-sw .ui-dialog-sw-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto;zoom:1}.ui-dialog-sw .ui-dialog-sw-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em .4em}.ui-dialog-sw .ui-dialog-sw-buttonpane .ui-dialog-sw-buttonset{float:right}.ui-dialog-sw .ui-dialog-sw-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog-sw .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-sw-titlebar{cursor:move}.ui-dialog-sw{padding:0}.ui-dialog-sw .ui-dialog-sw-titlebar{border-top:none;border-right:none;border-left:none;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.ui-widget-sw{font-family:Arial,sans-serif;font-size:1.1em}.ui-widget-sw .ui-widget-sw{font-size:1em}.ui-widget-sw input,.ui-widget-sw select,.ui-widget-sw textarea,.ui-widget-sw button{font-family:Arial,sans-serif;font-size:1em}.ui-widget-sw-content{border:1px solid #a8a8a8;background:#fff;color:#4f4f4f}.ui-widget-sw-header{border:1px solid #a8a8a8;background:silver url('../images/ui-bg_highlight-soft_100_c0c0c0_1x100.png') repeat-x 50% top;color:#333;font-weight:bold;text-shadow:0 1px 0 rgba(255,255,255,.7)}.ui-widget-sw-header a{color:#4f4f4f}.areaTitolo{background-color:#0a64a4;background-image:url('../images/bg-menu-main.png');background-repeat:repeat-x;color:#ececec}.priCol-1{background-color:#00b060}.priCol-2{background-color:#218457}.priCol-3{background-color:#00733e}.priCol-4{background-color:#36d88e}.priCol-5{background-color:#c3ffe4}.secColA-1{background-color:#2d9eff;background-image:-webkit-gradient(linear,left top,left bottom,from(#0a64a4),to(#4481df));background-image:-webkit-linear-gradient(#0a64a4,#4481df);background-image:-moz-linear-gradient(#0a64a4,#4481df);background-image:-ms-linear-gradient(#0a64a4,#4481df);background-image:-o-linear-gradient(#0a64a4,#4481df);background-image:linear-gradient(#0a64a4,#4481df)}.secColA-2{background-color:#24577b}.secColA-3{background-color:#03406a}.secColA-4{background-image:-webkit-gradient(linear,left top,left bottom,from(#4683ff),to(#2461bf));background-image:-webkit-linear-gradient(#4683ff,#2461bf);background-image:-moz-linear-gradient(#4683ff,#2461bf);background-image:-ms-linear-gradient(#4683ff,#2461bf);background-image:-o-linear-gradient(#4683ff,#2461bf);background-image:linear-gradient(#4683ff,#2461bf)}.secColA-5{background-image:-webkit-gradient(linear,left top,left bottom,from(#b8e1fd),to(#2461bf));background-image:-webkit-linear-gradient(#b8e1fd,#2461bf);background-image:-moz-linear-gradient(#b8e1fd,#2461bf);background-image:-ms-linear-gradient(#b8e1fd,#2461bf);background-image:-o-linear-gradient(#b8e1fd,#2461bf);background-image:linear-gradient(#b8e1fd,#2461bf)}.secColB-1{background-color:#ff9000}.secColB-2{background-color:#bf8130}.secColB-3{background-color:#a65e00}.secColB-4{background-color:#ffac40}.secColB-5{background-color:#fdd7a6}.comCol-1{background-color:#ff4500}.comCol-2{background-color:#bf5730}.comCol-3{background-color:#a62d00}.comCol-4{background-color:#ff7340}.comCol-5{background-color:#ffcebc}.lightBlue{border:1px solid #cdcdcd;background-image:-webkit-gradient(linear,left top,left bottom,from(#ddf),to(#e1f1ff));background-image:-webkit-linear-gradient(#ddf,#e1f1ff);background-image:-moz-linear-gradient(#ddf,#e1f1ff);background-image:-ms-linear-gradient(#ddf,#e1f1ff);background-image:-o-linear-gradient(#ddf,#e1f1ff);background-image:linear-gradient(#ddf,#e1f1ff)}.lightGray{background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f1f1f1));background-image:-webkit-linear-gradient(#fff,#f1f1f1);background-image:-moz-linear-gradient(#fff,#f1f1f1);background-image:-ms-linear-gradient(#fff,#f1f1f1);background-image:-o-linear-gradient(#fff,#f1f1f1);background-image:linear-gradient(#fff,#f1f1f1);border:1px solid #cdcdcd}.headerStyle{background-color:#507cd1;font-weight:bold;color:#fff;white-space:nowrap}.footeStyle{background-color:#507cd1;font-weight:bold;color:#fff;white-space:nowrap}.footerRowStyle{background-image:-webkit-gradient(linear,left top,left bottom,from(#ff7a00),to(#cc3800));background-image:-webkit-linear-gradient(#ff7a00,#cc3800);background-image:-moz-linear-gradient(#ff7a00,#cc3800);background-image:-ms-linear-gradient(#ff7a00,#cc3800);background-image:-o-linear-gradient(#ff7a00,#cc3800);background-image:linear-gradient(#ff7a00,#cc3800)}.pagerStyle{background-color:#2461bf;color:#fff;white-space:nowrap;text-align:center;margin:auto;font-size:medium}.rowStyle{background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f1f1f1));background-image:-webkit-linear-gradient(#fff,#f1f1f1);background-image:-moz-linear-gradient(#fff,#f1f1f1);background-image:-ms-linear-gradient(#fff,#f1f1f1);background-image:-o-linear-gradient(#fff,#f1f1f1);background-image:linear-gradient(#fff,#f1f1f1);border:1px solid #cdcdcd}.alternatingRowStyle{border:1px solid #cdcdcd;background-image:-webkit-gradient(linear,left top,left bottom,from(#ddf),to(#e1f1ff));background-image:-webkit-linear-gradient(#ddf,#e1f1ff);background-image:-moz-linear-gradient(#ddf,#e1f1ff);background-image:-ms-linear-gradient(#ddf,#e1f1ff);background-image:-o-linear-gradient(#ddf,#e1f1ff);background-image:linear-gradient(#ddf,#e1f1ff)}.editRowStyle{border:1px solid #5282de;background-image:-webkit-gradient(linear,left top,left bottom,from(#e2ebff),to(#94b4ea));background-image:-webkit-linear-gradient(#e2ebff,#94b4ea);background-image:-moz-linear-gradient(#e2ebff,#94b4ea);background-image:-ms-linear-gradient(#e2ebff,#94b4ea);background-image:-o-linear-gradient(#e2ebff,#94b4ea);background-image:linear-gradient(#e2ebff,#94b4ea)}.selectedRowStyle{background-image:-webkit-gradient(linear,left top,left bottom,from(#dfd),to(#80ff80));background-image:-webkit-linear-gradient(#dfd,#80ff80);background-image:-moz-linear-gradient(#dfd,#80ff80);background-image:-ms-linear-gradient(#dfd,#80ff80);background-image:-o-linear-gradient(#dfd,#80ff80);background-image:linear-gradient(#dfd,#80ff80);font-weight:bold}.sortAscHead{background-color:#6d95e1}.sortDescHead{background-color:#4870be}.sortAscCell{background-color:#f5f7fb}.sortDescCell{background-color:#e9ebef}.divTitoloAdmin{background-color:#bf8130;padding:5px 0 5px 5px;color:#fff}A:hover{color:red}.float-left{float:left}.float-right{float:right}.divSx{float:left}.divDx{float:right}.divCenter{float:none;text-align:center;padding:0;margin:0 auto 0 auto}.clearDiv{clear:both}.padSxDx{padding-left:2px;padding-right:2px}.shadowBox{-moz-box-shadow:0 4px 8px rgba(0,0,0,.5);-webkit-box-shadow:0 4px 8px rgba(0,0,0,.5);box-shadow:0 4px 8px rgba(0,0,0,.5)}.half{width:50%}.third{width:33%}.quarter{width:25%}.fifth{width:20%}.modalBackground{background-color:gray;filter:alpha(opacity=70);opacity:.7}.btnNew{background-image:url(../images/new_m.png);background-repeat:no-repeat;background-position:right;border:1px solid #333;padding:4px;padding-right:28px}.btnDelete{background-image:url(../images/elimina_m.png);background-repeat:no-repeat;background-position:right;border:1px solid #333;padding:4px;padding-right:28px}.btnUpdate{background-image:url(../images/reload_l.png);background-repeat:no-repeat;background-position:center right;background-color:#dedede;width:160px;height:40px;border:1px solid #333;vertical-align:middle;margin:auto;font-size:10pt;font-family:Arial}.btnMoveBig{background-image:url(../images/InOutArrows_l.png);background-repeat:no-repeat;background-position:right;border:1px solid #333;padding:8px;padding-right:32px}.btnEditBig{background-image:url(../images/edit_l.png);background-repeat:no-repeat;background-position:right;border:1px solid #333;padding:4px;padding-right:28px}.btnEdit{background-image:url(../images/edit_m.png);background-repeat:no-repeat;background-position:right;border:1px solid #333;padding:4px;padding-right:28px}.btnClonaBig{background-image:url(../images/clonaObj_l.png);background-repeat:no-repeat;background-position:right;border:1px solid #333;padding:4px;padding-right:28px}.btnClona{background-image:url(../images/clonaObj_m.png);background-repeat:no-repeat;background-position:right;border:1px solid #333;padding:4px;padding-right:28px}.btnRosso{border:solid 2px red;background-color:#faa;width:100%;text-align:center}.btnRossoGrad{border:solid 2px red;background-color:#faa;text-align:center;background-image:-webkit-gradient(linear,left top,left bottom,from(#faa),to(red));background-image:-webkit-linear-gradient(#faa,red);background-image:-moz-linear-gradient(#faa,red);background-image:-ms-linear-gradient(#faa,red);background-image:-o-linear-gradient(#faa,red);background-image:linear-gradient(#faa,red)}.btnArancio{border:solid 2px #e48800;background-color:#ffb44d;width:100%;text-align:center}.btnArancioGrad{border:solid 2px #e48800;background-color:#ffb44d;text-align:center;background-image:-webkit-gradient(linear,left top,left bottom,from(#ffb44d),to(#e48800));background-image:-webkit-linear-gradient(#ffb44d,#e48800);background-image:-moz-linear-gradient(#ffb44d,#e48800);background-image:-ms-linear-gradient(#ffb44d,#e48800);background-image:-o-linear-gradient(#ffb44d,#e48800);background-image:linear-gradient(#ffb44d,#e48800)}.btnVerde{border:solid 2px green;background-color:#afa;width:100%;text-align:center}.btnVerdeGrad{border:solid 2px green;background-color:#afa;text-align:center;background-image:-webkit-gradient(linear,left top,left bottom,from(#afa),to(green));background-image:-webkit-linear-gradient(#afa,green);background-image:-moz-linear-gradient(#afa,green);background-image:-ms-linear-gradient(#afa,green);background-image:-o-linear-gradient(#afa,green);background-image:linear-gradient(#afa,green)}.btnBlu{border:solid 2px blue;background-color:#aaf;width:100%;text-align:center}.btnPreferred{font-size:3em;border:solid 4px red;background-color:#ffacac;width:100%;min-height:200px;height:100%;text-align:center;white-space:pre}.btnStd{font-size:3em;color:#696969;border:solid 4px #333;background-color:#acacac;width:100%;min-height:200px;height:100%;text-align:center;white-space:pre}.btnDisabled{border:solid 2px #999;background-color:#dedede;text-align:center;background-image:-webkit-gradient(linear,left top,left bottom,from(#dedede),to(#999));background-image:-webkit-linear-gradient(#dedede,#999);background-image:-moz-linear-gradient(#dedede,#999);background-image:-ms-linear-gradient(#dedede,#999);background-image:-o-linear-gradient(#dedede,#999);background-image:linear-gradient(#dedede,#999)}.btnGialloGrad{border:solid 2px #a93;background-color:#fe6;text-align:center;background-image:-webkit-gradient(linear,left top,left bottom,from(#fe6),to(#a93));background-image:-webkit-linear-gradient(#fe6,#a93);background-image:-moz-linear-gradient(#fe6,#a93);background-image:-ms-linear-gradient(#fe6,#a93);background-image:-o-linear-gradient(#fe6,#a93);background-image:linear-gradient(#fe6,#a93)}.pad26{padding:2px 6px}.textArancio{color:#fa3}.textAzzurro{color:#36f}.textNero{color:#000}.textGrigio{color:#888}.badgeRosso{border:solid 2px red;background-color:#faa;width:100%;text-align:center}.badgeStd{border:solid 2px #333;background-color:#eee;width:100%;text-align:center}.badgeVerde{border:solid 2px green;background-color:#afa;width:100%;text-align:center}.badgeArancio{border:solid 2px #980;background-color:#fe6;width:100%;text-align:center}.rltUpdate{background-color:#ff3}.ui-autocomplete{max-height:200px;overflow-y:auto;overflow-x:hidden;padding-right:20px}li.static{margin:2px 4px 0 0;border-color:#cdcdcd;border-style:solid;border-width:1px 1px 0 1px;border-top-right-radius:4px;border-top-left-radius:4px}.menuNav{background-color:#e6e6e6;color:#284e98;font-size:1em;border-top-right-radius:4px;border-top-left-radius:4px}.menuNav:hover{background-color:#b5c7de;color:#000}div>ul>li>a.selected.menuNav{background-color:#fff;color:#000}.areaContMenu{background-color:#fff;padding:4px;border-color:#cdcdcd;border-style:solid;border-width:1px 1px 1px 1px}.roundedCorner{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px}.padStd{padding:4px}.sfondoGrigio{background-color:#ececec}.bordoGrigio{padding:4px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border:2px solid #818181}.bordoVerde{padding:4px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border:2px solid green}.bordoRosso{padding:4px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border:2px solid red}.bordoNero{padding:4px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border:2px solid #000;background-color:#fff}.bordoAzzurro{padding:4px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border:2px solid #4da3ff}.placardGrigio{padding:4px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border:2px solid #818181;background-color:#ececec}.docIcon{background-image:url(../images/download_s.png);background-repeat:no-repeat;background-position:right;padding:2px;padding-right:16px;min-height:16px}.filtro_1{background-color:#88f}.filtro_2{background-color:#aaf}.filtro_2:hover{color:#88f;background-color:#dedeff}.filtro_2 a:link{color:#fff;background-color:transparent}.filtro_3{background-color:#ccf}.filtro_4{background-color:#dedeff}.filtro_5{background-color:#efefff}.tabLabelGreen{background-color:#dfd;border-top:1px solid #393;border-left:1px solid #393;border-right:1px solid #393;height:1.5em;vertical-align:middle;padding-top:.5em;font-size:13pt;font-weight:bold}.tabBodyGreen{background-color:#dfd;border-bottom:1px solid green;border-left:1px solid green;border-right:1px solid green}.tabLabelGray{background-color:#dedede;border-top:1px solid #333;border-left:1px solid #333;border-right:1px solid #333;height:1.5em;vertical-align:middle;padding-top:.5em;font-size:13pt;font-weight:bold}.tabBodyGray{background-color:#dedede;border-bottom:1px solid #000;border-left:1px solid #000;border-right:1px solid #000}.fontTitolo{font-size:24pt;height:36px}.fontMedio{font-size:16pt}.fontStd{font-size:10pt}.fontPiccolo{font-size:8pt}.fontMini{font-size:7pt}.fontMicro{font-size:6pt}.labelInput{font-size:9pt;color:#555}.watermark{color:gray;font-style:italic}.autocomplete{width:400px;color:gray;background-color:#fff;font-size:8pt;padding:4px 1px 4px 1px;border-bottom:1px solid #888}.autocompleteHiglight{width:400px;color:#000;background-color:#ff0;font-size:8pt;padding:4px 1px 4px 1px;border-bottom:1px solid #888}.autocompleteElemID{width:400px;background-color:red;font-weight:bold}.autocompleteListCssClass{width:400px;font-size:8pt;background-color:#fff;padding:2px 2px 2px 2px;border:1px solid #333}.dataBlock{background-color:#fff;font-size:9pt;float:left;border-top:solid 1px gray;border-bottom:solid 1px gray;border-left:solid 1px gray;border-right:solid 1px gray;margin:0;padding:4px;vertical-align:text-top;text-align:left}.dataBlockHeader{border-top:solid 2px gray;border-bottom:solid 1px gray;border-left:solid 2px gray;border-right:solid 2px gray;background-color:#efefef;font-weight:bold;padding:2px}.dataBlockSx{float:left;text-align:left}.dataBlockDx{float:right;text-align:right}.dataBlockLabel{border-top:solid 1px #fefefe;padding-right:2px;padding-left:2px}.dataBlockValue{color:#000;font-weight:bold;padding-right:4px;padding-left:4px;margin-bottom:0}.dataBlockReset{clear:both;padding-bottom:2px;margin-bottom:2px}.dataBlockResetGray{border-bottom:solid 1px #cecece;clear:both;padding-bottom:2px;margin-bottom:2px}.dataBlockResetDark{border-bottom:solid 1px #363636;clear:both;padding-bottom:2px;margin-bottom:2px}.dataBlockBtn{background-color:#fafafa;border:solid 1px gray;padding-top:4px;padding-bottom:4px;vertical-align:text-top;margin:0;text-align:center}.blockSizeSmallest{width:175px}.blockSizeSmaller{width:200px}.blockSizeSmall{width:225px}.blockSizeMed{width:250px}.blockSizeLarge{width:275px}.blockSizeXLarge{width:300px}.blockSizeXXLarge{width:350px}.blockSizeXXXLarge{width:400px}.grView{color:#333;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;padding-bottom:1px}.ctrHeaderPager{background-color:#b8b8b8;font-weight:bold;color:#fff}.ctrHeaderPagerRight{background-color:#b8b8b8;font-weight:bold;color:#fff;text-align:right}.ctrHeaderPagerBlue{background-color:#507cd1;height:1px}.ctrHeaderPagerBlueRight{background-color:#507cd1;height:1px;text-align:right}.ctrFooter{background-color:#507cd1;font-weight:bold;color:#fff}.ctrRowStyle{vertical-align:top;background-color:#eff3fb}.valignMiddle{vertical-align:middle}.lblErrore{color:red}.cTab{text-align:center;height:30px;border:solid 1px #777}.cEmp{background-color:#fff;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#cdd5c4));background-image:-webkit-linear-gradient(#fff,#cdd5c4);background-image:-moz-linear-gradient(#fff,#cdd5c4);background-image:-ms-linear-gradient(#fff,#cdd5c4);background-image:-o-linear-gradient(#fff,#cdd5c4);background-image:linear-gradient(#fff,#cdd5c4)}.cS01{background-color:#cdd5c4;background-image:-webkit-gradient(linear,left top,left bottom,from(#cbff4e),to(#cdd5c4));background-image:-webkit-linear-gradient(#cbff4e,#cdd5c4);background-image:-moz-linear-gradient(#cbff4e,#cdd5c4);background-image:-ms-linear-gradient(#cbff4e,#cdd5c4);background-image:-o-linear-gradient(#cbff4e,#cdd5c4);background-image:linear-gradient(#cbff4e,#cdd5c4)}.cS02{background-color:#ffff73;background-image:-webkit-gradient(linear,left top,left bottom,from(#cbff4e),to(#ffff73));background-image:-webkit-linear-gradient(#cbff4e,#ffff73);background-image:-moz-linear-gradient(#cbff4e,#ffff73);background-image:-ms-linear-gradient(#cbff4e,#ffff73);background-image:-o-linear-gradient(#cbff4e,#ffff73);background-image:linear-gradient(#cbff4e,#ffff73);color:#fff}.cS03{background-color:#ffff73;background-image:-webkit-gradient(linear,left top,left bottom,from(#ffd88d),to(#ffff73));background-image:-webkit-linear-gradient(#ffd88d,#ffff73);background-image:-moz-linear-gradient(#ffd88d,#ffff73);background-image:-ms-linear-gradient(#ffd88d,#ffff73);background-image:-o-linear-gradient(#ffd88d,#ffff73);background-image:linear-gradient(#ffd88d,#ffff73);color:#fff}.cS04{background-color:#ffd88d;background-image:-webkit-gradient(linear,left top,left bottom,from(#ee8b8b),to(#ffd88d));background-image:-webkit-linear-gradient(#ee8b8b,#ffd88d);background-image:-moz-linear-gradient(#ee8b8b,#ffd88d);background-image:-ms-linear-gradient(#ee8b8b,#ffd88d);background-image:-o-linear-gradient(#ee8b8b,#ffd88d);background-image:linear-gradient(#ee8b8b,#ffd88d);color:#fff}.cOvr{background-color:#ee8b8b;background-image:-webkit-gradient(linear,left top,left bottom,from(#d52323),to(#ee8b8b));background-image:-webkit-linear-gradient(#d52323,#ee8b8b);background-image:-moz-linear-gradient(#d52323,#ee8b8b);background-image:-ms-linear-gradient(#d52323,#ee8b8b);background-image:-o-linear-gradient(#d52323,#ee8b8b);background-image:linear-gradient(#d52323,#ee8b8b)}.cBia{text-align:center;font-weight:bold}.selCel{border:dashed 2px #000;text-align:center} \ No newline at end of file diff --git a/PROJ-ETS/PROJ-ETS/Images/arancio_20.png b/PROJ-ETS/PROJ-ETS/Images/arancio_20.png deleted file mode 100644 index ca21b07..0000000 Binary files a/PROJ-ETS/PROJ-ETS/Images/arancio_20.png and /dev/null differ diff --git a/PROJ-ETS/PROJ-ETS/Images/arancio_80.png b/PROJ-ETS/PROJ-ETS/Images/arancio_80.png deleted file mode 100644 index b3c3b7a..0000000 Binary files a/PROJ-ETS/PROJ-ETS/Images/arancio_80.png and /dev/null differ diff --git a/PROJ-ETS/PROJ-ETS/Images/blu_20.png b/PROJ-ETS/PROJ-ETS/Images/blu_20.png deleted file mode 100644 index dfba303..0000000 Binary files a/PROJ-ETS/PROJ-ETS/Images/blu_20.png and /dev/null differ diff --git a/PROJ-ETS/PROJ-ETS/Images/blu_80.png b/PROJ-ETS/PROJ-ETS/Images/blu_80.png deleted file mode 100644 index cd28856..0000000 Binary files a/PROJ-ETS/PROJ-ETS/Images/blu_80.png and /dev/null differ diff --git a/PROJ-ETS/PROJ-ETS/Images/giallo_20.png b/PROJ-ETS/PROJ-ETS/Images/giallo_20.png deleted file mode 100644 index 83b69cf..0000000 Binary files a/PROJ-ETS/PROJ-ETS/Images/giallo_20.png and /dev/null differ diff --git a/PROJ-ETS/PROJ-ETS/Images/giallo_80.png b/PROJ-ETS/PROJ-ETS/Images/giallo_80.png deleted file mode 100644 index 6d3778c..0000000 Binary files a/PROJ-ETS/PROJ-ETS/Images/giallo_80.png and /dev/null differ diff --git a/PROJ-ETS/PROJ-ETS/Images/grigioChiaro_20.png b/PROJ-ETS/PROJ-ETS/Images/grigioChiaro_20.png deleted file mode 100644 index 9265fde..0000000 Binary files a/PROJ-ETS/PROJ-ETS/Images/grigioChiaro_20.png and /dev/null differ diff --git a/PROJ-ETS/PROJ-ETS/Images/grigioChiaro_80.png b/PROJ-ETS/PROJ-ETS/Images/grigioChiaro_80.png deleted file mode 100644 index 287931e..0000000 Binary files a/PROJ-ETS/PROJ-ETS/Images/grigioChiaro_80.png and /dev/null differ diff --git a/PROJ-ETS/PROJ-ETS/Images/grigio_20.png b/PROJ-ETS/PROJ-ETS/Images/grigio_20.png deleted file mode 100644 index a1ca02c..0000000 Binary files a/PROJ-ETS/PROJ-ETS/Images/grigio_20.png and /dev/null differ diff --git a/PROJ-ETS/PROJ-ETS/Images/grigio_80.png b/PROJ-ETS/PROJ-ETS/Images/grigio_80.png deleted file mode 100644 index 778fbec..0000000 Binary files a/PROJ-ETS/PROJ-ETS/Images/grigio_80.png and /dev/null differ diff --git a/PROJ-ETS/PROJ-ETS/Images/rosso_20.png b/PROJ-ETS/PROJ-ETS/Images/rosso_20.png deleted file mode 100644 index 4f6bf10..0000000 Binary files a/PROJ-ETS/PROJ-ETS/Images/rosso_20.png and /dev/null differ diff --git a/PROJ-ETS/PROJ-ETS/Images/rosso_80.png b/PROJ-ETS/PROJ-ETS/Images/rosso_80.png deleted file mode 100644 index e5de3c8..0000000 Binary files a/PROJ-ETS/PROJ-ETS/Images/rosso_80.png and /dev/null differ diff --git a/PROJ-ETS/PROJ-ETS/Images/verde_20.png b/PROJ-ETS/PROJ-ETS/Images/verde_20.png deleted file mode 100644 index 1aa0582..0000000 Binary files a/PROJ-ETS/PROJ-ETS/Images/verde_20.png and /dev/null differ diff --git a/PROJ-ETS/PROJ-ETS/Images/verde_80.png b/PROJ-ETS/PROJ-ETS/Images/verde_80.png deleted file mode 100644 index d2b9f38..0000000 Binary files a/PROJ-ETS/PROJ-ETS/Images/verde_80.png and /dev/null differ diff --git a/PROJ-ETS/PROJ-ETS/PROJ-ETS.csproj b/PROJ-ETS/PROJ-ETS/PROJ-ETS.csproj index 5e510b9..c8a4314 100644 --- a/PROJ-ETS/PROJ-ETS/PROJ-ETS.csproj +++ b/PROJ-ETS/PROJ-ETS/PROJ-ETS.csproj @@ -195,8 +195,6 @@ - - @@ -208,8 +206,6 @@ - - @@ -228,12 +224,6 @@ - - - - - - @@ -281,8 +271,6 @@ - - @@ -290,8 +278,6 @@ - - diff --git a/PROJ-ETS/PROJ-ETS/Web.config b/PROJ-ETS/PROJ-ETS/Web.config index ad75608..9b658df 100644 --- a/PROJ-ETS/PROJ-ETS/Web.config +++ b/PROJ-ETS/PROJ-ETS/Web.config @@ -6,54 +6,59 @@ -
+
-
-
-
-
+
+
+
+
- - - + + + - - - - - - - - + + + + + + + + - - + + - + - + - + - + - - + + + + + + + - - - - - + + + + + - + - + - + - + - + - + - + - + - + - - - + + + - - + + - + - + - - - + + + @@ -126,13 +131,13 @@ See http://code.google.com/p/elmah/wiki/SecuringErrorLogPages for more information on remote access and securing ELMAH. --> - + - + - - + + - - + + - - + + diff --git a/PROJ-ETS/PROJ-ETS/WebUserControls/mod_weekPlan.ascx.cs b/PROJ-ETS/PROJ-ETS/WebUserControls/mod_weekPlan.ascx.cs index a924b08..4bab390 100644 --- a/PROJ-ETS/PROJ-ETS/WebUserControls/mod_weekPlan.ascx.cs +++ b/PROJ-ETS/PROJ-ETS/WebUserControls/mod_weekPlan.ascx.cs @@ -61,7 +61,6 @@ namespace PROJ_ETS.WebUserControls public void doUpdate() { caricaDatiBlocco(); - aggiornaCelleOccupate(); creaLabelTooltipCelle(); disegnaTabella(); } @@ -110,6 +109,7 @@ namespace PROJ_ETS.WebUserControls // recupero il numero di TUTTE le celle Ds_ProjEts.BazaarRisorseRow rigaBaz; Ds_ProjEts.DipendentiRow rigaDip; + string css = ""; try { // carico TUTTE le celle del bazaar... @@ -141,7 +141,31 @@ namespace PROJ_ETS.WebUserControls // carico valori x la singola cella rigaBaz = (Ds_ProjEts.BazaarRisorseRow)tabBaz.Select(string.Format("idxDipendente={0} AND idxFase={1}", tabD2ATR[pos_x].idxDipendente, tabBazSingle[pos_y].idxFase))[0]; rigaDip = (Ds_ProjEts.DipendentiRow)tabDip.Select(string.Format("idxDipendente={0}", tabD2ATR[pos_x].idxDipendente))[0]; - TabellaRisorse[pos_x, pos_y] = new ETS_Data.Type.BazaarRes(rigaBaz.SchemaWeek, "LMMGV", "cTab cLib", rigaBaz.idxDipendente, string.Format("{0} {1}", rigaDip.Nome, rigaDip.Cognome), rigaDip.SIGLA, rigaBaz.idxFase, rigaBaz.SchemaWeek, rigaBaz.OreTot); + if (rigaBaz.OreTot == 0) + { + css = "cTab cEmp"; + } + else if (rigaBaz.OreTot < utils.obj.confReadInt("soglia1")) + { + css = "cTab cS01"; + } + else if (rigaBaz.OreTot < utils.obj.confReadInt("soglia2")) + { + css = "cTab cS02"; + } + else if (rigaBaz.OreTot < utils.obj.confReadInt("soglia3")) + { + css = "cTab cS03"; + } + else if (rigaBaz.OreTot < utils.obj.confReadInt("soglia4")) + { + css = "cTab cS04"; + } + else + { + css = "cTab cOvr"; + } + TabellaRisorse[pos_x, pos_y] = new ETS_Data.Type.BazaarRes(rigaBaz.SchemaWeek, "LMMGV", css, rigaBaz.idxDipendente, string.Format("{0} {1}", rigaDip.Nome, rigaDip.Cognome), rigaDip.SIGLA, rigaBaz.idxFase, rigaBaz.SchemaWeek, rigaBaz.OreTot); // aggiorno totali righe/colonne (comemsse/dip) oreTotDip[pos_x] += rigaBaz.OreTot; oreTotComm[pos_y] += rigaBaz.OreTot; @@ -150,65 +174,6 @@ namespace PROJ_ETS.WebUserControls } } /// - /// Aggiorna la mappa con le celle occupate - /// - private void aggiornaCelleOccupate() - { -#if false - // carico il magazzino logico da visualizzare (oppure tutti...) - CodMagLogico = memLayer.ML.IntSessionObj("CodMagLogico_sel"); - // carico altri dati da sessione - string ParticolareSel = memLayer.ML.StringSessionObj("Particolare_sel"); - string DescStatoSel = memLayer.ML.StringSessionObj("DescStato_sel"); - string EsponenteSel = memLayer.ML.StringSessionObj("Esponente_sel"); - // ottengo elenco dettaglio UDC che occupano il blocco... - DS_magazzino.v_UdcDetailDataTable tabUdc = MagClass.magazzino.taDettUDC.getUdcDetailByIdxBlocco(IdxBlocco); - // SE è filtrato x mag logico utilizza altro metodo... - if (CodMagLogico != -1) - { - tabUdc = MagClass.magazzino.taDettUDC.getByIdxBloccoCodMagLog(IdxBlocco, CodMagLogico); - } - // controllo se sia un magazzino mono o multicella... - bool multicella = MagClass.magazzino.taCelle.getByIdxBlocco(IdxBlocco).Rows.Count > 1; - // SE ci sono righe aggiorno il blocco... - if (tabUdc.Rows.Count > 0) - { - // ...sovrascrivo valori di default - foreach (DS_magazzino.v_UdcDetailRow riga in tabUdc) - { - // salvo che ho 1 UDC in + nella cella... - TabellaRisorse[riga.X - 1, riga.Y - 1].NumUdc++; - // controllo se nella cella ci sia il particolare selezionato... - if (ParticolareSel == riga.Particolare && multicella) - { - // controllo se sia anche lo specifico esponente/stato - if (DescStatoSel == riga.DescStato && EsponenteSel == riga.Esponente) - { - TabellaRisorse[riga.X - 1, riga.Y - 1].Css = "cTab cSDet"; - } - else - { - TabellaRisorse[riga.X - 1, riga.Y - 1].Css = "cTab cSAll"; - } - } - else - { - // se NON C'E' alcun particolare selezionato ... controllo il blocco! - if (TabellaRisorse[riga.X - 1, riga.Y - 1].Piena) - { - TabellaRisorse[riga.X - 1, riga.Y - 1].Css = "cTab cPie"; - } - else - { - TabellaRisorse[riga.X - 1, riga.Y - 1].Css = "cTab cOcc"; - } - } - TabellaRisorse[riga.X - 1, riga.Y - 1].ToolTip += string.Format("{2} - {0} {1:#}pz{3}", riga.UDC, riga.Qta, riga.Particolare, Environment.NewLine); - } - } -#endif - } - /// /// Aggiorna la mappa celle x label e tooltip /// private void creaLabelTooltipCelle() @@ -308,7 +273,7 @@ namespace PROJ_ETS.WebUserControls else { rigaComm = (DS_utilsProjEts.v_selCommesseRow)tabComm.Select(string.Format("value = {0}", tabBazSingle[pos_y].idxFase))[0]; - cell.Text = rigaComm.label.Substring(0,9); + cell.Text = rigaComm.label.Substring(0, 9); cell.ToolTip = rigaComm.label; } riga.Cells.Add(cell); diff --git a/PROJ-ETS/PROJ-ETS/bin/ETS_Data.dll b/PROJ-ETS/PROJ-ETS/bin/ETS_Data.dll index c3e64af..9a283e7 100644 Binary files a/PROJ-ETS/PROJ-ETS/bin/ETS_Data.dll and b/PROJ-ETS/PROJ-ETS/bin/ETS_Data.dll differ diff --git a/PROJ-ETS/PROJ-ETS/bin/PROJ-ETS.dll b/PROJ-ETS/PROJ-ETS/bin/PROJ-ETS.dll index 141f76f..8c5e4b8 100644 Binary files a/PROJ-ETS/PROJ-ETS/bin/PROJ-ETS.dll and b/PROJ-ETS/PROJ-ETS/bin/PROJ-ETS.dll differ