mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 19:05:51 +00:00
d5d0e1036b
* docs: add docs * ignore dumi theme test * fix: error TS2717: Subsequent property declarations must have the same type. * update docs * deploy gh-pages * plugins docs * hash & cname * exportStatic * ssr * vercel * vercel * fix: deploy vercel * Delete vercel.json * docs * fix APP_DIST * on master branch
49 lines
890 B
Plaintext
Executable File
49 lines
890 B
Plaintext
Executable File
@import (reference) '../style/variables.less';
|
|
|
|
.@{prefix}-locale-select {
|
|
position: relative;
|
|
display: inline-block;
|
|
border: 1px solid #dadadf;
|
|
border-radius: 14px;
|
|
transition: background 0.2s;
|
|
|
|
&:hover {
|
|
background-color: #fafafa;
|
|
}
|
|
|
|
&:not([data-locale-count='1']):not([data-locale-count='2'])::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 10px;
|
|
margin-top: -3px;
|
|
width: 0;
|
|
height: 0;
|
|
border: 4px solid transparent;
|
|
border-top: 6px solid #7b7f8d;
|
|
pointer-events: none;
|
|
}
|
|
|
|
a,
|
|
span,
|
|
select {
|
|
padding: 0 24px 0 16px;
|
|
height: 28px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
line-height: 28px;
|
|
appearance: none;
|
|
border: 0;
|
|
font-size: 16px;
|
|
color: #7b7f8d;
|
|
background: transparent;
|
|
outline: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
a,
|
|
span {
|
|
padding-right: 16px;
|
|
}
|
|
}
|