From a1b6691e14dc551ec6ff9007f5d4f8f5f8a90b43 Mon Sep 17 00:00:00 2001
From: ulrich
Date: Sat, 10 Apr 2021 18:03:22 +0000
Subject: [PATCH] Log-Nachricht fuer Antworten des AbstractHandlers hinzugefuegt 

---
 www/ui/app.css |   77 ++++++++++++++++++++++++++++++++++----
 1 files changed, 68 insertions(+), 9 deletions(-)

diff --git a/www/ui/app.css b/www/ui/app.css
index 3587412..010d925 100644
--- a/www/ui/app.css
+++ b/www/ui/app.css
@@ -86,6 +86,15 @@
   cursor: pointer;
 }
 
+.top-band {
+  display: flex;
+  flex-flow: row;
+}
+
+.bereich-name {
+  padding-left: 0.4rem;
+}
+
 .dialog {
   position: relative;
   /* height: 0.1em; */
@@ -150,15 +159,17 @@
 }
 
 .entity-element:hover {
-  background-color: background;
+  background-color: #ececec;
 }
 
 .entity-liste {
   list-style-type: none;
+  padding: 0;
+  margin: 0;
 }
 
 .entity-eintrag {
-  margin-top: 0.8rem;
+  margin-top: 0.3rem;
   margin-left: 0;
   margin-right: 0;
   margin-bottom: 0;
@@ -169,9 +180,43 @@
   background-color: background;
 }
 
+.entity-typ-folder:before {
+  font-family: "pikto";
+  content: '\f114';
+  padding-right: 0.3rem;
+}
+
+.entity-typ-audio:before {
+  font-family: "pikto";
+  content: '\e817'; /* icon-music */
+  padding-right: 0.3rem;
+}
+
+.entity-typ-video:before {
+  font-family: "pikto";
+  content: '\e816'; /* icon-video */
+  padding-right: 0.3rem;
+}
+
+.entity-typ-file:before {
+  font-family: "pikto";
+  content: '\e805';  /* icon-doc */
+  padding-right: 0.3rem;
+}
+
+.entity-typ-katalog:before {
+  font-family: "pikto";
+  content: '\f1c0';  /* icon-database */
+  padding-right: 0.3rem;
+}
+
 .form-button-footer {
   display: flex;
   flex-flow: row;
+}
+
+.selected {
+  background-color: #ececec;
 }
 
 .dlg-btn {
@@ -194,13 +239,13 @@
   margin-top: 0.2rem;
 }
 
-.ctrl-btn {
-  width: 4rem;
+.ctrl-btn, .ctrl-btn:focus {
+  width: 2rem;
   font-size: medium;
   display: inline-block;
   height: 2rem;
   /* padding: 0 30px; */
-  color: #555;
+  color: black;
   text-align: center;
   font-weight: 600;
   line-height: 2rem;
@@ -208,11 +253,16 @@
   text-transform: none;
   text-decoration: none;
   white-space: nowrap;
-  background-color: transparent;
+  /* background-color: transparent; */
   border-radius: 4px;
-  border: 1px solid #bbb;
+  border: 0;
   cursor: pointer;
   box-sizing: border-box; 
+}
+
+.ctrl-btn:hover {
+  color: white;
+  background-color: #707070; /* #e1e1e1;*/  /* #707070; */
 }
 
 .ctrl-select {
@@ -226,21 +276,30 @@
 }
 
 .top-btn-area {
+  display: flex;
+  flex-flow: row;
   /*margin-left: auto;*/
   margin: -0.5em 1em 0 2em;
 }
 
-.top-btn {
+.top-btn, .top-btn:focus {
   margin: 0;
   padding: 0 0.2em 0 0.2em;
   height: 1.3em;
   line-height: 1em;
   text-align: center;
   font-size: large;
-  background-color: white;
+  color: white;
+  border-radius: 4px;
+  border: 0;
+  /* background-color: white; */
   /* width: 1em; */
 }
 
+.top-btn:hover {
+  color: black;
+  background-color: #e1e1e1; /* #707070; */
+}
 
 @media (min-width: 800px) {
   .zentraler-inhalt {

--
Gitblit v1.9.3