From da1ee8a9c282a1eb84577462acae86179471996d Mon Sep 17 00:00:00 2001 From: "saito.k" Date: Fri, 8 Sep 2023 05:01:24 +0000 Subject: [PATCH] =?UTF-8?q?Merged=20PR=20391:=20[Sp17=E7=9D=80=E6=89=8B]?= =?UTF-8?q?=E3=82=BB=E3=83=AC=E3=82=AF=E3=83=88=E3=83=9C=E3=83=83=E3=82=AF?= =?UTF-8?q?=E3=82=B9=E3=81=A7=E9=95=B7=E3=81=84=E6=96=87=E5=AD=97=E5=88=97?= =?UTF-8?q?=E3=81=8C=E5=85=A5=E3=81=A3=E3=81=A6=E3=82=82=E5=95=8F=E9=A1=8C?= =?UTF-8?q?=E3=81=AA=E3=81=84=E3=82=88=E3=81=86=E3=81=AB=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 概要 [Task2550: [Sp17着手]セレクトボックスで長い文字列が入っても問題ないようにする](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/2550) - タイトルの通り ## レビューポイント - 特になし ## UIの変更 - https://ndstokyo.sharepoint.com/:f:/r/sites/Piranha/Shared%20Documents/General/OMDS/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88/Task2550?csf=1&web=1&e=EcQEIB ## 動作確認状況 - ローカルで確認 ## 補足 - 相談、参考資料などがあれば --- dictation_client/src/pages/SignupPage/signupInput.tsx | 2 +- dictation_client/src/styles/app.module.scss | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/dictation_client/src/pages/SignupPage/signupInput.tsx b/dictation_client/src/pages/SignupPage/signupInput.tsx index fd9bef5..296d559 100644 --- a/dictation_client/src/pages/SignupPage/signupInput.tsx +++ b/dictation_client/src/pages/SignupPage/signupInput.tsx @@ -144,7 +144,7 @@ const SignupInput: React.FC = (): JSX.Element => { {t(getTranslationID("signupPage.text.pageExplanation"))}

-
+
diff --git a/dictation_client/src/styles/app.module.scss b/dictation_client/src/styles/app.module.scss index 995e34a..e42918c 100644 --- a/dictation_client/src/styles/app.module.scss +++ b/dictation_client/src/styles/app.module.scss @@ -555,6 +555,9 @@ h3 + .brCrumb .tlIcon { border-top: 2px #282828 solid; background: #fafafa; } +.form select { + text-overflow: ellipsis; +} .form select:invalid { color: #999999; } @@ -689,6 +692,7 @@ h3 + .brCrumb .tlIcon { padding: 0.6rem 0.6rem; background: #f0f0f0; box-sizing: border-box; + word-wrap: break-word; } .formSubmit { min-width: 15rem; @@ -2288,10 +2292,11 @@ tr.isSelected .menuInTable li a { font-size: 0.9rem; } .workflow .menuAction.worktype .formInput { - width: inherit; + max-width: 350px; margin-left: 0.5rem; padding: 0.2rem 0.8rem; font-size: 0.9rem; + text-overflow: ellipsis; } .formList dd.formChange {