From 78d7078d97625e4a8d2d6863318c192f910f2ec9 Mon Sep 17 00:00:00 2001
From: ulrich
Date: Sun, 11 Apr 2021 11:09:36 +0000
Subject: [PATCH] UI-Verbesserungen in Arbeit

---
 www/ui/app.css |   59 ++++++++++++++++++++++++++++++++++++++++++++++++++++-------
 1 files changed, 52 insertions(+), 7 deletions(-)

diff --git a/www/ui/app.css b/www/ui/app.css
index 293101a..7a2cdb7 100644
--- a/www/ui/app.css
+++ b/www/ui/app.css
@@ -86,6 +86,31 @@
   cursor: pointer;
 }
 
+.top-band {
+  display: flex;
+  flex-flow: row;
+}
+
+.breadcrumb-behaelter {
+  display: flex;
+  flex-flow: row;
+  font-size: smaller;
+}
+
+.breadcrumb-link {
+  padding-right: 0.3rem;
+  text-decoration: none;
+  color: #0a67d1;
+}
+
+.breadcrumb-link:hover {
+  text-decoration: underline;
+}
+
+.bereich-name {
+  padding-left: 0.4rem;
+}
+
 .dialog {
   position: relative;
   /* height: 0.1em; */
@@ -155,10 +180,12 @@
 
 .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;
@@ -208,6 +235,10 @@
   background-color: #ececec;
 }
 
+.added-to-playlist {
+  background-color: #cce1fa;
+}
+
 .dlg-btn {
   margin-left: 0.4rem;
 }
@@ -228,8 +259,8 @@
   margin-top: 0.2rem;
 }
 
-.ctrl-btn {
-  width: 4rem;
+.ctrl-btn, .ctrl-btn:focus {
+  width: 2rem;
   font-size: medium;
   display: inline-block;
   height: 2rem;
@@ -242,11 +273,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 {
@@ -260,21 +296,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