Projet

Général

Profil

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

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

Télécharger (2,25 ko)

Voir les différences:

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

 Makefile                        |  1 +
 static/montpellier/mandaye.scss | 48 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 49 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
    background: black;
19
    position: fixed;
20
    @media screen and (max-width: $panel-mobile-limit) {
21
        position: absolute;
22
        left: 0;
23
        top: 0;
24
        width: 10%;
25
        background: #2C2C2C;
26
    }
27
    #mandaye-advances {
28
        display: none;
29
    }
30
    #mandaye-logon-url {
31
        @media screen and (max-width: $panel-mobile-limit) {
32
            display: none;
33
        }
34
        a {
35
            font-weight: bold;
36
        }
37
    }
38
    #mandaye-association-url {
39
        @media screen and (max-width: $panel-mobile-limit) {
40
            display: none;
41
        }
42
    }
43
    #mandaye-username {
44
        @media screen and (max-width: $panel-mobile-limit) {
45
            display: none;
46
        }
47
    }
48
}
0
-