Projet

Général

Profil

0001-themes-use-class-site-nav-instead-tag-to-select-nav-.patch

Thomas Jund, 08 janvier 2021 15:30

Télécharger (1,27 ko)

Voir les différences:

Subject: [PATCH] themes : use class 'site-nav' instead tag to select nav
 (#49976)

 static/liege-pwa-2019/_custom.scss | 4 ++--
 static/ploneconf/_custom.scss      | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
static/liege-pwa-2019/_custom.scss
561 561
}
562 562

  
563 563
@media screen and ($max-mobile-viewport) {
564
	body.focus-in nav {
564
	body.focus-in .site-nav {
565 565
		display: none;
566 566
	}
567 567
}
......
703 703

  
704 704
/* fix open street map leaflet over pwa menu problem */
705 705
@media screen and (max-width: 800px) {
706
    nav {
706
    .site-nav {
707 707
        z-index: 1001;
708 708
    }
709 709
}
static/ploneconf/_custom.scss
1
@charset "UTF-8"; 
1
@charset "UTF-8";
2 2
/*Sebastien V. asked for this */
3
nav,
3
.site-nav,
4 4
div#toplinks {
5 5
        display: none;
6 6
}
7
-