From 1a9589f894f24fbe763ef67da0282e3861adf307 Mon Sep 17 00:00:00 2001 From: ulrich Date: Fri, 15 Jan 2021 20:35:47 +0000 Subject: [PATCH] Text bearbeiten und speichern, Dialoge speichern und speichern unter sowie Funktionen Speichern und Speichern unter, Dialog neuer Ordner und Funktion Neuen Ordner speichern --- web/proto/stile.css | 62 ++++++++++++++++++++++++++++--- 1 files changed, 56 insertions(+), 6 deletions(-) diff --git a/web/proto/stile.css b/web/proto/stile.css index c487f58..aedae23 100644 --- a/web/proto/stile.css +++ b/web/proto/stile.css @@ -1,8 +1,58 @@ -html, body { - height: 100%; -} -.file-view { - overflow: scroll; -} \ No newline at end of file + +/* Stile Listenansicht */ + +html { + margin: 0; + padding: 0; + height: 100%; /* Anmerkung 2 */ +} +body { + margin: 0; + padding: 0; + height: 100%; /* Anmerkung 2 */ + min-height: 0; /* Anmerkung 1 */ + display: flex; + flex-flow: column; +} +.inhalt { + display: flex; + flex-flow: row; + height: 100%; /* Anmerkung 2 */ + min-height: 0; /* Anmerkung 1 */ +} +.nord { + +} +.sued { + background-color: lightgray; +} +.west { + flex-grow: 0; + flex-shrink: 0; + flex-basis: 10em; +} +.ost { + flex-grow: 0; + flex-shrink: 0; + flex-basis: 10em; + background-color: antiquewhite; +} +.zentrum { + width: 100%; + height: 100%; + display: flex; + flex-flow: column; +} +.zentrum-bc { +} +.zentrum-liste { + width: 100%; + height: 100%; + overflow: auto; + -webkit-overflow-scrolling: touch; +} +.datei-figure { + width: 6em; +} -- Gitblit v1.9.3