Projet

Général

Profil

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

Thomas Jund, 08 janvier 2021 15:31

Télécharger (1,21 ko)

Voir les différences:

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

 static/avray/_custom.scss  | 2 +-
 static/coprec/_custom.scss | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)
static/avray/_custom.scss
107 107
	}
108 108
}
109 109

  
110
nav {
110
.site-nav {
111 111
	background-color: #dbdbdb;
112 112
	border-bottom: 25px solid white;
113 113

  
static/coprec/_custom.scss
28 28
}
29 29

  
30 30
/* ne pas afficher la navigation */
31
nav {
31
.site-nav {
32 32
	display: none;
33 33
}
34 34

  
......
205 205
		}
206 206
	}
207 207

  
208
	#page nav::after {
208
	#page .site-nav::after {
209 209
		background-image: none;
210 210
		display: none;
211 211
	}
......
246 246
	#partners-text {
247 247
		max-width: 600px;
248 248
		text-align: center;
249
	
249

  
250 250
		* {
251 251
			maring: 0;
252 252
		}
253
-