From 75ca1fbfabb0d5d5d8ff72a00220ea21e25c3021 Mon Sep 17 00:00:00 2001 From: hanyugeon Date: Sat, 11 May 2024 00:36:33 +0900 Subject: [PATCH 1/3] =?UTF-8?q?chore:=20input[type=3D'date']=EC=97=90=20-w?= =?UTF-8?q?ebkit-appearance:=20none=20=EC=98=B5=EC=85=98=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/styles/global.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/styles/global.css b/src/styles/global.css index 16f6c152..c6faf1ee 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -34,6 +34,7 @@ /* DatePicker Calendar 스타일링 */ input[type='date']::-webkit-calendar-picker-indicator { + -webkit-appearance: none; background-image: none; position: absolute; left: 0; From e7949ecdfaf038e9622d85368751a52057cf1d8b Mon Sep 17 00:00:00 2001 From: hanyugeon Date: Sat, 11 May 2024 03:55:30 +0900 Subject: [PATCH 2/3] =?UTF-8?q?chore:=20=EC=BD=94=EB=93=9C=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/styles/global.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/styles/global.css b/src/styles/global.css index c6faf1ee..8c82aea3 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -34,7 +34,6 @@ /* DatePicker Calendar 스타일링 */ input[type='date']::-webkit-calendar-picker-indicator { - -webkit-appearance: none; background-image: none; position: absolute; left: 0; @@ -46,6 +45,10 @@ cursor: pointer; } + input[type='date'] { + -webkit-appearance: none; + } + /* Input type=number 버튼 제거 */ /* Chrome, Safari, Edge, Opera */ input::-webkit-inner-spin-button { From 77bb808edd18e2f0bc26d80fd57353d4e8b94ac4 Mon Sep 17 00:00:00 2001 From: hanyugeon Date: Sat, 11 May 2024 04:17:18 +0900 Subject: [PATCH 3/3] =?UTF-8?q?chore:=20=EC=BD=94=EB=93=9C=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/styles/global.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/styles/global.css b/src/styles/global.css index 8c82aea3..a98c4987 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -45,6 +45,10 @@ cursor: pointer; } + input::-webkit-date-and-time-value { + display: none; + } + input[type='date'] { -webkit-appearance: none; }