From e394579029084010925e536150122f286dce3b5b Mon Sep 17 00:00:00 2001
From: ulrich <undisclosed>
Date: Thu, 12 Dec 2019 06:45:19 +0000
Subject: [PATCH] in Arbeit: Verwendung von jQuery entfernen
---
app.css | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--
1 files changed, 55 insertions(+), 2 deletions(-)
diff --git a/app.css b/app.css
index aab1ed3..342caad 100644
--- a/app.css
+++ b/app.css
@@ -16,15 +16,19 @@
height: 100%; /* Anmerkung 2 */
min-height: 0; /* Anmerkung 1 */
background-color: #ededed;
+ overflow: hidden;
}
.nord {
background-color: black;
display: flex;
flex-flow: row;
- height: 2.5em;
+ height: 2em;
align-items: center;
}
.sued {
+ height: 1.5em;
+ overflow: hidden;
+ transition: all 0.3s ease-in;
background-color: lightgray;
}
.west {
@@ -40,13 +44,26 @@
flex-grow: 0;
flex-shrink: 0;
flex-basis: 6em;
+ transition: all 0.3s ease-in;
background-color: antiquewhite;
+ overflow: hidden;
}
+.zentrum-behaelter {
+ display: flex;
+ flex-flow: column;
+ /* background-color: #eaeaea; */
+ width: 100%;
+}
+
.zentrum {
width: 100%;
height: 100%;
- overflow: auto;
+ overflow-x: hidden;
+ overflow-y: auto;
-webkit-overflow-scrolling: touch;
+}
+
+.zentraler-inhalt {
padding: 0.5em;
}
@@ -62,3 +79,39 @@
margin-left: 0.6em;
color: white;
}
+
+.pointer-cursor {
+ cursor: pointer;
+}
+
+.dialog {
+ position: relative;
+}
+
+.dlg-behaelter {
+ line-height: 1.6;
+ padding: 0.4em;
+}
+
+.dlg-info {
+ background-color: #dcf2fb; // blau
+ padding: 0.4em;
+}
+
+/*
+ Close Button
+
+ <div>
+ <span class="close-btn">✖</span>
+ </div>
+*/
+
+.close-btn {
+ position: absolute;
+ top: 0px;
+ right: 0.4em;
+ margin: 0;
+ padding: 0;
+ font-size: 1.3em;
+ color: #b8b8b8;
+}
--
Gitblit v1.9.3