Hello,
We have JIRA Cloud. 90% of our JIRA projects are classic software projects. The new Work Force Management projects have a calendar (which shows up on the left menu).
Is there a setting to give this calendar to a classic software project?
We are also using Team Calendars plug-in for Confluence (which is great). Does the WFM calendar support spreading an issue over multiple days like Team Calendars? (a 3 day long issue based has a line indicator that stretches across the 3 days?)
Thank You.
Chris
Why can't you just look for:
<span class="subText">Restricted to <span class="redText">Developers</span></span>
(or whatever)?
If it's too hard to do with just css selectors maybe you can use jquery..?
Same with the issue security level.
I would have liked to set the custom background for the whole comment block rather than the <span> of the security level information.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't think you can do it with CSS only but you can use some js, eg:
AJS.$("div.activity-comment span.icon-locked").parent().parent().attr('style', 'color:red')
This turns all the text red... simple matter to turn the background a pale puce though.
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.