Request Offering prompts squished after portal update to 9.1
Anyone else getting that?
Having a quick look it appears there is some CSS (cireson.main.min.css) setting the width to 50% on .col-md-6. Can override in the custom css I guess, but wondering if this is the best thing to do? And why this is the case.
Thanks
Stuart
Best Answer
-
Justin_Workman Cireson Support Super IT Monkey ✭✭✭✭✭@Stuart_Sneddon - You can add this to your custom.js file in CustomSpace and it will expand the query pickers to the width of the page:
$(document).ready(function () { var roPath = "ServiceCatalog/RequestOffering"; var url = window.location.href; if (url.indexOf(roPath) > -1 ) { $('[data-control-type="queryPicker"]').parent().parent().addClass('col-md-12').removeClass('col-md-6'); } })
6
Answers
Yes, that resets the width for the query picker. This is good for the original "classic" style on our existing ROs.
Checking out the new style query picker ( ). Ratios on that style look a bit "off" to me, at both 50 and 100%. Will have a play with the CSS, initially thinking having the search box below the prompt title looks better.