legacy-knowledge-base
公開されました Jul. 2, 2025

7.3カスタムテーマで「圧縮されたような」コントロールパネルメニューを解決する

written-by

Isaac Wilson

How To articles are not official guidelines or officially supported documentation. They are community-contributed content and may not always reflect the latest updates to Liferay DXP. We welcome your feedback to improve How To articles!

While we make every effort to ensure this Knowledge Base is accurate, it may not always reflect the most recent updates or official guidelines.We appreciate your understanding and encourage you to reach out with any feedback or concerns.

legacy-article

learn-legacy-article-disclaimer-text

問題

  • カスタムテーマを7.2から7.3にアップグレードしようとしたところ、カスタムテーマとクラシックテーマを比較すると、新しい右上のコントロールパネルメニューが「圧縮」されたように見える(クラシックテーマよりも縦の余白が少ない)問題に遭遇しました。
  • カスタムテーマを調整できるように、この間隔を定義するためにどのようなクラスが使用されますか?

Environment

  • DXP 7.3

解決策

  • 7.3では、7.2バージョンと比較して、Classicテーマには以下のような追加ファイルが含まれています。
  • これらのファイルでは、スペーサーが定義されており、あなたのチームのユースケースに合うように、次のように修正することができます。
    // Spacers 
    --spacer: #{$spacer};

    @each $key, $value in $spacers {
    $multiplier: nth($value, 1) / $spacer;
    @if ($value == 0) {
    $multiplier: 0;
    }

    --spacer-#{$key}: calc(var(--spacer) * #{$multiplier});
    }

追加情報

did-this-article-resolve-your-issue

legacy-knowledge-base