[PATCH 08/12] css: mobile: Fix hiding of big logo in mobile layout

Peter Krempa posted 12 patches 1 year, 3 months ago
[PATCH 08/12] css: mobile: Fix hiding of big logo in mobile layout
Posted by Peter Krempa 1 year, 3 months ago
Use the '#index' id to select the proper page as the body element
doesn't have 'index' class.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
---
 docs/css/mobile.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/css/mobile.css b/docs/css/mobile.css
index 1a2ea6fcc3..43ca7ca482 100644
--- a/docs/css/mobile.css
+++ b/docs/css/mobile.css
@@ -20,7 +20,7 @@
     #search form {
        padding: 5px;
     }
-    body.index h1 {
+    #index h1 {
        display: none;
     }
     #jumplinks {
-- 
2.40.1
Re: [PATCH 08/12] css: mobile: Fix hiding of big logo in mobile layout
Posted by Ján Tomko 1 year, 3 months ago
On a Tuesday in 2023, Peter Krempa wrote:
>Use the '#index' id to select the proper page as the body element
>doesn't have 'index' class.
>
>Signed-off-by: Peter Krempa <pkrempa@redhat.com>
>---
> docs/css/mobile.css | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>

For patches 2 to 8:

Reviewed-by: Ján Tomko <jtomko@redhat.com>

Jano