function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
force_archforce_arch 

Unable to customize the width of Owner inputField when lightningStyleSheets is set to true

We are trying to migrate our visualforce pages to lightning by setting lightningStyleSheets = "true". We have a pageblocksection with two columns in the vf page. One of the fields in the left side of this section is the Owner field and we are using the apex:inputField tag for it. The Owner field became unusually long when we added  lightningStyleSheets = "true" to the apex:page tag, and it has widened the left side of the section and narrowed the right side of the section. We added the following styleClass to reduce the width of the Owner field but it isn't working. The styleClass worked when we removed the lightningStyleSheets attribute though.
 
<style>
    .FieldWidth input{
        width:100px;
    }
 </style>

Please let me know if there are any work-arounds for this? Thanks.