Hi,
Not sure if these are Joomla related or Uber related. Anyway. Since they are html overrides in Uber, I thought of notifying you guys.
The problem is that the default Joomla username, password and login page give different results in button placement and thus quality of stability in the design.
Problems are in
uber/html/remind/default.php
uber/html/reset/default.php
to replicate please follow the next:
Add default login module in Uber.
Press login without filling in credentials.
See that the button is ok because of this css in Uber.
.login-wrap form .btn {
width: 100%;
}
Now go back and click on forgot username.
Open remind/default.php
You see that there is another class on it instead of the class inside the login/default.php.
I added this class since all will end up rendering ok.
.reset, .remind {
.btn {
width: 100%;
}
}
Besides that I changed the class of the buttons parent to col-sm-12. I can’t imagine that there are other pages using col-sm-9. Normally these pages are only showing in the component area.