From b9e943862fb3a03255ef4874a9d2fff5c0681aea Mon Sep 17 00:00:00 2001 From: ja Date: Wed, 9 Feb 2022 11:02:56 +0100 Subject: [PATCH] Codedesign CSS-Abschnitt --- Customers/Customers.master | 2 +- Customers/LKWs.aspx | 35 ++++++++++++++--------------------- login/Logout.aspx.vb | 3 --- 3 files changed, 15 insertions(+), 25 deletions(-) diff --git a/Customers/Customers.master b/Customers/Customers.master index 1d52928..2337ac5 100644 --- a/Customers/Customers.master +++ b/Customers/Customers.master @@ -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" %> diff --git a/Customers/LKWs.aspx b/Customers/LKWs.aspx index e1bc674..1c9b468 100644 --- a/Customers/LKWs.aspx +++ b/Customers/LKWs.aspx @@ -40,20 +40,18 @@ border: 1px solid grey; } } - input::-webkit-outer-spin-button, -input::-webkit-inner-spin-button { - /* display: none; <- Crashes Chrome on hover */ - -webkit-appearance: none; - margin: 0; /* <-- Apparently some margin are still there even though it's hidden */ -} - -input[type=number] { - -moz-appearance:textfield; /* Firefox */ -} - @@ -105,9 +100,8 @@ iframe {overflow:hidden} KFZ-KennzeichenNat.VerkKZ-AnVermerk - - - + +
@@ -129,8 +123,7 @@ iframe {overflow:hidden} Bitte Daten auswählen durch klicken der Buttons -
-
+ diff --git a/login/Logout.aspx.vb b/login/Logout.aspx.vb index cc6e5a1..4057119 100644 --- a/login/Logout.aspx.vb +++ b/login/Logout.aspx.vb @@ -4,7 +4,6 @@ Imports System.Security.Cryptography Partial Class login_Logout Inherits System.Web.UI.Page - Function Page_Load() As Threading.Tasks.Task Handles Me.Load FormsAuthentication.SignOut() Session.Clear() @@ -13,7 +12,6 @@ Partial Class login_Logout 'Dim cookie1 As HttpCookie = New HttpCookie(FormsAuthentication.FormsCookieName, "") 'cookie1.Expires = DateTime.Now.AddYears(-1) 'Response.Cookies.Add(cookie1) - 'clear session cookie 'Dim sessionStateSection As New SessionStateSection 'SessionStateSection = WebConfigurationManager.GetSection("system.web/sessionState") @@ -23,7 +21,6 @@ Partial Class login_Logout Response.BufferOutput = True End Function - Protected Sub btn_backtostart_Click(sender As Object, e As EventArgs) Handles btn_backtostart.ServerClick Response.Redirect("../login/login_FLEX.aspx") End Sub