Summary: | Moderation links are out of sight and overlooked | ||
---|---|---|---|
Product: | Koha | Reporter: | Christopher Brannon <cbrannon> |
Component: | Staff interface | Assignee: | Bugs List <koha-bugs> |
Status: | NEW --- | QA Contact: | Testopia <testopia> |
Severity: | enhancement | ||
Priority: | P5 - low | CC: | gmcharlt |
Version: | Main | ||
Hardware: | All | ||
OS: | All | ||
Change sponsored?: | --- | Patch complexity: | --- |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: | Version(s) released in: | ||
Circulation function: | |||
Attachments: | Moderation Display Enhancement |
Description
Christopher Brannon
2019-09-19 03:13:22 UTC
I don't think they should be buttons. The moderation links are not all part of one module. I could see them being in the sidebar with the news. I could also see each one appended to the module button which they're related to. (In reply to Owen Leonard from comment #1) > I don't think they should be buttons. The moderation links are not all part > of one module. > > I could see them being in the sidebar with the news. I could also see each > one appended to the module button which they're related to. I think the second could make things look scattered and destroy layout a bit. I like all the 'TODO' appearing together, maybe extended even in the future to be more of a dashboard thing. Sidebar would work for me, I could also imagine them going on top of the buttons. This is what I am currently using in jQuery. The css is optional, but it stands out better as needing attention: //Area Pending Move $('#area-pending').prependTo('div.col-sm-3').css('background-color','yellow'); $('div.pending-info a').prepend('<i class="fa fa-bell"></i> '); //End Move I've updated my code to make it look more like the news panel: //Area Pending Move $('#area-pending').prependTo('div.col-sm-3').css('border','1px solid #EEEEEE').css('margin','0.2em').css('width','auto').prepend('<h3 style="padding: 0.3em; background-color: #EEEEEE; margin: 0;"><span class="news_title">Alerts</span></h3>'); $('div.pending-info').css('margin','0.3em').css('background-color','yellow').css('opacity','0.75').css('border-radius','6px').css('padding','3px'); $('div.pending-info a').prepend('<i class="fa fa-bell"></i> '); //End Move Created attachment 99598 [details]
Moderation Display Enhancement
This is how I have modified our moderation alerts with jQuery. I think this should be a permanent change.
|