From ed914db0e1de8731ccc73bbd66ae282930961bcb Mon Sep 17 00:00:00 2001 From: Abdi Tolessa <41271840+AbdiTolesa@users.noreply.github.com> Date: Thu, 30 May 2024 11:17:11 +0300 Subject: [PATCH 1/6] Improve placeholder text style --- css/_single_theme.css.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/css/_single_theme.css.php b/css/_single_theme.css.php index a8cc0c210f..b9aa3ceed2 100644 --- a/css/_single_theme.css.php +++ b/css/_single_theme.css.php @@ -181,10 +181,14 @@ . input::placeholder, . textarea::placeholder{ color: ; + font-size: 14px; + font-size: var(--field-font-size); } . input::-webkit-input-placeholder, . textarea::-webkit-input-placeholder{ color: ; + font-size: 14px; + font-size: var(--field-font-size); } . input::-moz-placeholder, . textarea::-moz-placeholder{ From ca1fe464a1daba72101e8528ce433d74c930944c Mon Sep 17 00:00:00 2001 From: Abdi Tolessa <41271840+AbdiTolesa@users.noreply.github.com> Date: Thu, 30 May 2024 12:01:21 +0300 Subject: [PATCH 2/6] Add style to more places --- css/_single_theme.css.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/css/_single_theme.css.php b/css/_single_theme.css.php index b9aa3ceed2..1d13b6dc9d 100644 --- a/css/_single_theme.css.php +++ b/css/_single_theme.css.php @@ -194,10 +194,14 @@ . textarea::-moz-placeholder{ color: ; opacity: 1; + font-size: 14px; + font-size: var(--field-font-size); } . input:-ms-input-placeholder, textarea:-ms-input-placeholder{ color: ; + font-size: 14px; + font-size: var(--field-font-size); } . .frm_default, From fc5f41659b0ea6cd0c12cbd1546d198ceff70aea Mon Sep 17 00:00:00 2001 From: Abdi Tolessa <41271840+AbdiTolesa@users.noreply.github.com> Date: Mon, 3 Jun 2024 10:54:57 +0300 Subject: [PATCH 3/6] Remove adding the font styles to old selectors --- css/_single_theme.css.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/css/_single_theme.css.php b/css/_single_theme.css.php index 1d13b6dc9d..6813783e4f 100644 --- a/css/_single_theme.css.php +++ b/css/_single_theme.css.php @@ -187,21 +187,14 @@ . input::-webkit-input-placeholder, . textarea::-webkit-input-placeholder{ color: ; - font-size: 14px; - font-size: var(--field-font-size); } . input::-moz-placeholder, . textarea::-moz-placeholder{ - color: ; opacity: 1; - font-size: 14px; - font-size: var(--field-font-size); } . input:-ms-input-placeholder, textarea:-ms-input-placeholder{ color: ; - font-size: 14px; - font-size: var(--field-font-size); } . .frm_default, From fa966b7c78426b8576ef1f3ab342a96f499d352e Mon Sep 17 00:00:00 2001 From: Abdi Tolessa <41271840+AbdiTolesa@users.noreply.github.com> Date: Tue, 4 Jun 2024 15:01:48 +0300 Subject: [PATCH 4/6] Move style to custom_theme.css --- css/_single_theme.css.php | 2 -- css/custom_theme.css.php | 6 ++++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/css/_single_theme.css.php b/css/_single_theme.css.php index 6813783e4f..1aaabd7c60 100644 --- a/css/_single_theme.css.php +++ b/css/_single_theme.css.php @@ -181,8 +181,6 @@ . input::placeholder, . textarea::placeholder{ color: ; - font-size: 14px; - font-size: var(--field-font-size); } . input::-webkit-input-placeholder, . textarea::-webkit-input-placeholder{ diff --git a/css/custom_theme.css.php b/css/custom_theme.css.php index def50ac535..551711ac5c 100644 --- a/css/custom_theme.css.php +++ b/css/custom_theme.css.php @@ -502,6 +502,12 @@ transition: opacity 0.3s ease-in; } +.with_frm_style input::placeholder, +.with_frm_style textarea::placeholder { + font-size: ; + font-size: var(--field-font-size); +} + .with_frm_style .frm_inside_container > label { transition: all 0.3s ease-in; From ead4cf827649797159bf99a3faf4ebf35f04101c Mon Sep 17 00:00:00 2001 From: Abdi Tolessa <41271840+AbdiTolesa@users.noreply.github.com> Date: Thu, 13 Jun 2024 11:30:44 +0300 Subject: [PATCH 5/6] Move new selectors up --- css/custom_theme.css.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/css/custom_theme.css.php b/css/custom_theme.css.php index 551711ac5c..0c1ae42701 100644 --- a/css/custom_theme.css.php +++ b/css/custom_theme.css.php @@ -484,6 +484,12 @@ } /* These do not work if they are combined */ +.with_frm_style input::placeholder, +.with_frm_style textarea::placeholder { + font-size: ; + font-size: var(--field-font-size); +} + .with_frm_style .frm_inside_container > input::-moz-placeholder, .with_frm_style .frm_inside_container > textarea::-moz-placeholder { opacity: 0 !important; @@ -502,12 +508,6 @@ transition: opacity 0.3s ease-in; } -.with_frm_style input::placeholder, -.with_frm_style textarea::placeholder { - font-size: ; - font-size: var(--field-font-size); -} - .with_frm_style .frm_inside_container > label { transition: all 0.3s ease-in; From dd0c3eed96e975e33f5f101209292e4113247b9e Mon Sep 17 00:00:00 2001 From: Abdi Tolessa <41271840+AbdiTolesa@users.noreply.github.com> Date: Thu, 13 Jun 2024 17:51:03 +0300 Subject: [PATCH 6/6] A few more updates --- css/custom_theme.css.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/css/custom_theme.css.php b/css/custom_theme.css.php index 952cadff10..ed9177040d 100644 --- a/css/custom_theme.css.php +++ b/css/custom_theme.css.php @@ -486,8 +486,7 @@ /* These do not work if they are combined */ .with_frm_style input::placeholder, .with_frm_style textarea::placeholder { - font-size: ; - font-size: var(--field-font-size); + font-size: var(--field-font-size); } .with_frm_style .frm_inside_container > input::-moz-placeholder,