funky-framadate-front/src/app/shared/components/selectors/language-selector/language-selector.component...

71 lines
938 B
SCSS
Raw Normal View History

2021-12-14 11:22:23 +01:00
@import './../../../../../styles/variables';
2021-12-06 12:13:47 +01:00
#lang_selector {
2021-12-13 16:18:24 +01:00
max-width: 15em;
width: 15em !important;
2022-02-11 11:43:50 +01:00
2022-02-08 13:44:17 +01:00
.top {
clear: both;
width: 100%;
}
2021-12-06 12:13:47 +01:00
}
2022-02-11 11:43:50 +01:00
2022-02-11 10:59:02 +01:00
#lang_button_popup {
background: transparent;
margin-right: 0.5rem;
&:hover {
background: $secondary_color;
color: $white;
.fa {
color: $white;
}
}
2022-02-11 10:59:02 +01:00
}
2021-12-14 11:22:23 +01:00
.language-selector-container {
cursor: pointer;
color: $primary-color;
2022-02-11 11:43:50 +01:00
2021-12-14 11:22:23 +01:00
i {
color: $primary-color;
}
}
2022-02-11 11:43:50 +01:00
2022-02-08 13:44:17 +01:00
.lang-element {
float: left;
margin: 0.5em;
2022-02-15 12:32:27 +01:00
border: 0;
border-radius: 2rem;
padding: 0.5rem 0.25rem;
2022-02-15 14:04:41 +01:00
padding-right: 1rem;
2022-02-15 14:15:40 +01:00
min-width: 12em;
2022-02-15 12:32:27 +01:00
&:hover {
2022-02-15 14:04:41 +01:00
background: $primary_color;
color: $white;
}
input {
height: 1.5rem;
2022-02-15 12:32:27 +01:00
}
2022-02-08 13:44:17 +01:00
}
2022-02-11 11:43:50 +01:00
2022-02-08 13:44:17 +01:00
.is-current {
font-weight: bold;
}
2022-02-11 11:43:50 +01:00
2021-12-16 12:21:24 +01:00
.lang-button {
color: $primary-color;
2021-12-16 12:21:24 +01:00
border: none;
2022-02-08 14:04:09 +01:00
padding: 0 1rem;
2021-12-17 12:13:34 +01:00
display: block;
2022-02-15 14:48:50 +01:00
line-height: $stepper-nav-height;
2022-02-11 10:59:02 +01:00
height: $stepper-nav-height;
2021-12-16 12:21:24 +01:00
}
2022-02-11 11:43:50 +01:00
#lang_button_popup_mobile {
.lang-button {
width: 100% !important;
}
}