mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-13 11:13:07 +08:00
46 lines
701 B
Text
46 lines
701 B
Text
#rl-popups {
|
|
.b-languages-content {
|
|
|
|
&.modal {
|
|
width: 700px;
|
|
}
|
|
|
|
&.exp {
|
|
width: 701px;
|
|
}
|
|
|
|
.modal-header {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.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: 2px;
|
|
|
|
&.user {
|
|
background-color: #fffddd;
|
|
border-color: #fff555;
|
|
}
|
|
&.selected {
|
|
background-color: #f5f5f5;
|
|
border-color: #ccc;
|
|
}
|
|
&:hover {
|
|
background-color: #eee;
|
|
border-color: #ccc;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 999px) {
|
|
.b-languages-content .lang-item {
|
|
width: calc(~'100% - 40px');
|
|
}
|
|
}
|