2018-04-16 23:30:58 +00:00
|
|
|
@import 'common/sass/variables';
|
|
|
|
@import 'common/sass/mixins';
|
|
|
|
|
|
|
|
.LanguageSelect {
|
|
|
|
&-language {
|
|
|
|
@include reset-button;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 48px;
|
|
|
|
line-height: 48px;
|
|
|
|
padding: 0 10px;
|
2018-06-27 04:51:42 +00:00
|
|
|
color: color(text-color);
|
|
|
|
border-bottom: 1px solid color(gray-lighter);
|
2018-04-16 23:30:58 +00:00
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
&:hover {
|
2018-06-27 04:51:42 +00:00
|
|
|
color: color(link-hover-color);
|
2018-04-16 23:30:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.is-selected {
|
2018-06-27 04:51:42 +00:00
|
|
|
color: color(link-color);
|
|
|
|
background: color(gray-lightest);
|
2018-04-16 23:30:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|