File tree Expand file tree Collapse file tree 3 files changed +44
-2
lines changed Expand file tree Collapse file tree 3 files changed +44
-2
lines changed Original file line number Diff line number Diff line change 5454 </div >
5555 <div class =" form__field" >
5656 {{ $t('settings.chooseLanguage') }}
57- <select v-model =" $i18n.locale" >
57+ <select class = " select " v-model =" $i18n.locale" >
5858 <option
5959 v-for =" (lang, i) in langs"
6060 :key =" `Lang${i}`"
Original file line number Diff line number Diff line change 22@forward ' buttons' ;
33@forward ' checkbox' ;
44@forward ' alert' ;
5- @forward ' textarea' ;
5+ @forward ' textarea' ;
6+ @forward ' select' ;
Original file line number Diff line number Diff line change 1+ @use ' ../Library/colours' ;
2+ @use ' ../Library/fonts' ;
3+ .select {
4+ transition : 0.1s ;
5+ @include colours .corner-radius ;
6+ @include fonts .font (' primary' );
7+ width : 5rem ;
8+ text-rendering : auto ;
9+ color : inherit ;
10+ background-color : inherit ;
11+ letter-spacing : normal ;
12+ word-spacing : normal ;
13+ text-transform : none ;
14+ text-indent : 3px ;
15+ text-shadow : none ;
16+ padding : 7px ;
17+ display : inline-block ;
18+ text-align : start ;
19+ box-sizing : border-box ;
20+ align-items : center ;
21+ white-space : pre ;
22+ cursor : pointer ;
23+ margin-left : 1em ;
24+ border-width : 1px ;
25+ border-style : solid ;
26+ border-color : rgb (169 , 169 , 169 );
27+ & :hover , & :focus {
28+ color : inherit ;
29+ background-color : inherit ;
30+ @include colours .corner-radius ;
31+ outline : none ;
32+ border-color : rgb (169 , 169 , 169 );
33+ }
34+ & > option {
35+ color : colours .theme-color (' primary' ,' base' );
36+ background-color : colours .theme-color (' background' ,' base' );
37+ & :focus {
38+ outline : none ;
39+ }
40+ }
41+ }
You can’t perform that action at this time.
0 commit comments