mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-11 09:45:54 +08:00
292f3289ac
And improved responsive CSS
46 lines
767 B
Text
46 lines
767 B
Text
#rl-popups {
|
|
.b-languages-content {
|
|
|
|
&.modal {
|
|
width: 700px;
|
|
}
|
|
|
|
.lang-item {
|
|
display: inline-block;
|
|
padding: 5px 15px;
|
|
margin: 2px 5px;
|
|
width: 180px;
|
|
background-color: #fff;
|
|
text-align: left;
|
|
border: 1px solid transparent;
|
|
border-radius: 3px;
|
|
position: relative;
|
|
|
|
&.user {
|
|
background-color: #ffd;
|
|
border-color: #ff5;
|
|
}
|
|
&.selected {
|
|
background-color: #efe;
|
|
border-color: #9c9;
|
|
}
|
|
&.selected::after {
|
|
content: "✔";
|
|
color: #080;
|
|
position: absolute;
|
|
right: 4px;
|
|
font-family: snappymail;
|
|
}
|
|
&:hover {
|
|
background-color: #eee;
|
|
border-color: #ccc;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 999px) {
|
|
.b-languages-content .lang-item {
|
|
width: calc(~'100% - 40px');
|
|
}
|
|
}
|