Upgraded to 9.4.2 and any user field now has an info button instead of hovering over the user to view profile information. The UI looks more cluttered especially in dashboard views with this change. The change was also not mentioned in any of the upgrade notes.
Is there a setting that can be changed to remove/revert the behaviour to be hover over?
There is a feature request for giving the option to remove the button. At this time there is no official method of removing the icon.
https://jira.atlassian.com/browse/JSDSERVER-12173
I was advised that adding the following to the announcement banner may remove the icon but the workaround has not been thoroughly tested.
<style type="text/css"> 2.aui-button .aui-icon { 3display: none; 4}</style>
my 5 penny solution
<style type="text/css">
.aui-button .aui-icon .aui-button-link, .aui-button-text {
--aui-btn-text: rgb(0, 85, 204, 0.4);
}
</style>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If anyone stumbles upon this post, putting the below CSS into the announcement banner appears to remove the icon, keyword is the appearance of it.
<style type="text/css">
.aui-icon:before {
font-size: 0%;
}
</style>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.