it1728166827 Posted January 31, 2020 Posted January 31, 2020 Hi,How to remove loginForm's border? thanks! Quote
Sherzod Posted January 31, 2020 Posted January 31, 2020 25 minutes ago, it1728166827 said: How to remove loginForm's border? Hi, Which build of UniGUI are you using? Try this approach: UniLoginForm -> ClientEvents -> ExtEvents -> function window.afterrender(sender, eOpts) { var me=sender.getEl(); if (me) { me.setStyle("padding", 0); //me.setStyle("border-width", 1); me.setStyle("border-width", 0); me.setStyle("-webkit-border-radius", 0); me.setStyle("-moz-border-radius", 0); me.setStyle("border-radius", 0); } } 2 Quote
Sherzod Posted February 22, 2023 Posted February 22, 2023 Specify which edition and build of uniGUI are you using? Quote
Sherzod Posted February 22, 2023 Posted February 22, 2023 Just now, skafinski said: 1.90.0.1556 Pro Please adjust your forum emai address first: Quote
Sherzod Posted February 22, 2023 Posted February 22, 2023 32 minutes ago, skafinski said: What other properties did you change? Quote
skafy Posted February 22, 2023 Posted February 22, 2023 I created demo project where login form persist to have borders. I would like to remove them if possible. Thank for you help! LoginNOBorder.zip Quote
Sherzod Posted February 22, 2023 Posted February 22, 2023 6 minutes ago, skafy said: LoginNOBorder.zip 4.05 MB · 0 downloads Did you try the additional solution above? Just add to CustomCSS: .x-css-shadow { box-shadow: none !important; } Quote
skafy Posted February 22, 2023 Posted February 22, 2023 Yes, it seems to working now. THANK YOU VERY MUCH! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.