From 7c22a2a2f3568841b0830e4339bdb6f8ec69262f Mon Sep 17 00:00:00 2001
From: ulrich
Date: Wed, 07 Apr 2021 10:39:57 +0000
Subject: [PATCH] Piktogramme in Media-Inhalten, Tool-Tipps, Auswahl in Media-Inhalten

---
 www/ui/app.css |   32 ++++++++++++++++++++++++++++++--
 1 files changed, 30 insertions(+), 2 deletions(-)

diff --git a/www/ui/app.css b/www/ui/app.css
index 3587412..2ace15c 100644
--- a/www/ui/app.css
+++ b/www/ui/app.css
@@ -150,7 +150,7 @@
 }
 
 .entity-element:hover {
-  background-color: background;
+  background-color: #ececec;
 }
 
 .entity-liste {
@@ -169,9 +169,37 @@
   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;
+}
+
 .form-button-footer {
   display: flex;
   flex-flow: row;
+}
+
+.selected {
+  background-color: #ececec;
 }
 
 .dlg-btn {
@@ -200,7 +228,7 @@
   display: inline-block;
   height: 2rem;
   /* padding: 0 30px; */
-  color: #555;
+  color: black;
   text-align: center;
   font-weight: 600;
   line-height: 2rem;

--
Gitblit v1.9.3