mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
66ea2e613c
[web] rework the language picker UI in the footer GitOrigin-RevId: fb9fe9a560a0f059f58c76d6a85f31ffabc14f4f
52 lines
884 B
Text
52 lines
884 B
Text
footer.site-footer {
|
|
background-color: @footer-bg-color;
|
|
border-top: 1px solid @gray-lighter;
|
|
font-size: 0.9rem;
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: @footer-height;
|
|
line-height: @footer-height - 1; // Hack — in Chrome, using the full @footer-height would generate vertical scrolling
|
|
|
|
ul {
|
|
list-style: none;
|
|
margin: 0px;
|
|
li {
|
|
display: inline-block;
|
|
margin: 0 0.5em;
|
|
}
|
|
i {
|
|
font-size: 1.2rem;
|
|
}
|
|
}
|
|
li.lngOption {
|
|
text-align: left;
|
|
display: list-item;
|
|
|
|
img {
|
|
vertical-align: text-bottom;
|
|
}
|
|
|
|
a:hover,
|
|
a:focus {
|
|
color: @white;
|
|
}
|
|
}
|
|
|
|
a {
|
|
color: @footer-link-color;
|
|
&:hover,
|
|
&:focus {
|
|
color: @footer-link-hover-color;
|
|
}
|
|
}
|
|
}
|
|
|
|
.site-footer-content {
|
|
.container-fluid;
|
|
}
|
|
|
|
.sprite-icon-lang {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
}
|