Skip to content

Commit

Permalink
fixed missing token and missing word wrap behaviour (#759)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianHoffmannS2 authored Jan 10, 2024
1 parent e41c7fc commit 711b0ef
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
7 changes: 7 additions & 0 deletions packages/ui-library/src/components/forms/select/index.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,13 @@ export const { tokenizedLight: selectInputLight, tokenizedDark: selectInputDark
border: ${Input.Default.Rest.width} ${Input.Default.Rest.style} ${Input.Default.Rest.color};
border-radius: ${InputBorderRadius};
box-sizing: border-box;
background-color: ${SurfaceFill.Default.Rest};
.blr-form-select {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.blr-input-icon {
position: relative;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,13 @@ const defaultParams: BlrSelectType = {
name: 'select',
options: [
{ value: '0', label: 'Option 1', selected: false, disabled: true },
{ value: '1', label: 'Option 2', selected: false, disabled: false },
{
value: '1',
label:
'To big option Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular. Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental. A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es.Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular. Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles.',
selected: false,
disabled: false,
},
{ value: '2', label: 'Option 3', selected: true, disabled: false },
{ value: '4', label: 'Option 4', selected: false, disabled: false },
],
Expand Down

0 comments on commit 711b0ef

Please sign in to comment.