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

Bootstrap のバージョンアップに伴うデザイン修正 #6133

Merged
merged 2 commits into from
Apr 12, 2024

Conversation

nanasess
Copy link
Contributor

@nanasess nanasess commented Apr 9, 2024

概要(Overview・Refs Issue)

Fixes #6095
Bootstrap 5.1.3 の button-variant を移植

方針(Policy)

Bootstrap 5.2 から CSS variables に変更されたため、Bootstrap 5.1.3 の button-variant を移植することで互換性を維持する

実装に関する補足(Appendix)

Bootstrap 5.2 から CSS variables を使用して、カスタマイズするように変更された。
https://getbootstrap.com/docs/5.3/migration/#more-css-variables
その影響で、 button-variant の実装が大幅に変更され、従来どおりの色指定ができなくなってしまった模様
https://github.com/twbs/bootstrap/blob/edf9c40956d19e6ab3f9151bfe0dfac6be06fa21/scss/mixins/_buttons.scss#L7-L60

フロント側の scss は、 bootstrap のカラーテーマを使用しておらず、 mixin の仕組みのみ流用している。
今回影響を受けたのは button-variant のみなので、 Bootstrap 5.1.3 の button-variant を移植すれば問題ない
https://github.com/twbs/bootstrap/blob/1a6fdfae6be09b09eaced8f0e442ca6f7680a61e/scss/mixins/_buttons.scss#L7-L74

管理画面側は、 bootstrap のカラーテーマをそのまま流用しているため影響無いはず。

テスト(Test)

各所のボタンが正常に表示されるのを確認

image
image
image

相談(Discussion)

本質的には CSS variables を使用してカスタマイズした方が良い。そうすれば scss のコンパイルも必要無くなり、 minify も有効に活用できる

マイナーバージョン互換性保持のための制限事項チェックリスト

  • 既存機能の仕様変更はありません
  • フックポイントの呼び出しタイミングの変更はありません
  • フックポイントのパラメータの削除・データ型の変更はありません
  • twigファイルに渡しているパラメータの削除・データ型の変更はありません
  • Serviceクラスの公開関数の、引数の削除・データ型の変更はありません
  • 入出力ファイル(CSVなど)のフォーマット変更はありません

レビュワー確認項目

  • 動作確認
  • コードレビュー
  • E2E/Unit テスト確認(テストの追加・変更が必要かどうか)
  • 互換性が保持されているか
  • セキュリティ上の問題がないか
    • 権限を超えた操作が可能にならないか
    • 不要なファイルアップロードがないか
    • 外部へ公開されるファイルや機能の追加ではないか
    • テンプレートでのエスケープ漏れがないか

Bootstrap 5.2 から CSS variables に変更されたため、Bootstrap 5.1.3 の button-variant を移植することで互換性を維持
@dotani1111 dotani1111 added this to the 4.3.0 milestone Apr 10, 2024
Copy link

codecov bot commented Apr 10, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 82.77%. Comparing base (ebec3e1) to head (adecb27).

Additional details and impacted files
@@           Coverage Diff           @@
##              4.3    #6133   +/-   ##
=======================================
  Coverage   82.77%   82.77%           
=======================================
  Files         480      480           
  Lines       26062    26062           
=======================================
  Hits        21573    21573           
  Misses       4489     4489           
Flag Coverage Δ
E2E 82.77% <ø> (ø)
Unit 82.77% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@ji-eunsoo ji-eunsoo merged commit 8776cf0 into EC-CUBE:4.3 Apr 12, 2024
96 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Bootstrapのバージョンアップにともなうデザイン調整
5 participants