Skip to content

Commit

Permalink
🐛 fix(select): correctifs flèche et intitulé [DS-3534, DS-3536] (#736)
Browse files Browse the repository at this point in the history
- réduit la taille de l'icone et ajuste sa position
- corrige l'intitulé du placeholder
  • Loading branch information
zellerbaptiste committed Nov 6, 2023
1 parent 4e27030 commit adf5cb2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/component/select/deprecated/example/sample/select.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
select.valid = validData(select.valid);
select.error = errorData(select.error);
select.hint = hintData(select.hint);
select.placeholder = select.placeholder || 'Selectionnez une option';
select.placeholder = select.placeholder || 'Sélectionner une option';
select.label = select.label || 'Label pour liste déroulante';
select.options = [
Expand Down
2 changes: 1 addition & 1 deletion src/component/select/example/sample/select.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
select.valid = validData(select.valid);
select.error = errorData(select.error);
select.hint = hintData(select.hint);
select.placeholder = select.placeholder || 'Selectionnez une option';
select.placeholder = select.placeholder || 'Sélectionner une option';
select.label = select.label || 'Label pour liste déroulante';
select.options = [
Expand Down
4 changes: 2 additions & 2 deletions src/component/select/style/_module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
@include text-style(md);
@include padding(2v 10v 2v 4v);
background-repeat: no-repeat;
background-position: spacing.space(calc(100% - 2v) 50%);
background-size: spacing.space(6v) spacing.space(6v);
background-position: spacing.space(calc(100% - 4v) 50%);
background-size: spacing.space(4v 4v);
}

#{ns(select-group)} {
Expand Down

0 comments on commit adf5cb2

Please sign in to comment.