<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How to modify Login Screen CSS in WebUI? in Nuxeo Forum</title>
    <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-modify-login-screen-css-in-webui/m-p/316747#M3748</link>
    <description>&lt;P&gt;I would like to modify the CSS in the login.jsp page so our our SSO alternate login button doesn't look bad (screenshot):
&lt;span class="lia-inline-image-display-wrapper" image-alt="CSS Example"&gt;&lt;img src="https://connect.hyland.com/t5/image/serverpage/image-id/1884iEEAF6FB4D3BBB3C5/image-size/large?v=v2&amp;amp;px=999" role="button" title="CSS Example" alt="CSS Example" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;We are using WebUI, and I can only find documentation for JSF UI: &lt;A href="https://doc.nuxeo.com/nxdoc/how-to-override-the-login-page/"&gt;https://doc.nuxeo.com/nxdoc/how-to-override-the-login-page/&lt;/A&gt;, but this doesn't seem to apply fully to WebUI.&lt;/P&gt;
&lt;P&gt;I've found the CSS elements to change, and even have the modifications ready, but I'm not sure where to put them. I suppose I could just edit the &lt;STRONG&gt;nuxeo_server/nxserver/nuxeo.war/login.jsp&lt;/STRONG&gt; file, but that isn't good practice and would be prone to future errors.&lt;/P&gt;
&lt;P&gt;It's too bad the CSS for the login screen can't be edited in in Studio/Configuration/Branding, otherwise this would be pretty easy. It's also unfortunate that the default CSS just looks bad when adding another login method or I wouldn't even need to do this.&lt;/P&gt;
&lt;P&gt;Any help would be appreciated. Thanks.&lt;/P&gt;</description>
    <pubDate>Thu, 16 Apr 2020 16:03:54 GMT</pubDate>
    <dc:creator>Phil_Ludlow</dc:creator>
    <dc:date>2020-04-16T16:03:54Z</dc:date>
    <item>
      <title>How to modify Login Screen CSS in WebUI?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-modify-login-screen-css-in-webui/m-p/316747#M3748</link>
      <description>&lt;P&gt;I would like to modify the CSS in the login.jsp page so our our SSO alternate login button doesn't look bad (screenshot):
&lt;span class="lia-inline-image-display-wrapper" image-alt="CSS Example"&gt;&lt;img src="https://connect.hyland.com/t5/image/serverpage/image-id/1884iEEAF6FB4D3BBB3C5/image-size/large?v=v2&amp;amp;px=999" role="button" title="CSS Example" alt="CSS Example" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;We are using WebUI, and I can only find documentation for JSF UI: &lt;A href="https://doc.nuxeo.com/nxdoc/how-to-override-the-login-page/"&gt;https://doc.nuxeo.com/nxdoc/how-to-override-the-login-page/&lt;/A&gt;, but this doesn't seem to apply fully to WebUI.&lt;/P&gt;
&lt;P&gt;I've found the CSS elements to change, and even have the modifications ready, but I'm not sure where to put them. I suppose I could just edit the &lt;STRONG&gt;nuxeo_server/nxserver/nuxeo.war/login.jsp&lt;/STRONG&gt; file, but that isn't good practice and would be prone to future errors.&lt;/P&gt;
&lt;P&gt;It's too bad the CSS for the login screen can't be edited in in Studio/Configuration/Branding, otherwise this would be pretty easy. It's also unfortunate that the default CSS just looks bad when adding another login method or I wouldn't even need to do this.&lt;/P&gt;
&lt;P&gt;Any help would be appreciated. Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 16:03:54 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-modify-login-screen-css-in-webui/m-p/316747#M3748</guid>
      <dc:creator>Phil_Ludlow</dc:creator>
      <dc:date>2020-04-16T16:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify Login Screen CSS in WebUI?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-modify-login-screen-css-in-webui/m-p/316748#M3749</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;You have catched  the issue and the possible solutions I believe &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; : we have reported internally this problem and hope  to integrate it in the future Studio releases. This is on our product management app and there are also some people who reported the same kind of problem.&lt;/P&gt;
&lt;P&gt;Currently, by configuration, you can only play with this extension point:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;&amp;lt;extension target="org.nuxeo.ecm.platform.ui.web.auth.service.PluggableAuthenticationService" point="loginScreen"&amp;gt;
    &amp;lt;loginScreenConfig&amp;gt;
      &amp;lt;bodyBackgroundStyle&amp;gt;url("${org.nuxeo.ecm.contextPath}/img/login_bg.jpg") no-repeat center center fixed #333&amp;lt;/bodyBackgroundStyle&amp;gt;
      &amp;lt;disableBackgroundSizeCover&amp;gt;false&amp;lt;/disableBackgroundSizeCover&amp;gt;
      &amp;lt;removeNews&amp;gt;true&amp;lt;/removeNews&amp;gt;
      &amp;lt;footerStyle&amp;gt;display: none;&amp;lt;/footerStyle&amp;gt;
      &amp;lt;loginBoxBackgroundStyle&amp;gt;none transparent&amp;lt;/loginBoxBackgroundStyle&amp;gt;
      &amp;lt;loginBoxWidth&amp;gt;300px&amp;lt;/loginBoxWidth&amp;gt;
      &amp;lt;loginButtonBackgroundColor&amp;gt;#dd0f0f&amp;lt;/loginButtonBackgroundColor&amp;gt;
    &amp;lt;/loginScreenConfig&amp;gt;
  &amp;lt;/extension&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You have anyway opened a support ticket on this topic, our support team will come back to you with an answer.&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Sun, 19 Apr 2020 16:25:49 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-modify-login-screen-css-in-webui/m-p/316748#M3749</guid>
      <dc:creator>Gregory_Carlin</dc:creator>
      <dc:date>2020-04-19T16:25:49Z</dc:date>
    </item>
  </channel>
</rss>

