sp-client-custom-fields icon indicating copy to clipboard operation
sp-client-custom-fields copied to clipboard

PropertyFieldCustomList - CustomListFieldType.string displayed in upper case

Open cool-abhi opened this issue 6 years ago • 3 comments

The CustomListFieldType.string in PropertyFieldCustomList is displaying data in uppercase in version 1.3.7. This is because in CSS (PropertyFields.module) text-transform is set to UpperCase

NewsSticker_Caps.docx

cool-abhi avatar Nov 01 '17 20:11 cool-abhi

Can this be fixed asap?

prawnz avatar May 13 '18 13:05 prawnz

This also affects the description btw

prawnz avatar May 14 '18 16:05 prawnz

Try css styling to fix this, I fix this using following style;

.ms-Modal-scrollableContent {
  .ms-Dialog-inner #input-Title {
    text-transform: capitalize;
  }

mhammadsiddiqui avatar Jan 14 '22 10:01 mhammadsiddiqui