Zbiór zmian 908 dla trunk/eCard
- Data:
- 2009-11-30 10:35:46 (16 years ago)
- Lokalizacja:
- trunk/eCard/eCardMVC/Platnosci
- Pliki:
-
- 8 zmodyfikowane
-
Content/Site.css (zmodyfikowane) (9 diffs)
-
Content/admoto.css (zmodyfikowane) (2 diffs)
-
Content/truck.css (zmodyfikowane) (2 diffs)
-
Controllers/PlatnoscController.cs (zmodyfikowane) (1 diff)
-
Helpers/helper.cs (zmodyfikowane) (1 diff)
-
Platnosci.Web.csproj (zmodyfikowane) (5 diffs)
-
Views/Account/LogOn.aspx (zmodyfikowane) (5 diffs)
-
Views/Shared/Site.Master (zmodyfikowane) (2 diffs)
Legenda:
- Bez zmian
- Dodane
- Usunięte
-
trunk/eCard/eCardMVC/Platnosci/Content/Site.css
r898 r908 13 13 line-height: 1.6em; 14 14 } 15 .zalogujTitle 16 { 17 font-weight: bold; 18 font-size: 15px; 19 } 15 20 .SzczegolyZlecenia 16 21 { … … 21 26 font-weight: bold; 22 27 } 23 .black 24 { 25 padding-right: 10px; 26 } 28 27 29 .wtab 28 30 { … … 30 32 margin-left: auto; 31 33 margin-right: auto; 34 } 35 .tlo 36 { 37 padding: 10px 10px 0 10px; 38 32 39 } 33 40 #header … … 40 47 #main 41 48 { 42 padding: 0px 30px 15px 30px;49 padding: 15px 30px 15px 30px; 43 50 background-color: #fff; 44 51 margin-bottom: 30px; … … 161 168 #flagi 162 169 { 163 padding-top: 4px;164 padding-right: 10px;165 170 text-align: right; 166 171 } … … 180 185 .label_w 181 186 { 182 width: 120px; 183 font-weight: bold; 187 width: 150px; 188 font-weight: bold; 189 padding-top: 10px; 184 190 } 185 191 .input_w … … 193 199 .tablelogin 194 200 { 195 width: 45%; 196 border: solid 1px #a9a9a9; 197 padding-left: 20px; 198 padding-top: 20px; 199 padding-bottom: 20px; 201 border: solid 1px #a9a9a9; 202 } 203 .TableRightMargin 204 { 205 width: 15px; 206 } 207 .przestrzen 208 { 209 height: 15px; 210 font-size: 0px; 200 211 } 201 212 .col1 … … 239 250 #odstep 240 251 { 241 padding-bottom: 5pt;252 height: 20px; 242 253 } 243 254 .but … … 274 285 font-weight: bold; 275 286 } 276 277 287 .LogOfflink a 288 { 289 text-decoration: underline; 290 color: Red; 291 } 292 .title 293 { 294 vertical-align: bottom; 295 padding-left: 15px; 296 font-size: 18px; 297 font-weight: bold; 298 } 299 300 -
trunk/eCard/eCardMVC/Platnosci/Content/admoto.css
r898 r908 7 7 { 8 8 border-bottom: solid 3px #ff8c00; 9 border-top: solid 5px #ff8c00; 9 10 } 10 .logo 11 .logo span 11 12 { 12 vertical-align: bottom;13 padding-bottom: 0px;14 margin-bottom: 0px;15 border-bottom: solid 5px #ff8c00;16 13 font-weight: bold; 17 color: #a9a9a9; 18 line-height: 2em;14 color: #a9a9a9; 15 font-size: 17px !important; 19 16 font-family: Arial, Helvetica, sans-serif; 20 font-size: 17px !important; /*bylo 18px */17 vertical-align: bottom; 21 18 } 22 19 .logo img 23 20 { 24 21 position:relative; 25 top: 17px; 26 } 27 .kontrolkaLogowania 28 { 29 padding-right: 10px; 30 border-bottom: solid 5px #ff8c00; 22 top: 10px; 31 23 } 32 24 #logindisplay a:link … … 50 42 { 51 43 float: right; 52 vertical-align: bottom;44 vertical-align: bottom; 53 45 } 54 46 .tlo -
trunk/eCard/eCardMVC/Platnosci/Content/truck.css
r886 r908 1 2 #flagi a:link,a:active, a:visited 1 #flagi a:link, a:active, a:visited 3 2 { 4 3 text-decoration: none; 5 color: #1B1D21; 4 color: #1B1D21; 6 5 } 7 6 .pagecontent … … 16 15 #logindisplay 17 16 { 18 font-size:1.1em; 19 display:block; 20 text-align:right; 21 margin:10px; 22 color:White; 17 font-size: 1.1em; 18 display: block; 19 text-align: right; 20 color: White; 23 21 } 24 22 #logindisplay a:link -
trunk/eCard/eCardMVC/Platnosci/Controllers/PlatnoscController.cs
r905 r908 159 159 _repConfirm.Insert(potwierdzenie); 160 160 UpdateStatus(ORDERNUMBER, CURRENTSTATE); 161 return new EmptyResult(); 161 var content = new ContentResult(); 162 content.Content = "OK"; 163 return content; 162 164 } 163 165 private Payer InitPayer(string FirstName, string LastName, int Id_faktury) -
trunk/eCard/eCardMVC/Platnosci/Helpers/helper.cs
r886 r908 133 133 if (ConfigurationManager.AppSettings["Css"] == "admoto") 134 134 { 135 logotag += HttpContext.GetGlobalResourceObject("tlumaczenia", "tytul").ToString();135 logotag += "<span>"+HttpContext.GetGlobalResourceObject("tlumaczenia", "tytul").ToString()+"</span>"; 136 136 } 137 137 -
trunk/eCard/eCardMVC/Platnosci/Platnosci.Web.csproj
r903 r908 136 136 </ItemGroup> 137 137 <ItemGroup> 138 <Content Include="Views\Shared\Glowna.Master" />139 </ItemGroup>140 <ItemGroup>141 138 <Content Include="Content\admoto.css" /> 142 139 <Content Include="Content\truck.css" /> … … 160 157 <Generator>GlobalResourceProxyGenerator</Generator> 161 158 <LastGenOutput>tlumaczenia.pl.designer.cs</LastGenOutput> 159 <SubType>Designer</SubType> 162 160 </Content> 163 161 </ItemGroup> … … 166 164 <Generator>GlobalResourceProxyGenerator</Generator> 167 165 <LastGenOutput>tlumaczenia.designer.cs</LastGenOutput> 166 <SubType>Designer</SubType> 168 167 </Content> 169 168 </ItemGroup> … … 178 177 <Generator>GlobalResourceProxyGenerator</Generator> 179 178 <LastGenOutput>tlumaczenia.fr.designer.cs</LastGenOutput> 179 <SubType>Designer</SubType> 180 180 </Content> 181 181 </ItemGroup> … … 184 184 <Generator>GlobalResourceProxyGenerator</Generator> 185 185 <LastGenOutput>tlumaczenia.it.designer.cs</LastGenOutput> 186 <SubType>Designer</SubType> 186 187 </Content> 187 188 <Content Include="Views\Platnosc\Fail.aspx" /> -
trunk/eCard/eCardMVC/Platnosci/Views/Account/LogOn.aspx
r882 r908 12 12 <asp:Content ID="loginContent" ContentPlaceHolderID="MainContent" runat="server"> 13 13 14 < h2>14 <div class="zalogujTitle"> 15 15 <%=HttpContext.GetGlobalResourceObject("tlumaczenia","LoginInfo").ToString()%> 16 </h2> 16 </div> 17 <div id="odstep"></div> 17 18 18 19 <%string info = HttpContext.GetGlobalResourceObject("tlumaczenia", "validateInfo").ToString(); %> … … 20 21 21 22 <% using (Html.BeginForm()) { %> 22 23 <table class="tablelogin"> 23 <table class="tablelogin" border="0" cellpadding="0" cellspacing="0"> 24 <tr><td rowspan="9" class="TableRightMargin"></td></tr> 25 <tr><td class="przestrzen"> </td></tr> 24 26 <tr> 25 <td >27 <td width="430px"> 26 28 <asp:Label ID="info" Text="<%$Resources:tlumaczenia,info %>" runat="server"></asp:Label> 27 29 <br /><br /> … … 31 33 <td class="label_w"><asp:Label ID="nip" Text="<%$Resources:tlumaczenia,Nip %>" runat="server"></asp:Label></td> 32 34 </tr> 33 <tr> 35 <tr> 34 36 <td> 35 37 <%= Html.TextBox("nip")%> … … 40 42 <td class="label_w"><asp:Label ID="numerfaktury" Text="<%$Resources:tlumaczenia,NumerFaktury %>" runat="server"></asp:Label></td> 41 43 </tr> 42 <tr> 44 <tr> 43 45 <td> 44 46 <%= Html.TextBox("numer_faktury")%> … … 51 53 <input id="loguj" name="id" type="submit" value="<%=HttpContext.GetGlobalResourceObject("tlumaczenia","Zaloguj").ToString()%>"/> 52 54 </td> 53 </tr> 55 </tr> 56 <tr><td class="przestrzen"> </td></tr> 54 57 </table> 55 58 <% } %> -
trunk/eCard/eCardMVC/Platnosci/Views/Shared/Site.Master
r888 r908 14 14 <td class="tlo"> 15 15 <table class= "wtab" cellpadding="0" cellspacing="0" border="0"> 16 <tr class="padding">16 <tr> 17 17 <%=Html.Logo()%> 18 18 <%string querystring = Request.QueryString.ToString();%> … … 25 25 </td> 26 26 </tr> 27 <tr class="padding">27 <tr> 28 28 <%if (ConfigurationManager.AppSettings["Css"] != "admoto"){%> 29 <td> 30 <div id="title"> 31 <h1><asp:Label ID="napis" runat="server" Text="<%$Resources:tlumaczenia,tytul%>"></asp:Label></h1> 32 </div> 29 <td class="title"> 30 <asp:Label ID="napis" runat="server" Text="<%$Resources:tlumaczenia,tytul%>"></asp:Label> 33 31 </td> 34 32 <%}%> 35 <td class="kontrolkaLogowania" 33 <td class="kontrolkaLogowania"> 36 34 <div id="logindisplay"><br /><br /><% Html.RenderPartial("LogOnUserControl"); %></div> 37 35 </td>
