A new Flexera Community experience is coming on November 25th. Click here for more information.
I've always hated that behavior and agree that it's unlikely anyone ever requested that behavior. In any case, for customers that were bothered by it enough to ask, I've always suggested using the CSS styles to make all the categories look the same (as suggested by Charlie above). However, one slight tweak I would make to Charlie's response is instead of modifying the site.less file, copy that one section for .category-row a into the custom.less file and modify it there. The site.less file could get overwritten during an upgrade, but we won't touch the custom.less file during upgrade.
Note 1: Make sure you include the !important directive with the color. This instructs the browser to render this style regardless of other style inheritance rules.
Note 2: You should be able to see the changes take effect simply by hitting Ctrl-F5 in your browser to reload the page from the server without cached content.
Jun 22, 2020 11:45 AM - edited Jun 22, 2020 11:52 AM
Jun 22, 2020 09:20 AM
Thanks Charles.... That's interesting information, though still scratching my head on it a bit.
Hmmmm....perhaps an "enhancement" request is needed... 🙂
I would be surprised if someone actually asked for that behavior.
Jun 22, 2020 09:50 AM
We had complaints when we rolled out App Portal and had the grayed categories. Our users thought they couldn't access the grayed categories so I created a child category under each and called the "Do Not Use" as a workaround. As long as there are no items in the category it won't show but if you wanted you could lock it down where only admins in a security group have visibility to the category..
Jun 22, 2020 10:16 AM
A quick test tells me that we should be able to do this by using CSS.. If you open the file C:\Program Files (x86)\Flexera Software\App Portal\Web\Content\site.less, you will see a class named ".category-row a".. To this, try adding "color: black!important;"..
For example:
.category-row a {
display:block;
color: black!important;
}
After saving the file, refresh the browser.. In my case, I actually needed to clear my temporary internet files as well, as the old pages were cached..
Jun 22, 2020 10:37 AM
Charles, I tried this but it didn't seem to change anything.
Jun 22, 2020 11:37 AM
Jun 22, 2020 11:41 AM
I've always hated that behavior and agree that it's unlikely anyone ever requested that behavior. In any case, for customers that were bothered by it enough to ask, I've always suggested using the CSS styles to make all the categories look the same (as suggested by Charlie above). However, one slight tweak I would make to Charlie's response is instead of modifying the site.less file, copy that one section for .category-row a into the custom.less file and modify it there. The site.less file could get overwritten during an upgrade, but we won't touch the custom.less file during upgrade.
Note 1: Make sure you include the !important directive with the color. This instructs the browser to render this style regardless of other style inheritance rules.
Note 2: You should be able to see the changes take effect simply by hitting Ctrl-F5 in your browser to reload the page from the server without cached content.
Jun 22, 2020 11:45 AM - edited Jun 22, 2020 11:52 AM
Jun 22, 2020 11:49 AM
Jim and Charles, thanks for the info.... This worked for us.
Jun 22, 2020 12:07 PM