0

次のように、ネオン バージョン M5 にカスタム カラーのボタンがあります。

public class MyButton extends AbstractLinkButton {


    @Override
    protected String getConfiguredForegroundColor() {

      return "00B200";
    }

    ....
}

M6にアップデートすると、すべてのボタンが黒くなります。 今すぐボタン 前のボタン

これはバグですか?ボタンの色を設定する別の方法が見つかりませんでした...

4

1 に答える 1

0

はい、これはバグです。RC2 で修正される予定です。

を使用する代わりに、 を使用getConfiguredForegroundColorできますgetConfiguredCssClass。これにより、アクティブ カラーやホバー カラーの設定など、スタイリングの可能性が広がります。そして、colors.css で定義されたカラー パレットの色を使用できます。

例については、次のリンクを参照してください。

https://github.com/BSI-Business-Systems-Integration-AG/org.eclipse.scout.docs/blob/releases/6.0.x/code/widgets/org.eclipse.scout.widgets.client/src/ main/java/org/eclipse/scout/widgets/client/ui/forms/ButtonForm.java

https://github.com/BSI-Business-Systems-Integration-AG/org.eclipse.scout.docs/blob/releases/6.0.x/code/widgets/org.eclipse.scout.widgets.ui.html/ src/main/js/widgets/forms/ButtonForm.css

于 2016-05-19T12:07:39.333 に答える