November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
Hi,
Having the description shown as label is not by default. That is some customization that someone most likely did in your solution a while ago.
Here Alf Nilsson shows how it is done in 11 and earlier: https://talk.alfnilsson.se/2014/12/18/display-help-text-in-on-page-editing/
And this post shows how you can do it a little different: https://beendaved.blogspot.com/2016/09/simple-approach-to-tooltip-icons-for.html (just FYI if someone else reads and are interested)
I have not done this for CMS 12, but I guess it should be pretty similar
Hi @Sebbe, you are right, thank you!
The style required is as follows:
.Sleek .dijitTabPaneWrapper .epi-form-container__section__row label[title]:after {
content: attr(title);
display: block;
font-size: 0.8em;
font-style: italic;
margin: 0.3em 0 0 0;
}
In the Foundation project I just needed to add it to /ClientResources/Styles/Styles.css
, everything else was already configured in /module.config
Having property defined like below results in slightly different view for editors in CMS 11 and CMS 12.
In CMS 11 the description is shown both as a label and a tooltip.
However in CMS 12 it's only available as a tooltip.
Is this something that can be enabled as an option or this feature is missing from CMS 12?