Skip to content
Snippets Groups Projects
Commit 22aef1d4 authored by Olimpia Magliulo's avatar Olimpia Magliulo
Browse files

Add font-awesome icon to language dropdown-menu

parent 182a6ea7
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@
<select class="pure-input-1-4 language-menu selectize" name="language" id="language_selector">
{% for key, lang in languageBar -%}
{%- if key == currentLanguage -%}
<option value="{{ key }}" selected="selected">{{ lang.name }}</option>
<option value="{{ key }}" selected="selected">&#xf1ab; {{ lang.name }}</option>
{%- else -%}
<option value="{{ key }}">{{ lang.name }}</option>
{%- endif -%}
......
......@@ -74,6 +74,7 @@ LANGUAGE MENU
.language-menu{
float: right;
font-family: FontAwesome, sans-serif;
min-width: 10rem;
}
/* ***********************************************************
......@@ -100,7 +101,7 @@ FORMS
transform: translate(0, -50%);
}
.selectize-input{
.selectize-input, .selectize-dropdown, .selectize-input.dropdown-active{
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
......@@ -144,8 +145,6 @@ MEDIA QUERIES
@media screen and (max-width: 39.9375em) {
.hide-for-small-only {
display: none !important; }
.language-menu {
min-width: 145px;}
.selectize-input{
padding-right: 0.1rem;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment