Codedesign CSS-Abschnitt

This commit is contained in:
ja
2022-02-09 11:02:56 +01:00
parent 3b5de5829f
commit b9e943862f
3 changed files with 15 additions and 25 deletions

View File

@@ -1,4 +1,4 @@
<%@ Master Language="VB" CodeFile="Customers.master.vb" Inherits="Customers_Customers" EnableSessionState="True" %> <%@ Master Language="VB" CodeFile="Customers.master.vb" Inherits="Customers_Customers" %>
<!DOCTYPE html> <!DOCTYPE html>

View File

@@ -40,8 +40,7 @@
border: 1px solid grey; border: 1px solid grey;
} }
} }
input::-webkit-outer-spin-button, input::-webkit-outer-spin-button,input::-webkit-inner-spin-button {
input::-webkit-inner-spin-button {
/* display: none; <- Crashes Chrome on hover */ /* display: none; <- Crashes Chrome on hover */
-webkit-appearance: none; -webkit-appearance: none;
margin: 0; /* <-- Apparently some margin are still there even though it's hidden */ margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
@@ -50,10 +49,9 @@ input::-webkit-inner-spin-button {
input[type=number] { input[type=number] {
-moz-appearance:textfield; /* Firefox */ -moz-appearance:textfield; /* Firefox */
} }
<style> iframe {
overflow:hidden
iframe {overflow:hidden} }
</style> </style>
<script> <script>
@@ -67,15 +65,12 @@ iframe {overflow:hidden}
} }
return children; return children;
} }
$('.parent').on('click', function () { $('.parent').on('click', function () {
var children = getChildren($(this)); var children = getChildren($(this));
$.each(children, function () { $.each(children, function () {
$(this).toggle(); $(this).toggle();
}) })
}); });
}) })
</script> </script>
</asp:Content> </asp:Content>
@@ -106,8 +101,7 @@ iframe {overflow:hidden}
<asp:TableHeaderRow style="background-color:#043381;color:#fff;font-size:0.86em"><asp:TableHeaderCell ID="tbhc_KFZKennz">KFZ-Kennzeichen</asp:TableHeaderCell><asp:TableHeaderCell ID="tbhc_Nat">Nat.</asp:TableHeaderCell><asp:TableHeaderCell ID="tblhc_Verk">Verk</asp:TableHeaderCell><asp:TableHeaderCell ID="tblhc_Kz">KZ-An</asp:TableHeaderCell><asp:TableHeaderCell ID="tblhc_Verm">Vermerk</asp:TableHeaderCell></asp:TableHeaderRow> <asp:TableHeaderRow style="background-color:#043381;color:#fff;font-size:0.86em"><asp:TableHeaderCell ID="tbhc_KFZKennz">KFZ-Kennzeichen</asp:TableHeaderCell><asp:TableHeaderCell ID="tbhc_Nat">Nat.</asp:TableHeaderCell><asp:TableHeaderCell ID="tblhc_Verk">Verk</asp:TableHeaderCell><asp:TableHeaderCell ID="tblhc_Kz">KZ-An</asp:TableHeaderCell><asp:TableHeaderCell ID="tblhc_Verm">Vermerk</asp:TableHeaderCell></asp:TableHeaderRow>
</asp:Table> </asp:Table>
</div> </div>
</div></div> </div></div></div>
</div>
<div class="col-9"> <div class="col-9">
<div class="col-12"> <div class="col-12">
<asp:Image runat="server" ClientIDMode="AutoID" ID="Img_Text1" ImageUrl="~/images/Icons/Aviso.png" style="width:96px;height:96px" /> <asp:Image runat="server" ClientIDMode="AutoID" ID="Img_Text1" ImageUrl="~/images/Icons/Aviso.png" style="width:96px;height:96px" />
@@ -129,8 +123,7 @@ iframe {overflow:hidden}
<td style="background-color: lightgray">Bitte Daten auswählen durch klicken der Buttons</td> <td style="background-color: lightgray">Bitte Daten auswählen durch klicken der Buttons</td>
</tr> </tr>
</table> </table>
</div> </div></div>
</div>
</div> </div>
</div> </div>
<!-- Mobil --> <!-- Mobil -->

View File

@@ -4,7 +4,6 @@ Imports System.Security.Cryptography
Partial Class login_Logout Partial Class login_Logout
Inherits System.Web.UI.Page Inherits System.Web.UI.Page
Function Page_Load() As Threading.Tasks.Task Handles Me.Load Function Page_Load() As Threading.Tasks.Task Handles Me.Load
FormsAuthentication.SignOut() FormsAuthentication.SignOut()
Session.Clear() Session.Clear()
@@ -13,7 +12,6 @@ Partial Class login_Logout
'Dim cookie1 As HttpCookie = New HttpCookie(FormsAuthentication.FormsCookieName, "") 'Dim cookie1 As HttpCookie = New HttpCookie(FormsAuthentication.FormsCookieName, "")
'cookie1.Expires = DateTime.Now.AddYears(-1) 'cookie1.Expires = DateTime.Now.AddYears(-1)
'Response.Cookies.Add(cookie1) 'Response.Cookies.Add(cookie1)
'clear session cookie 'clear session cookie
'Dim sessionStateSection As New SessionStateSection 'Dim sessionStateSection As New SessionStateSection
'SessionStateSection = WebConfigurationManager.GetSection("system.web/sessionState") 'SessionStateSection = WebConfigurationManager.GetSection("system.web/sessionState")
@@ -23,7 +21,6 @@ Partial Class login_Logout
Response.BufferOutput = True Response.BufferOutput = True
End Function End Function
Protected Sub btn_backtostart_Click(sender As Object, e As EventArgs) Handles btn_backtostart.ServerClick Protected Sub btn_backtostart_Click(sender As Object, e As EventArgs) Handles btn_backtostart.ServerClick
Response.Redirect("../login/login_FLEX.aspx") Response.Redirect("../login/login_FLEX.aspx")
End Sub End Sub