diff --git a/frappe/public/less/controls.less b/frappe/public/less/controls.less index 19b916e036..0259140652 100644 --- a/frappe/public/less/controls.less +++ b/frappe/public/less/controls.less @@ -110,25 +110,6 @@ } } -.frappe-control[data-fieldtype="Select"] .control-input { - position: relative; - - select { - /* for Firefox */ - -moz-appearance: none; - /* for Chrome */ - -webkit-appearance: none; - } - - .icon { - position: absolute; - top: 8px; - height: 15px; - right: 12px; - pointer-events: none; - } -} - /* duration control */ .duration-picker { diff --git a/frappe/public/scss/controls.scss b/frappe/public/scss/controls.scss index b73bbd2850..89612c6fdc 100644 --- a/frappe/public/scss/controls.scss +++ b/frappe/public/scss/controls.scss @@ -28,4 +28,26 @@ .frappe-control { font-size: var(--text-md); +} + +.frappe-control[data-fieldtype="Select"] .control-input { + position: relative; + + select { + /* for Firefox */ + -moz-appearance: none; + /* for Chrome */ + -webkit-appearance: none; + } + + .icon { + position: absolute; + top: 8px; + height: 15px; + right: 12px; + pointer-events: none; + use { + stroke: var(--text-muted); + } + } } \ No newline at end of file