0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Salesforce】apex:inputField+slds-inputで日付項目を表示したらはみ出る

Posted at

動作確認

apex:inputField+slds-inputで日付項目を表示したら・・・

スクリーンショット 2021-01-07 101956.jpg

・・・はみ出とるやないか!

test

<apex:inputField value="{!日付項目}" styleClass="slds-input"/>

test

.slds-input{
    background-color: #fff;
    border: 1px solid #dddbda;
    border-radius: .25rem;
    /* ここがうまくやってくれないようです */
    width: 100%;
    transition: border .1s linear,background-color .1s linear;
    display: inline-block;
    padding: 0 1rem 0 .75rem;
    line-height: 1.875rem;
    min-height: calc(1.875rem + 2px);
}

解決策

スクリーンショット 2021-01-07 102007.jpg

test

<apex:inputField value="{!日付項目}" styleClass="slds-input-autoWidth"/>

test

.slds-input-autoWidth {
    background-color: #fff;
    border: 1px solid #dddbda;
    border-radius: .25rem;
    /* !importantしないと反映されない */
    width: auto !important;
    transition: border .1s linear,background-color .1s linear;
    display: inline-block;
    padding: 0 1rem 0 .75rem;
    line-height: 1.875rem;
    min-height: calc(1.875rem + 2px);
}

参考リンク

Lightning Design System Input

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?