fix resizing + tolte pagine inutili

This commit is contained in:
Samuele E. Locatelli
2016-12-15 15:55:47 +01:00
parent 77bbd5cf4a
commit 2e9abbb56a
2 changed files with 4 additions and 20 deletions
-16
View File
@@ -117,10 +117,8 @@
<Folder Include="App_Data\" />
</ItemGroup>
<ItemGroup>
<Content Include="About.aspx" />
<Content Include="App_Readme\Elmah.txt" />
<Content Include="commesseUtente.aspx" />
<Content Include="Contact.aspx" />
<Content Include="Content\bootstrap-theme.css" />
<Content Include="Content\bootstrap-theme.min.css">
<DependentUpon>bootstrap-theme.css</DependentUpon>
@@ -340,13 +338,6 @@
<Link>GPW.cs</Link>
</Compile>
<Compile Include="App_Start\BundleConfig.cs" />
<Compile Include="About.aspx.cs">
<DependentUpon>About.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="About.aspx.designer.cs">
<DependentUpon>About.aspx</DependentUpon>
</Compile>
<Compile Include="App_Start\RouteConfig.cs" />
<Compile Include="commesseUtente.aspx.cs">
<DependentUpon>commesseUtente.aspx</DependentUpon>
@@ -355,13 +346,6 @@
<Compile Include="commesseUtente.aspx.designer.cs">
<DependentUpon>commesseUtente.aspx</DependentUpon>
</Compile>
<Compile Include="Contact.aspx.cs">
<DependentUpon>Contact.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="Contact.aspx.designer.cs">
<DependentUpon>Contact.aspx</DependentUpon>
</Compile>
<Compile Include="Default.aspx.cs">
<DependentUpon>Default.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
@@ -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;