Codedesign CSS-Abschnitt
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
@@ -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 */
|
||||
}
|
||||
<style>
|
||||
|
||||
iframe {overflow:hidden}
|
||||
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 */
|
||||
}
|
||||
iframe {
|
||||
overflow:hidden
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
@@ -67,15 +65,12 @@ iframe {overflow:hidden}
|
||||
}
|
||||
return children;
|
||||
}
|
||||
|
||||
$('.parent').on('click', function () {
|
||||
|
||||
var children = getChildren($(this));
|
||||
$.each(children, function () {
|
||||
$(this).toggle();
|
||||
})
|
||||
});
|
||||
|
||||
})
|
||||
</script>
|
||||
</asp:Content>
|
||||
@@ -105,9 +100,8 @@ iframe {overflow:hidden}
|
||||
<asp:Table ID="tbl_sidemenue" ClientIDMode="Static" runat="server" CssClass="table table-striped" style="width:310px;margin-left:-32px;cursor:default">
|
||||
<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>
|
||||
</div>
|
||||
</div></div>
|
||||
</div>
|
||||
</div>
|
||||
</div></div></div>
|
||||
<div class="col-9">
|
||||
<div class="col-12">
|
||||
<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>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div></div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Mobil -->
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user