Projet

Général

Profil

0001-montpellier-add-styles-for-mandaye-panel-19354.patch

Serghei Mihai (congés, retour 15/05), 10 octobre 2017 18:16

Télécharger (2,05 ko)

Voir les différences:

Subject: [PATCH] montpellier: add styles for mandaye panel (#19354)

 Makefile                        |  1 +
 static/montpellier/mandaye.scss | 47 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)
 create mode 100644 static/montpellier/mandaye.scss
Makefile
42 42
	cd static/meyzieu/ && sass style.scss:style.css
43 43
	cd static/minint/sass && sass styles.scss:../css/styles.css
44 44
	cd static/montpellier/ && sass style.scss:style.css
45
	cd static/montpellier/ && sass mandaye.scss:mandaye.css
45 46
	cd static/nancy/ && sass style.scss:style.css
46 47
	cd static/nancy-2017/ && sass style.scss:style.css
47 48
	cd static/nanterre/ && sass style.scss:style.css
static/montpellier/mandaye.scss
1
@charset "UTF-8";
2
$panel-mobile-limit: 767px;
3

  
4
@import 'vars';
5
@import '../includes/mandayejs-panel';
6

  
7
body {
8
	margin-top: 36px !important;
9
	position: relative !important;
10
	@media screen and (max-width: $panel-mobile-limit) {
11
		margin: 0 !important;
12
		position: static !important;
13
	}
14
}
15

  
16
#mandaye-js {
17
	font-family: 'Open Sans', 'Helvetica Neue', arial, sans-serif;
18
	position: fixed;
19
	@media screen and (max-width: $panel-mobile-limit) {
20
		position: absolute;
21
		left: 0;
22
		top: 0;
23
		width: 10%;
24
		background: #2C2C2C;
25
	}
26
	#mandaye-advances {
27
		display: none;
28
	}
29
	#mandaye-logon-url {
30
		@media screen and (max-width: $panel-mobile-limit) {
31
			display: none;
32
		}
33
		a {
34
			font-weight: bold;
35
		}
36
	}
37
	#mandaye-association-url {
38
		@media screen and (max-width: $panel-mobile-limit) {
39
 			display: none;
40
		}
41
	}
42
	#mandaye-username {
43
		@media screen and (max-width: $panel-mobile-limit) {
44
			display: none;
45
		}
46
	}
47
}
0
-