diff --git a/web/typo3conf/ext/ep_theme/Resources/Private/Assets/images/icons/icon_select.png b/web/typo3conf/ext/ep_theme/Resources/Private/Assets/images/icons/icon_select.png new file mode 100644 index 00000000..bbcbc23f Binary files /dev/null and b/web/typo3conf/ext/ep_theme/Resources/Private/Assets/images/icons/icon_select.png differ diff --git a/web/typo3conf/ext/ep_theme/Resources/Private/Assets/js/_images.js b/web/typo3conf/ext/ep_theme/Resources/Private/Assets/js/_images.js index f7961691..165ddd6f 100644 --- a/web/typo3conf/ext/ep_theme/Resources/Private/Assets/js/_images.js +++ b/web/typo3conf/ext/ep_theme/Resources/Private/Assets/js/_images.js @@ -14,6 +14,7 @@ require('../images/badge_skipass.png'); require('../images/polygon.jpg'); require('../images/icons/icon_ce.svg'); +require('../images/icons/icon_select.png'); require('../images/icons/tx_eptheme_domain_model_lineup.gif'); require('../images/icons/tx_eptheme_domain_model_slide.gif'); require('../images/icons/tx_eptheme_gridelements_half_and_two_quarters.png'); diff --git a/web/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/_input.scss b/web/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/_input.scss index 56bd2437..31482f77 100644 --- a/web/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/_input.scss +++ b/web/typo3conf/ext/ep_theme/Resources/Private/Assets/scss/_input.scss @@ -29,6 +29,15 @@ } } +select.form-control { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background-image: url(../images/icons/icon_select.png); + background-position: calc(100% - 24px) center; + background-repeat: no-repeat; +} + textarea { resize: vertical; }