Advertisement
crexin

CRM Command Bar Buttons stretched in Chrome in ver. 8.2 and 9

Sep 21st, 2021
1,274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.91 KB | None | 0 0
  1. #Fix for CRM 2016/Dyn 365 8.2 - - either install 8.2.28 or add the text below
  2. #File:  CRMWeb\_common\styles\global.css.aspx
  3. #
  4. MS has released a new update\patch for the issue "Command bar buttons are stretched when using Chrome browser"
  5. Dynamics 365 v8:
  6. support.microsoft.com/.../microsoft-dynamics-365-on-premises-update-2-28-eafd013c-dd2a-4a02-9d4c-c0dbf47a361f
  7.  
  8. Dynamics 365 v9:
  9. support.microsoft.com/.../service-update-0-25-for-microsoft-dynamics-365-9-0-6f34bd6e-aa2f-4ea3-82e5-93975e86e035
  10.  
  11. img.ms-crm-Menu-ButtonLTR,
  12. SPAN.ms-crm-MenuItem-TextLTR
  13. {
  14. padding-left: 4px;
  15. padding-right: 5px;
  16. <% if (Request.Browser.Browser != "IE") { %>
  17. padding-bottom: 3px;
  18. <% } else { %>
  19. padding-bottom: 5px;
  20. <% } %>
  21. }
  22.  
  23. ul.ms-crm-CommandBar-Menu :not(ul.ms-crm-AssociatedGridCommandBar-Menu)
  24. {
  25. margin-top: 6px;
  26. <% if (CrmStyles.IsRightToLeft) { %>
  27. margin-right: 10px;
  28. <% } else { %>
  29. margin-left: 10px;
  30. <% } %>
  31. }
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement