From 2e9abbb56ab669b76b007895567e1107607583d3 Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Thu, 15 Dec 2016 15:55:47 +0100 Subject: [PATCH] fix resizing + tolte pagine inutili --- GPW_Commesse/GPW_Commesse.csproj | 16 ---------------- .../WebUserControls/mod_commUtLog.ascx.cs | 8 ++++---- 2 files changed, 4 insertions(+), 20 deletions(-) diff --git a/GPW_Commesse/GPW_Commesse.csproj b/GPW_Commesse/GPW_Commesse.csproj index 14ca8a7..f8ebf40 100644 --- a/GPW_Commesse/GPW_Commesse.csproj +++ b/GPW_Commesse/GPW_Commesse.csproj @@ -117,10 +117,8 @@ - - bootstrap-theme.css @@ -340,13 +338,6 @@ GPW.cs - - About.aspx - ASPXCodeBehind - - - About.aspx - commesseUtente.aspx @@ -355,13 +346,6 @@ commesseUtente.aspx - - Contact.aspx - ASPXCodeBehind - - - Contact.aspx - Default.aspx ASPXCodeBehind diff --git a/GPW_Commesse/WebUserControls/mod_commUtLog.ascx.cs b/GPW_Commesse/WebUserControls/mod_commUtLog.ascx.cs index 3a4247d..163d5a8 100644 --- a/GPW_Commesse/WebUserControls/mod_commUtLog.ascx.cs +++ b/GPW_Commesse/WebUserControls/mod_commUtLog.ascx.cs @@ -256,15 +256,15 @@ namespace GPW_Commesse.WebUserControls { case modoCommesse.editTimb: timbr = true; - divCn.Attributes.Add("class", "col-xs-9"); - divSx.Attributes.Add("class", "col-xs-3"); + divCn.Attributes.Add("class", "col-sm-7 col-md-8 col-lg-9"); + divSx.Attributes.Add("class", "col-sm-5 col-md-4 col-lg-3"); divDx.Visible = false; divSx.Visible = true; break; case modoCommesse.editRegAtt: commesse = true; - divDx.Attributes.Add("class", "col-xs-4"); - divCn.Attributes.Add("class", "col-xs-8"); + divCn.Attributes.Add("class", "col-sm-6 col-md-7 col-lg-8"); + divDx.Attributes.Add("class", "col-sm-6 col-md-5 col-lg-4"); divDx.Visible = true; divSx.Visible = false; break;