【Salesforce】apex:inputField+slds-inputで日付項目を表示したらはみ出る
5072 ワード
動作確認
apex:inputField+slds-inputで日付項目を表示したら・・・
・・・はみ出とるやないか!
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);
}
解決策
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);
}
参考リンク
Author And Source
この問題について(【Salesforce】apex:inputField+slds-inputで日付項目を表示したらはみ出る), 我々は、より多くの情報をここで見つけました https://qiita.com/RyoheiKobayashi/items/fa87f911e5912e39876a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .