diff --git a/css/light-grey.css b/css/light-grey.css index 009882f23d..30d3237fb0 100644 --- a/css/light-grey.css +++ b/css/light-grey.css @@ -2927,6 +2927,17 @@ table.listResults .originColor { .menu-icon-select > .ui-menu-item { padding: 0.3em 3%; } +.menu-icon-select > .ui-menu-item > * { + width: 100%; + white-space: nowrap; + overflow-x: hidden; + text-overflow: ellipsis; +} +.menu-icon-select > .ui-menu-item > * > img { + max-width: 80px; + max-height: 45px; + margin-right: 10px; +} .attribute.attribute-set .attribute-set-item::after { content: ","; margin-right: 0.5em; diff --git a/css/light-grey.scss b/css/light-grey.scss index 62150812a4..ab733ad743 100644 --- a/css/light-grey.scss +++ b/css/light-grey.scss @@ -3353,6 +3353,19 @@ table.listResults .originColor{ } .menu-icon-select > .ui-menu-item{ padding: .3em 3%; + + > *{ + width: 100%; + white-space: nowrap; + overflow-x: hidden; + text-overflow: ellipsis; + + > img{ + max-width: 80px; + max-height: 45px; + margin-right: 10px; + } + } } //////////////////////