From 5bce76bcba4360f876fc727c0f12323a27db0c74 Mon Sep 17 00:00:00 2001 From: Victor Losada Hernandez Date: Sat, 25 Mar 2023 19:28:32 +0100 Subject: [PATCH 1/3] isolation stacking context --- themes/V3/Blank/style.less | 1 + 1 file changed, 1 insertion(+) diff --git a/themes/V3/Blank/style.less b/themes/V3/Blank/style.less index 6dda308e9..90a51ed73 100644 --- a/themes/V3/Blank/style.less +++ b/themes/V3/Blank/style.less @@ -23,6 +23,7 @@ body { break-inside : avoid; display : inline-block; width : 100%; + isolation : isolate; } .inline-block { display : inline-block; From 78ca5f5107113d80369fc916b78777fb292130f5 Mon Sep 17 00:00:00 2001 From: Victor Losada Hernandez Date: Sun, 9 Apr 2023 15:32:03 +0200 Subject: [PATCH 2/3] undo isolation, raising image z-index --- themes/V3/Blank/style.less | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/themes/V3/Blank/style.less b/themes/V3/Blank/style.less index 90a51ed73..4a6218556 100644 --- a/themes/V3/Blank/style.less +++ b/themes/V3/Blank/style.less @@ -23,7 +23,6 @@ body { break-inside : avoid; display : inline-block; width : 100%; - isolation : isolate; } .inline-block { display : inline-block; @@ -94,6 +93,9 @@ body { img{ z-index : -1; } + .block img { + z-index : 0; + } //***************************** // * HEADERS From d375cdf10b8f77c7cf750b86a3bbc405e543852f Mon Sep 17 00:00:00 2001 From: Trevor Buckner Date: Wed, 19 Apr 2023 11:14:29 -0400 Subject: [PATCH 3/3] Move rule to the ".block" section --- themes/V3/Blank/style.less | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/themes/V3/Blank/style.less b/themes/V3/Blank/style.less index 4a6218556..149c9ab0d 100644 --- a/themes/V3/Blank/style.less +++ b/themes/V3/Blank/style.less @@ -23,6 +23,9 @@ body { break-inside : avoid; display : inline-block; width : 100%; + img { + z-index : 0; + } } .inline-block { display : inline-block; @@ -93,9 +96,6 @@ body { img{ z-index : -1; } - .block img { - z-index : 0; - } //***************************** // * HEADERS