2021-11-08 00:06:08 +08:00
|
|
|
#V-PopupsLanguages {
|
2013-11-16 06:21:12 +08:00
|
|
|
|
2021-11-08 00:06:08 +08:00
|
|
|
max-width: 710px;
|
2013-11-16 06:21:12 +08:00
|
|
|
|
2021-07-20 22:45:55 +08:00
|
|
|
label {
|
2021-03-09 00:23:21 +08:00
|
|
|
display: inline-block;
|
|
|
|
padding: 5px 15px;
|
|
|
|
margin: 2px 5px;
|
2022-11-21 18:00:39 +08:00
|
|
|
width: 216px;
|
2021-03-09 18:14:15 +08:00
|
|
|
background-color: rgba(128, 128, 128, 0.1);
|
2021-03-09 00:23:21 +08:00
|
|
|
border: 1px solid transparent;
|
2022-11-07 22:25:59 +08:00
|
|
|
border-radius: var(--input-border-radius, 3px);
|
2021-03-09 00:23:21 +08:00
|
|
|
position: relative;
|
2021-03-09 18:14:15 +08:00
|
|
|
cursor: pointer;
|
2013-11-16 06:21:12 +08:00
|
|
|
|
2021-03-09 00:23:21 +08:00
|
|
|
&.user {
|
2021-03-09 18:14:15 +08:00
|
|
|
background-color: rgba(255, 255, 64, .15);
|
2021-03-09 00:23:21 +08:00
|
|
|
border-color: #ff5;
|
|
|
|
}
|
|
|
|
&.selected {
|
2021-03-09 18:14:15 +08:00
|
|
|
background-color: rgba(64, 255, 64, 0.2);
|
2021-03-09 00:23:21 +08:00
|
|
|
border-color: #9c9;
|
|
|
|
}
|
|
|
|
&.selected::after {
|
|
|
|
content: "✔";
|
|
|
|
position: absolute;
|
|
|
|
right: 4px;
|
|
|
|
font-family: snappymail;
|
|
|
|
}
|
|
|
|
&:hover {
|
2021-03-09 18:14:15 +08:00
|
|
|
background-color: rgba(128, 128, 128, 0.2);
|
2021-03-09 00:23:21 +08:00
|
|
|
border-color: #ccc;
|
2013-11-16 06:21:12 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-03 04:42:29 +08:00
|
|
|
|
2023-02-24 18:45:26 +08:00
|
|
|
@media screen and (max-width: 480px) {
|
2021-11-08 00:06:08 +08:00
|
|
|
#V-PopupsLanguages label {
|
2022-11-21 18:00:39 +08:00
|
|
|
width: 100%;
|
2016-05-03 04:42:29 +08:00
|
|
|
}
|
2020-09-02 23:06:35 +08:00
|
|
|
}
|