From aa58769822ca1716ad175a54b9b2a7ec3b34afbf Mon Sep 17 00:00:00 2001 From: BFallert Date: Fri, 24 May 2019 10:56:52 +0200 Subject: [PATCH 1/5] Full text no longer shifts the image down, full text lines are now wrapped as in the original text --- Resources/Public/Css/main.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Resources/Public/Css/main.css b/Resources/Public/Css/main.css index f81065e77..75bdc404f 100644 --- a/Resources/Public/Css/main.css +++ b/Resources/Public/Css/main.css @@ -94,6 +94,11 @@ li.tx-dlf-navigation-pageselect label { div#tx-dlf-fulltextselection { padding: 10px; margin-top: 40px; + position: absolute; +} + +div#tx-dlf-fulltextselection span.textline { + display: block; } From d96736d7b20f4a23f0a0e763c9743984b65ecbcc Mon Sep 17 00:00:00 2001 From: BFallert Date: Fri, 24 May 2019 11:04:57 +0200 Subject: [PATCH 2/5] format full text box, text over image --- Resources/Public/Css/main.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Resources/Public/Css/main.css b/Resources/Public/Css/main.css index 75bdc404f..cc802add3 100644 --- a/Resources/Public/Css/main.css +++ b/Resources/Public/Css/main.css @@ -95,6 +95,9 @@ div#tx-dlf-fulltextselection { padding: 10px; margin-top: 40px; position: absolute; + z-index: 100; /* Text over image */ + background-color: #fff; + opacity: 0.9; /* see image behind text box */ } div#tx-dlf-fulltextselection span.textline { From dc0271364ca291c62f45664e4eefa992ce26ee78 Mon Sep 17 00:00:00 2001 From: BFallert Date: Fri, 24 May 2019 14:21:38 +0200 Subject: [PATCH 3/5] avoids overlapping of full text box and heading --- Resources/Public/Css/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Public/Css/main.css b/Resources/Public/Css/main.css index cc802add3..7d1037416 100644 --- a/Resources/Public/Css/main.css +++ b/Resources/Public/Css/main.css @@ -93,7 +93,7 @@ li.tx-dlf-navigation-pageselect label { div#tx-dlf-fulltextselection { padding: 10px; - margin-top: 40px; + margin-top: 43px; position: absolute; z-index: 100; /* Text over image */ background-color: #fff; From 4fe8c5d08ebb5f594be09cf8901cec87515cad84 Mon Sep 17 00:00:00 2001 From: BFallert Date: Wed, 19 Jun 2019 09:19:44 +0200 Subject: [PATCH 4/5] fulltext behind dropdown menu and background color --- Resources/Public/Css/main.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Resources/Public/Css/main.css b/Resources/Public/Css/main.css index 7d1037416..70cf83051 100644 --- a/Resources/Public/Css/main.css +++ b/Resources/Public/Css/main.css @@ -95,8 +95,9 @@ div#tx-dlf-fulltextselection { padding: 10px; margin-top: 43px; position: absolute; - z-index: 100; /* Text over image */ - background-color: #fff; + z-index: 2 /* Full-Text over image, but behinde drop-down-menu */ + background-color: #f1f1f1; + margin-left: 3px; opacity: 0.9; /* see image behind text box */ } From 6bfc0beb9773d3810bfd7eae9a101966df457a51 Mon Sep 17 00:00:00 2001 From: BFallert Date: Wed, 19 Jun 2019 11:51:00 +0200 Subject: [PATCH 5/5] add missing ";" --- Resources/Public/Css/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Public/Css/main.css b/Resources/Public/Css/main.css index 70cf83051..ca93ef1fe 100644 --- a/Resources/Public/Css/main.css +++ b/Resources/Public/Css/main.css @@ -95,7 +95,7 @@ div#tx-dlf-fulltextselection { padding: 10px; margin-top: 43px; position: absolute; - z-index: 2 /* Full-Text over image, but behinde drop-down-menu */ + z-index: 2; /* Full-Text over image, but behinde drop-down-menu */ background-color: #f1f1f1; margin-left: 3px; opacity: 0.9; /* see image behind text box */