diff --git a/components/lib/iconfield/style/IconFieldStyle.js b/components/lib/iconfield/style/IconFieldStyle.js index 28229df59..c8e4ff19f 100644 --- a/components/lib/iconfield/style/IconFieldStyle.js +++ b/components/lib/iconfield/style/IconFieldStyle.js @@ -2,9 +2,10 @@ import BaseStyle from 'primevue/base/style'; const classes = { root: ({ props }) => [ + 'p-icon-field', { - 'p-input-icon-right': props.iconPosition === 'right', - 'p-input-icon-left': props.iconPosition === 'left' + 'p-icon-field-right': props.iconPosition === 'right', + 'p-icon-field-left': props.iconPosition === 'left' } ] }; diff --git a/components/lib/inputicon/BaseInputIcon.vue b/components/lib/inputicon/BaseInputIcon.vue index c1f054c89..c24479f1a 100644 --- a/components/lib/inputicon/BaseInputIcon.vue +++ b/components/lib/inputicon/BaseInputIcon.vue @@ -6,6 +6,9 @@ export default { name: 'BaseInputIcon', extends: BaseComponent, style: InputIconStyle, + props: { + class: null + }, provide() { return { $parentInstance: this diff --git a/components/lib/inputicon/InputIcon.vue b/components/lib/inputicon/InputIcon.vue index 9cdcdb204..6999e7d56 100644 --- a/components/lib/inputicon/InputIcon.vue +++ b/components/lib/inputicon/InputIcon.vue @@ -1,5 +1,7 @@ diff --git a/components/lib/inputicon/style/InputIconStyle.js b/components/lib/inputicon/style/InputIconStyle.js index ff8b4c563..4f6406e50 100644 --- a/components/lib/inputicon/style/InputIconStyle.js +++ b/components/lib/inputicon/style/InputIconStyle.js @@ -1 +1,10 @@ -export default {}; +import BaseStyle from 'primevue/base/style'; + +const classes = { + root: 'p-input-icon' +}; + +export default BaseStyle.extend({ + name: 'inputicon', + classes +}); diff --git a/public/themes/arya-blue/theme.css b/public/themes/arya-blue/theme.css index 8f0a5ca4b..3f63ba69e 100644 --- a/public/themes/arya-blue/theme.css +++ b/public/themes/arya-blue/theme.css @@ -1703,15 +1703,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1813,6 +1809,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.5rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.5rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2010,11 +2021,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2068,27 +2074,15 @@ color: #ef9a9a; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.5rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.5rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2rem; } diff --git a/public/themes/arya-green/theme.css b/public/themes/arya-green/theme.css index 6514cea4b..e0b244922 100644 --- a/public/themes/arya-green/theme.css +++ b/public/themes/arya-green/theme.css @@ -1703,15 +1703,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1813,6 +1809,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.5rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.5rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2010,11 +2021,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2068,27 +2074,15 @@ color: #ef9a9a; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.5rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.5rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2rem; } diff --git a/public/themes/arya-orange/theme.css b/public/themes/arya-orange/theme.css index 36adce569..6c31e3327 100644 --- a/public/themes/arya-orange/theme.css +++ b/public/themes/arya-orange/theme.css @@ -1703,15 +1703,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1813,6 +1809,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.5rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.5rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2010,11 +2021,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2068,27 +2074,15 @@ color: #ef9a9a; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.5rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.5rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2rem; } diff --git a/public/themes/arya-purple/theme.css b/public/themes/arya-purple/theme.css index 352d68648..b0ca027ce 100644 --- a/public/themes/arya-purple/theme.css +++ b/public/themes/arya-purple/theme.css @@ -1703,15 +1703,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1813,6 +1809,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.5rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.5rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2010,11 +2021,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2068,27 +2074,15 @@ color: #ef9a9a; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.5rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.5rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2rem; } diff --git a/public/themes/aura-dark-amber/theme.css b/public/themes/aura-dark-amber/theme.css index aa92d144d..aa7289ada 100644 --- a/public/themes/aura-dark-amber/theme.css +++ b/public/themes/aura-dark-amber/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 2.5rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #a1a1aa; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #a1a1aa; + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #fca5a5; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #a1a1aa; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #a1a1aa; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/aura-dark-blue/theme.css b/public/themes/aura-dark-blue/theme.css index 086ea96b3..31f554ce0 100644 --- a/public/themes/aura-dark-blue/theme.css +++ b/public/themes/aura-dark-blue/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 2.5rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #a1a1aa; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #a1a1aa; + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #fca5a5; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #a1a1aa; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #a1a1aa; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/aura-dark-cyan/theme.css b/public/themes/aura-dark-cyan/theme.css index 95b69fe1e..3264409cc 100644 --- a/public/themes/aura-dark-cyan/theme.css +++ b/public/themes/aura-dark-cyan/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 2.5rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #a1a1aa; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #a1a1aa; + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #fca5a5; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #a1a1aa; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #a1a1aa; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/aura-dark-green/theme.css b/public/themes/aura-dark-green/theme.css index aed617b4d..1cea64ccd 100644 --- a/public/themes/aura-dark-green/theme.css +++ b/public/themes/aura-dark-green/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 2.5rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #a1a1aa; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #a1a1aa; + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #fca5a5; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #a1a1aa; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #a1a1aa; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/aura-dark-indigo/theme.css b/public/themes/aura-dark-indigo/theme.css index caffcc9b2..e0f7de767 100644 --- a/public/themes/aura-dark-indigo/theme.css +++ b/public/themes/aura-dark-indigo/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 2.5rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #a1a1aa; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #a1a1aa; + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #fca5a5; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #a1a1aa; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #a1a1aa; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/aura-dark-lime/theme.css b/public/themes/aura-dark-lime/theme.css index e6272fea3..3cdc0f64d 100644 --- a/public/themes/aura-dark-lime/theme.css +++ b/public/themes/aura-dark-lime/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 2.5rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #a1a1aa; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #a1a1aa; + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #fca5a5; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #a1a1aa; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #a1a1aa; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/aura-dark-noir/theme.css b/public/themes/aura-dark-noir/theme.css index a9afcb527..2af4190ac 100644 --- a/public/themes/aura-dark-noir/theme.css +++ b/public/themes/aura-dark-noir/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 2.5rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #a1a1aa; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #a1a1aa; + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #fca5a5; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #a1a1aa; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #a1a1aa; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/aura-dark-pink/theme.css b/public/themes/aura-dark-pink/theme.css index 3156753c8..40d6fae57 100644 --- a/public/themes/aura-dark-pink/theme.css +++ b/public/themes/aura-dark-pink/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 2.5rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #a1a1aa; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #a1a1aa; + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #fca5a5; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #a1a1aa; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #a1a1aa; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/aura-dark-purple/theme.css b/public/themes/aura-dark-purple/theme.css index 6d846b42f..f7cbdc3b2 100644 --- a/public/themes/aura-dark-purple/theme.css +++ b/public/themes/aura-dark-purple/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 2.5rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #a1a1aa; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #a1a1aa; + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #fca5a5; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #a1a1aa; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #a1a1aa; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/aura-dark-teal/theme.css b/public/themes/aura-dark-teal/theme.css index 4fecfdd1d..2c315d7ed 100644 --- a/public/themes/aura-dark-teal/theme.css +++ b/public/themes/aura-dark-teal/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 2.5rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #a1a1aa; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #a1a1aa; + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #fca5a5; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #a1a1aa; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #a1a1aa; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/aura-light-amber/theme.css b/public/themes/aura-light-amber/theme.css index 6a3a8c0d9..556767aaa 100644 --- a/public/themes/aura-light-amber/theme.css +++ b/public/themes/aura-light-amber/theme.css @@ -1724,15 +1724,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1834,6 +1830,21 @@ width: 2.5rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #94a3b8; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #94a3b8; + } + .p-inputnumber { display: inline-flex; } @@ -2031,11 +2042,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2089,27 +2095,15 @@ color: #f87171; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #94a3b8; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #94a3b8; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/aura-light-blue/theme.css b/public/themes/aura-light-blue/theme.css index 8785ba3f2..669aeed97 100644 --- a/public/themes/aura-light-blue/theme.css +++ b/public/themes/aura-light-blue/theme.css @@ -1724,15 +1724,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1834,6 +1830,21 @@ width: 2.5rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #94a3b8; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #94a3b8; + } + .p-inputnumber { display: inline-flex; } @@ -2031,11 +2042,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2089,27 +2095,15 @@ color: #f87171; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #94a3b8; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #94a3b8; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/aura-light-cyan/theme.css b/public/themes/aura-light-cyan/theme.css index 432dc14da..95ad8088b 100644 --- a/public/themes/aura-light-cyan/theme.css +++ b/public/themes/aura-light-cyan/theme.css @@ -1724,15 +1724,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1834,6 +1830,21 @@ width: 2.5rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #94a3b8; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #94a3b8; + } + .p-inputnumber { display: inline-flex; } @@ -2031,11 +2042,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2089,27 +2095,15 @@ color: #f87171; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #94a3b8; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #94a3b8; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/aura-light-green/theme.css b/public/themes/aura-light-green/theme.css index dbda08fee..58572b86c 100644 --- a/public/themes/aura-light-green/theme.css +++ b/public/themes/aura-light-green/theme.css @@ -1724,15 +1724,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1834,6 +1830,21 @@ width: 2.5rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #94a3b8; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #94a3b8; + } + .p-inputnumber { display: inline-flex; } @@ -2031,11 +2042,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2089,27 +2095,15 @@ color: #f87171; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #94a3b8; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #94a3b8; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/aura-light-indigo/theme.css b/public/themes/aura-light-indigo/theme.css index fcf58e88f..08b558508 100644 --- a/public/themes/aura-light-indigo/theme.css +++ b/public/themes/aura-light-indigo/theme.css @@ -1724,15 +1724,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1834,6 +1830,21 @@ width: 2.5rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #94a3b8; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #94a3b8; + } + .p-inputnumber { display: inline-flex; } @@ -2031,11 +2042,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2089,27 +2095,15 @@ color: #f87171; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #94a3b8; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #94a3b8; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/aura-light-lime/theme.css b/public/themes/aura-light-lime/theme.css index ae43e1485..c2478074f 100644 --- a/public/themes/aura-light-lime/theme.css +++ b/public/themes/aura-light-lime/theme.css @@ -1724,15 +1724,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1834,6 +1830,21 @@ width: 2.5rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #94a3b8; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #94a3b8; + } + .p-inputnumber { display: inline-flex; } @@ -2031,11 +2042,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2089,27 +2095,15 @@ color: #f87171; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #94a3b8; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #94a3b8; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/aura-light-noir/theme.css b/public/themes/aura-light-noir/theme.css index 0ca37975b..f67f564ad 100644 --- a/public/themes/aura-light-noir/theme.css +++ b/public/themes/aura-light-noir/theme.css @@ -1728,15 +1728,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1838,6 +1834,21 @@ width: 2.5rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #94a3b8; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #94a3b8; + } + .p-inputnumber { display: inline-flex; } @@ -2035,11 +2046,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2093,27 +2099,15 @@ color: #f87171; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #94a3b8; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #94a3b8; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/aura-light-pink/theme.css b/public/themes/aura-light-pink/theme.css index ea9b5419d..97bcf3db5 100644 --- a/public/themes/aura-light-pink/theme.css +++ b/public/themes/aura-light-pink/theme.css @@ -1724,15 +1724,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1834,6 +1830,21 @@ width: 2.5rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #94a3b8; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #94a3b8; + } + .p-inputnumber { display: inline-flex; } @@ -2031,11 +2042,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2089,27 +2095,15 @@ color: #f87171; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #94a3b8; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #94a3b8; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/aura-light-purple/theme.css b/public/themes/aura-light-purple/theme.css index d58694fb9..76f4aa3f8 100644 --- a/public/themes/aura-light-purple/theme.css +++ b/public/themes/aura-light-purple/theme.css @@ -1724,15 +1724,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1834,6 +1830,21 @@ width: 2.5rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #94a3b8; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #94a3b8; + } + .p-inputnumber { display: inline-flex; } @@ -2031,11 +2042,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2089,27 +2095,15 @@ color: #f87171; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #94a3b8; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #94a3b8; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/aura-light-teal/theme.css b/public/themes/aura-light-teal/theme.css index 56fe4023c..b5fe7674b 100644 --- a/public/themes/aura-light-teal/theme.css +++ b/public/themes/aura-light-teal/theme.css @@ -1724,15 +1724,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1834,6 +1830,21 @@ width: 2.5rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #94a3b8; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #94a3b8; + } + .p-inputnumber { display: inline-flex; } @@ -2031,11 +2042,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2089,27 +2095,15 @@ color: #f87171; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #94a3b8; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #94a3b8; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/bootstrap4-dark-blue/theme.css b/public/themes/bootstrap4-dark-blue/theme.css index 398cc5d8e..4ea310da1 100644 --- a/public/themes/bootstrap4-dark-blue/theme.css +++ b/public/themes/bootstrap4-dark-blue/theme.css @@ -1707,15 +1707,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1817,6 +1813,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2014,11 +2025,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2072,27 +2078,15 @@ color: #f19ea6; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/bootstrap4-dark-purple/theme.css b/public/themes/bootstrap4-dark-purple/theme.css index cd73a2c13..e13d7e542 100644 --- a/public/themes/bootstrap4-dark-purple/theme.css +++ b/public/themes/bootstrap4-dark-purple/theme.css @@ -1707,15 +1707,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1817,6 +1813,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2014,11 +2025,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2072,27 +2078,15 @@ color: #f19ea6; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/bootstrap4-light-blue/theme.css b/public/themes/bootstrap4-light-blue/theme.css index 2840ca966..3ec88d4e6 100644 --- a/public/themes/bootstrap4-light-blue/theme.css +++ b/public/themes/bootstrap4-light-blue/theme.css @@ -1707,15 +1707,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1817,6 +1813,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #495057; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #495057; + } + .p-inputnumber { display: inline-flex; } @@ -2014,11 +2025,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2072,27 +2078,15 @@ color: #dc3545; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #495057; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #495057; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/bootstrap4-light-purple/theme.css b/public/themes/bootstrap4-light-purple/theme.css index ec3c523d0..7114a96a6 100644 --- a/public/themes/bootstrap4-light-purple/theme.css +++ b/public/themes/bootstrap4-light-purple/theme.css @@ -1707,15 +1707,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1817,6 +1813,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #495057; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #495057; + } + .p-inputnumber { display: inline-flex; } @@ -2014,11 +2025,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2072,27 +2078,15 @@ color: #dc3545; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #495057; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #495057; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/fluent-light/theme.css b/public/themes/fluent-light/theme.css index 1b62302bb..99e0adf35 100644 --- a/public/themes/fluent-light/theme.css +++ b/public/themes/fluent-light/theme.css @@ -1703,15 +1703,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1813,6 +1809,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.5rem; + color: #605e5c; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.5rem; + color: #605e5c; + } + .p-inputnumber { display: inline-flex; } @@ -2010,11 +2021,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2068,27 +2074,15 @@ color: #a4252c; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.5rem; - color: #605e5c; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.5rem; - color: #605e5c; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2rem; } diff --git a/public/themes/lara-dark-amber/theme.css b/public/themes/lara-dark-amber/theme.css index 9492c74cf..7187813af 100644 --- a/public/themes/lara-dark-amber/theme.css +++ b/public/themes/lara-dark-amber/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #fca5a5; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/lara-dark-blue/theme.css b/public/themes/lara-dark-blue/theme.css index c5943d685..293176036 100644 --- a/public/themes/lara-dark-blue/theme.css +++ b/public/themes/lara-dark-blue/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #fca5a5; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/lara-dark-cyan/theme.css b/public/themes/lara-dark-cyan/theme.css index 4b1ce43e2..2bc1ae5da 100644 --- a/public/themes/lara-dark-cyan/theme.css +++ b/public/themes/lara-dark-cyan/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #fca5a5; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/lara-dark-green/theme.css b/public/themes/lara-dark-green/theme.css index 5d4281165..57deb95e7 100644 --- a/public/themes/lara-dark-green/theme.css +++ b/public/themes/lara-dark-green/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #fca5a5; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/lara-dark-indigo/theme.css b/public/themes/lara-dark-indigo/theme.css index 7cc5a2c1b..3c4d1b619 100644 --- a/public/themes/lara-dark-indigo/theme.css +++ b/public/themes/lara-dark-indigo/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #fca5a5; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/lara-dark-pink/theme.css b/public/themes/lara-dark-pink/theme.css index d5080422e..0b912c5b3 100644 --- a/public/themes/lara-dark-pink/theme.css +++ b/public/themes/lara-dark-pink/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #fca5a5; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/lara-dark-purple/theme.css b/public/themes/lara-dark-purple/theme.css index 7c4ab78cf..d69535b20 100644 --- a/public/themes/lara-dark-purple/theme.css +++ b/public/themes/lara-dark-purple/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #fca5a5; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/lara-dark-teal/theme.css b/public/themes/lara-dark-teal/theme.css index 461c30b19..52233d7c7 100644 --- a/public/themes/lara-dark-teal/theme.css +++ b/public/themes/lara-dark-teal/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #fca5a5; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/lara-light-amber/theme.css b/public/themes/lara-light-amber/theme.css index 9b7dddc6b..2055063f6 100644 --- a/public/themes/lara-light-amber/theme.css +++ b/public/themes/lara-light-amber/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #6b7280; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #6b7280; + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #e24c4c; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #6b7280; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #6b7280; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/lara-light-blue/theme.css b/public/themes/lara-light-blue/theme.css index 13fb8b475..639009e78 100644 --- a/public/themes/lara-light-blue/theme.css +++ b/public/themes/lara-light-blue/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #6b7280; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #6b7280; + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #e24c4c; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #6b7280; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #6b7280; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/lara-light-cyan/theme.css b/public/themes/lara-light-cyan/theme.css index 5c5fc1a32..040a8422e 100644 --- a/public/themes/lara-light-cyan/theme.css +++ b/public/themes/lara-light-cyan/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #6b7280; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #6b7280; + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #e24c4c; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #6b7280; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #6b7280; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/lara-light-green/theme.css b/public/themes/lara-light-green/theme.css index ef39fd0bf..ff1d7075c 100644 --- a/public/themes/lara-light-green/theme.css +++ b/public/themes/lara-light-green/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #6b7280; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #6b7280; + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #e24c4c; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #6b7280; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #6b7280; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/lara-light-indigo/theme.css b/public/themes/lara-light-indigo/theme.css index f7a0e6eb9..cf6ec3502 100644 --- a/public/themes/lara-light-indigo/theme.css +++ b/public/themes/lara-light-indigo/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #6b7280; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #6b7280; + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #e24c4c; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #6b7280; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #6b7280; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/lara-light-pink/theme.css b/public/themes/lara-light-pink/theme.css index 7f4b0ea2a..c0288c5bd 100644 --- a/public/themes/lara-light-pink/theme.css +++ b/public/themes/lara-light-pink/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #6b7280; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #6b7280; + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #e24c4c; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #6b7280; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #6b7280; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/lara-light-purple/theme.css b/public/themes/lara-light-purple/theme.css index 325b46997..f16f0a738 100644 --- a/public/themes/lara-light-purple/theme.css +++ b/public/themes/lara-light-purple/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #6b7280; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #6b7280; + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #e24c4c; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #6b7280; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #6b7280; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/lara-light-teal/theme.css b/public/themes/lara-light-teal/theme.css index 8eed34371..d62dfd03c 100644 --- a/public/themes/lara-light-teal/theme.css +++ b/public/themes/lara-light-teal/theme.css @@ -1722,15 +1722,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1832,6 +1828,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #6b7280; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #6b7280; + } + .p-inputnumber { display: inline-flex; } @@ -2029,11 +2040,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2087,27 +2093,15 @@ color: #e24c4c; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #6b7280; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #6b7280; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/luna-amber/theme.css b/public/themes/luna-amber/theme.css index 0d1d67cce..ab88108d6 100644 --- a/public/themes/luna-amber/theme.css +++ b/public/themes/luna-amber/theme.css @@ -1707,15 +1707,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1817,6 +1813,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.429rem; + color: #888888; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.429rem; + color: #888888; + } + .p-inputnumber { display: inline-flex; } @@ -2014,11 +2025,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2072,27 +2078,15 @@ color: #e57373; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.429rem; - color: #888888; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 1.858rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 1.858rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.429rem; - color: #888888; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 1.858rem; } diff --git a/public/themes/luna-blue/theme.css b/public/themes/luna-blue/theme.css index 639322481..4bf7afbd2 100644 --- a/public/themes/luna-blue/theme.css +++ b/public/themes/luna-blue/theme.css @@ -1707,15 +1707,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1817,6 +1813,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.429rem; + color: #888888; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.429rem; + color: #888888; + } + .p-inputnumber { display: inline-flex; } @@ -2014,11 +2025,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2072,27 +2078,15 @@ color: #e57373; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.429rem; - color: #888888; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 1.858rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 1.858rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.429rem; - color: #888888; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 1.858rem; } diff --git a/public/themes/luna-green/theme.css b/public/themes/luna-green/theme.css index 1a3d14002..816bab3ff 100644 --- a/public/themes/luna-green/theme.css +++ b/public/themes/luna-green/theme.css @@ -1707,15 +1707,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1817,6 +1813,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.429rem; + color: #888888; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.429rem; + color: #888888; + } + .p-inputnumber { display: inline-flex; } @@ -2014,11 +2025,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2072,27 +2078,15 @@ color: #e57373; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.429rem; - color: #888888; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 1.858rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 1.858rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.429rem; - color: #888888; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 1.858rem; } diff --git a/public/themes/luna-pink/theme.css b/public/themes/luna-pink/theme.css index ed1228735..c773446d1 100644 --- a/public/themes/luna-pink/theme.css +++ b/public/themes/luna-pink/theme.css @@ -1707,15 +1707,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1817,6 +1813,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.429rem; + color: #888888; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.429rem; + color: #888888; + } + .p-inputnumber { display: inline-flex; } @@ -2014,11 +2025,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2072,27 +2078,15 @@ color: #e57373; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.429rem; - color: #888888; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 1.858rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 1.858rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.429rem; - color: #888888; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 1.858rem; } diff --git a/public/themes/md-dark-deeppurple/theme.css b/public/themes/md-dark-deeppurple/theme.css index b2d556d07..d9f3d3118 100644 --- a/public/themes/md-dark-deeppurple/theme.css +++ b/public/themes/md-dark-deeppurple/theme.css @@ -1728,15 +1728,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1838,6 +1834,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 1rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 1rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2035,11 +2046,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2093,27 +2099,15 @@ color: #f44435; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 1rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 3rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 3rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 1rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 3rem; } diff --git a/public/themes/md-dark-indigo/theme.css b/public/themes/md-dark-indigo/theme.css index 397b7b744..b27c24a29 100644 --- a/public/themes/md-dark-indigo/theme.css +++ b/public/themes/md-dark-indigo/theme.css @@ -1728,15 +1728,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1838,6 +1834,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 1rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 1rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2035,11 +2046,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2093,27 +2099,15 @@ color: #f44435; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 1rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 3rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 3rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 1rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 3rem; } diff --git a/public/themes/md-light-deeppurple/theme.css b/public/themes/md-light-deeppurple/theme.css index b96afda9f..df96f7d99 100644 --- a/public/themes/md-light-deeppurple/theme.css +++ b/public/themes/md-light-deeppurple/theme.css @@ -1727,15 +1727,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1837,6 +1833,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 1rem; + color: rgba(0, 0, 0, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 1rem; + color: rgba(0, 0, 0, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2034,11 +2045,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2092,27 +2098,15 @@ color: #B00020; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 1rem; - color: rgba(0, 0, 0, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 3rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 3rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 1rem; - color: rgba(0, 0, 0, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 3rem; } diff --git a/public/themes/md-light-indigo/theme.css b/public/themes/md-light-indigo/theme.css index 0ddfb41aa..e02f91d06 100644 --- a/public/themes/md-light-indigo/theme.css +++ b/public/themes/md-light-indigo/theme.css @@ -1727,15 +1727,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1837,6 +1833,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 1rem; + color: rgba(0, 0, 0, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 1rem; + color: rgba(0, 0, 0, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2034,11 +2045,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2092,27 +2098,15 @@ color: #B00020; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 1rem; - color: rgba(0, 0, 0, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 3rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 3rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 1rem; - color: rgba(0, 0, 0, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 3rem; } diff --git a/public/themes/mdc-dark-deeppurple/theme.css b/public/themes/mdc-dark-deeppurple/theme.css index 3a71cb007..72037d67d 100644 --- a/public/themes/mdc-dark-deeppurple/theme.css +++ b/public/themes/mdc-dark-deeppurple/theme.css @@ -1728,15 +1728,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1838,6 +1834,21 @@ width: 2.25rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2035,11 +2046,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2093,27 +2099,15 @@ color: #f44435; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/mdc-dark-indigo/theme.css b/public/themes/mdc-dark-indigo/theme.css index 0869f61e9..8d2b25ff5 100644 --- a/public/themes/mdc-dark-indigo/theme.css +++ b/public/themes/mdc-dark-indigo/theme.css @@ -1728,15 +1728,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1838,6 +1834,21 @@ width: 2.25rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2035,11 +2046,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2093,27 +2099,15 @@ color: #f44435; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/mdc-light-deeppurple/theme.css b/public/themes/mdc-light-deeppurple/theme.css index 7df4cb59c..900df1ac5 100644 --- a/public/themes/mdc-light-deeppurple/theme.css +++ b/public/themes/mdc-light-deeppurple/theme.css @@ -1727,15 +1727,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1837,6 +1833,21 @@ width: 2.25rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: rgba(0, 0, 0, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: rgba(0, 0, 0, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2034,11 +2045,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2092,27 +2098,15 @@ color: #B00020; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: rgba(0, 0, 0, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: rgba(0, 0, 0, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/mdc-light-indigo/theme.css b/public/themes/mdc-light-indigo/theme.css index af3d3df79..d21050d87 100644 --- a/public/themes/mdc-light-indigo/theme.css +++ b/public/themes/mdc-light-indigo/theme.css @@ -1727,15 +1727,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1837,6 +1833,21 @@ width: 2.25rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: rgba(0, 0, 0, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: rgba(0, 0, 0, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2034,11 +2045,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2092,27 +2098,15 @@ color: #B00020; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: rgba(0, 0, 0, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: rgba(0, 0, 0, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/mira/theme.css b/public/themes/mira/theme.css index c68d53041..832e72f94 100644 --- a/public/themes/mira/theme.css +++ b/public/themes/mira/theme.css @@ -1731,15 +1731,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1841,6 +1837,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.5rem; + color: #81A1C1; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.5rem; + color: #81A1C1; + } + .p-inputnumber { display: inline-flex; } @@ -2038,11 +2049,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2096,27 +2102,15 @@ color: #BF616A; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.5rem; - color: #81A1C1; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.5rem; - color: #81A1C1; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2rem; } diff --git a/public/themes/nano/theme.css b/public/themes/nano/theme.css index 02ea9d75c..11c17ba0f 100644 --- a/public/themes/nano/theme.css +++ b/public/themes/nano/theme.css @@ -1703,15 +1703,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1813,6 +1809,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.25rem; + color: #697077; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.25rem; + color: #697077; + } + .p-inputnumber { display: inline-flex; } @@ -2010,11 +2021,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2068,27 +2074,15 @@ color: #d8222f; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.25rem; - color: #697077; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 1.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 1.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.25rem; - color: #697077; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 1.5rem; } diff --git a/public/themes/nova-accent/theme.css b/public/themes/nova-accent/theme.css index 106450b23..f5260217d 100644 --- a/public/themes/nova-accent/theme.css +++ b/public/themes/nova-accent/theme.css @@ -1703,15 +1703,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1813,6 +1809,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.429rem; + color: #848484; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.429rem; + color: #848484; + } + .p-inputnumber { display: inline-flex; } @@ -2010,11 +2021,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2068,27 +2074,15 @@ color: #a80000; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.429rem; - color: #848484; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 1.858rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 1.858rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.429rem; - color: #848484; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 1.858rem; } diff --git a/public/themes/nova-alt/theme.css b/public/themes/nova-alt/theme.css index 40819cd2d..c7a5e73ef 100644 --- a/public/themes/nova-alt/theme.css +++ b/public/themes/nova-alt/theme.css @@ -1707,15 +1707,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1817,6 +1813,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.429rem; + color: #848484; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.429rem; + color: #848484; + } + .p-inputnumber { display: inline-flex; } @@ -2014,11 +2025,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2072,27 +2078,15 @@ color: #a80000; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.429rem; - color: #848484; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 1.858rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 1.858rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.429rem; - color: #848484; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 1.858rem; } diff --git a/public/themes/nova-vue/theme.css b/public/themes/nova-vue/theme.css index ad9092cb1..351926e01 100644 --- a/public/themes/nova-vue/theme.css +++ b/public/themes/nova-vue/theme.css @@ -1707,15 +1707,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1817,6 +1813,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.429rem; + color: #848484; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.429rem; + color: #848484; + } + .p-inputnumber { display: inline-flex; } @@ -2014,11 +2025,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2072,27 +2078,15 @@ color: #a80000; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.429rem; - color: #848484; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 1.858rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 1.858rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.429rem; - color: #848484; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 1.858rem; } diff --git a/public/themes/nova/theme.css b/public/themes/nova/theme.css index 1b3b04cd1..949b5954c 100644 --- a/public/themes/nova/theme.css +++ b/public/themes/nova/theme.css @@ -1707,15 +1707,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1817,6 +1813,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.429rem; + color: #848484; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.429rem; + color: #848484; + } + .p-inputnumber { display: inline-flex; } @@ -2014,11 +2025,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2072,27 +2078,15 @@ color: #a80000; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.429rem; - color: #848484; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 1.858rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 1.858rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.429rem; - color: #848484; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 1.858rem; } diff --git a/public/themes/rhea/theme.css b/public/themes/rhea/theme.css index 661d17af8..5f6a5fa03 100644 --- a/public/themes/rhea/theme.css +++ b/public/themes/rhea/theme.css @@ -1703,15 +1703,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1813,6 +1809,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.429rem; + color: #a6a6a6; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.429rem; + color: #a6a6a6; + } + .p-inputnumber { display: inline-flex; } @@ -2010,11 +2021,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2068,27 +2074,15 @@ color: #e7a3a3; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.429rem; - color: #a6a6a6; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 1.858rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 1.858rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.429rem; - color: #a6a6a6; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 1.858rem; } diff --git a/public/themes/saga-blue/theme.css b/public/themes/saga-blue/theme.css index a27ed1978..d65259151 100644 --- a/public/themes/saga-blue/theme.css +++ b/public/themes/saga-blue/theme.css @@ -1703,15 +1703,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1813,6 +1809,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.5rem; + color: #6c757d; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.5rem; + color: #6c757d; + } + .p-inputnumber { display: inline-flex; } @@ -2010,11 +2021,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2068,27 +2074,15 @@ color: #f44336; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.5rem; - color: #6c757d; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.5rem; - color: #6c757d; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2rem; } diff --git a/public/themes/saga-green/theme.css b/public/themes/saga-green/theme.css index 655374e58..e43846d50 100644 --- a/public/themes/saga-green/theme.css +++ b/public/themes/saga-green/theme.css @@ -1703,15 +1703,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1813,6 +1809,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.5rem; + color: #6c757d; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.5rem; + color: #6c757d; + } + .p-inputnumber { display: inline-flex; } @@ -2010,11 +2021,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2068,27 +2074,15 @@ color: #f44336; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.5rem; - color: #6c757d; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.5rem; - color: #6c757d; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2rem; } diff --git a/public/themes/saga-orange/theme.css b/public/themes/saga-orange/theme.css index 20f92ee81..ae06bad3d 100644 --- a/public/themes/saga-orange/theme.css +++ b/public/themes/saga-orange/theme.css @@ -1703,15 +1703,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1813,6 +1809,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.5rem; + color: #6c757d; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.5rem; + color: #6c757d; + } + .p-inputnumber { display: inline-flex; } @@ -2010,11 +2021,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2068,27 +2074,15 @@ color: #f44336; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.5rem; - color: #6c757d; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.5rem; - color: #6c757d; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2rem; } diff --git a/public/themes/saga-purple/theme.css b/public/themes/saga-purple/theme.css index decd9b404..e89fae623 100644 --- a/public/themes/saga-purple/theme.css +++ b/public/themes/saga-purple/theme.css @@ -1703,15 +1703,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1813,6 +1809,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.5rem; + color: #6c757d; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.5rem; + color: #6c757d; + } + .p-inputnumber { display: inline-flex; } @@ -2010,11 +2021,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2068,27 +2074,15 @@ color: #f44336; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.5rem; - color: #6c757d; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.5rem; - color: #6c757d; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2rem; } diff --git a/public/themes/soho-dark/theme.css b/public/themes/soho-dark/theme.css index 3959a7f8f..97fa6d055 100644 --- a/public/themes/soho-dark/theme.css +++ b/public/themes/soho-dark/theme.css @@ -1727,15 +1727,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1837,6 +1833,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2034,11 +2045,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2092,27 +2098,15 @@ color: #ff9a9a; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/soho-light/theme.css b/public/themes/soho-light/theme.css index 9058358e8..80a0dcb81 100644 --- a/public/themes/soho-light/theme.css +++ b/public/themes/soho-light/theme.css @@ -1727,15 +1727,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1837,6 +1833,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #708da9; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #708da9; + } + .p-inputnumber { display: inline-flex; } @@ -2034,11 +2045,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2092,27 +2098,15 @@ color: #ff6767; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #708da9; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #708da9; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/tailwind-light/theme.css b/public/themes/tailwind-light/theme.css index 8d61a22a1..3fb949604 100644 --- a/public/themes/tailwind-light/theme.css +++ b/public/themes/tailwind-light/theme.css @@ -1738,15 +1738,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1848,6 +1844,21 @@ width: 3rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #71717A; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #71717A; + } + .p-inputnumber { display: inline-flex; } @@ -2045,11 +2056,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2103,27 +2109,15 @@ color: #f0a9a7; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #71717A; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #71717A; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/vela-blue/theme.css b/public/themes/vela-blue/theme.css index eee80d7b5..9383de5cc 100644 --- a/public/themes/vela-blue/theme.css +++ b/public/themes/vela-blue/theme.css @@ -1703,15 +1703,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1813,6 +1809,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.5rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.5rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2010,11 +2021,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2068,27 +2074,15 @@ color: #ef9a9a; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.5rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.5rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2rem; } diff --git a/public/themes/vela-green/theme.css b/public/themes/vela-green/theme.css index ba1e67469..a9584dfaa 100644 --- a/public/themes/vela-green/theme.css +++ b/public/themes/vela-green/theme.css @@ -1703,15 +1703,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1813,6 +1809,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.5rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.5rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2010,11 +2021,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2068,27 +2074,15 @@ color: #ef9a9a; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.5rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.5rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2rem; } diff --git a/public/themes/vela-orange/theme.css b/public/themes/vela-orange/theme.css index b44f95c05..60afe377d 100644 --- a/public/themes/vela-orange/theme.css +++ b/public/themes/vela-orange/theme.css @@ -1703,15 +1703,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1813,6 +1809,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.5rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.5rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2010,11 +2021,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2068,27 +2074,15 @@ color: #ef9a9a; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.5rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.5rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2rem; } diff --git a/public/themes/vela-purple/theme.css b/public/themes/vela-purple/theme.css index 8ba2e542a..04ad75919 100644 --- a/public/themes/vela-purple/theme.css +++ b/public/themes/vela-purple/theme.css @@ -1703,15 +1703,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1813,6 +1809,21 @@ width: 2.357rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.5rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.5rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2010,11 +2021,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2068,27 +2074,15 @@ color: #ef9a9a; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.5rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.5rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2rem; } diff --git a/public/themes/viva-dark/theme.css b/public/themes/viva-dark/theme.css index 0b221c5d2..7df969d65 100644 --- a/public/themes/viva-dark/theme.css +++ b/public/themes/viva-dark/theme.css @@ -1735,15 +1735,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1845,6 +1841,21 @@ width: 2.857rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: rgba(255, 255, 255, 0.6); + } + .p-inputnumber { display: inline-flex; } @@ -2042,11 +2053,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2100,27 +2106,15 @@ color: #f78c79; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: rgba(255, 255, 255, 0.6); - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; } diff --git a/public/themes/viva-light/theme.css b/public/themes/viva-light/theme.css index f80639764..b64d2fcca 100644 --- a/public/themes/viva-light/theme.css +++ b/public/themes/viva-light/theme.css @@ -1735,15 +1735,11 @@ transition-timing-function: ease; } - .p-input-icon-left, -.p-input-icon-right { + .p-icon-field { position: relative; } - .p-input-icon-left > i, -.p-input-icon-left > svg, -.p-input-icon-right > i, -.p-input-icon-right > svg { + .p-icon-field > .p-input-icon { position: absolute; top: 50%; margin-top: -0.5rem; @@ -1845,6 +1841,21 @@ width: 2.857rem; } + .p-fluid .p-icon-field-left, +.p-fluid .p-icon-field-right { + width: 100%; + } + + .p-icon-field-left > .p-input-icon:first-of-type { + left: 0.75rem; + color: #898989; + } + + .p-icon-field-right > .p-input-icon:last-of-type { + right: 0.75rem; + color: #898989; + } + .p-inputnumber { display: inline-flex; } @@ -2042,11 +2053,6 @@ width: 100%; } - .p-fluid .p-input-icon-left, -.p-fluid .p-input-icon-right { - width: 100%; - } - .p-inputtext { font-family: var(--font-family); font-feature-settings: var(--font-feature-settings, normal); @@ -2100,27 +2106,15 @@ color: #f88c79; } - .p-input-icon-left > svg:first-of-type, -.p-input-icon-left > i:first-of-type { - left: 0.75rem; - color: #898989; - } - - .p-input-icon-left > .p-inputtext { + .p-icon-field-left > .p-inputtext { padding-left: 2.5rem; } - .p-input-icon-left.p-float-label > label { + .p-icon-field-left.p-float-label > label { left: 2.5rem; } - .p-input-icon-right > svg:last-of-type, -.p-input-icon-right > i:last-of-type { - right: 0.75rem; - color: #898989; - } - - .p-input-icon-right > .p-inputtext { + .p-icon-field-right > .p-inputtext { padding-right: 2.5rem; }