Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ドロップダウンの表示位置を調整したい #8

Open
edogawa-itpro opened this issue Aug 22, 2022 · 1 comment
Open

ドロップダウンの表示位置を調整したい #8

edogawa-itpro opened this issue Aug 22, 2022 · 1 comment

Comments

@edogawa-itpro
Copy link
Owner

改善内容

ラベル付きの文字フィールドの横にドロップダウンを配置すると上下がずれてしまう。

期待する動作

同じ高さで表示される。

画面ショット

BoxUiドロップダウン位置1

@edogawa-itpro
Copy link
Owner Author

edogawa-itpro commented Aug 22, 2022

いくつかの解決方法があります。

  1. 文字フィールドのラベルを非表示にして、別途ラベルを付ける
  2. スペースのCSSを修正する
  3. ドロップボックスのCSSを修正する

1が一般的な解決方法です。ただし「必須」チェックも外す必要があります。

2は以下のCSSをアプリに設定します。

.control-spacer-field-gaia  {
  display: flex;
  align-items: flex-end;
}

これは、Kintone標準のスペースの表示を下段に変更します。
フォームの設計でスペースの下の高さを文字フィールドと同じか若干低めにします。
アプリ内の他のスペースにも影響する点が注意です。

3もCSSの書き換えです。

.kintoneplugin-select-outer-box-ui {
  display: inline-block;
  padding: 30px 8px 0 8px !important;
}

ドロップダウンは、51-modern-default.css の select box を使っていますので、標準のドロップボックスには影響しません。
padding で上下左右のマージンを調整できます。
!important を書かないと優先されません。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant