forked from odoo/odoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.less
95 lines (89 loc) · 2.02 KB
/
footer.less
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// Based on http://www.odoo.com/openerp_website/static/src/less/footer.less
// ========================================================================
body > footer {
font-size: 14px;
position: relative;
width: 100%;
height: auto;
min-height: @footer-heigth;
background-color: @footer-bg-color;
color: @gray;
z-index: 1;
@media screen and (min-width: @screen-md-min) {
&.o_footer_effect {
.o-position-absolute(auto, 0, 0, 0);
position: fixed;
z-index: 0;
}
}
.o_footer_logo {
margin-bottom: 3em;
margin-top: 3em;
}
a {
color: @footer-text;
&:hover, &:active, &:focus {
color: white;
}
}
.dropdown-menu a {
color: @dropdown-link-color;
&:hover, &:focus {
color: @dropdown-link-hover-color;
}
&:active {
color: @dropdown-link-active-color;
}
}
.divider {
margin: 10px 0;
}
ul, ol {
list-style: none;
padding-left: 0;
}
span.menu_title {
font-weight: @fw_semibold;
color: white;
+ ul {
margin-top: 10px;
}
}
.o_language_selector, .o_country_selector {
display: inline-block;
.opacity(0.8);
a {
font-size: 0.9em;
font-weight: bold;
}
img {
max-height: 20px;
margin-right: 10px;
vertical-align: bottom;
}
&:hover {
.opacity(1);
}
}
.o_country_selector {
float: right;
}
hr {
border-top-color: lighten(@footer-bg-color, 10%);
}
.o_footer_bottom {
background-color: @footer-bottom-bg-color;
color: @footer-text;
padding: 1em 0;
margin-top: 3em;
a {
.opacity(0.6);
&:hover {
.opacity(1);
}
}
.social-links .fa {
margin-left: 20px;
}
}
}