diff --git a/doc/source/topics/customizing.rst b/doc/source/topics/customizing.rst index 926db263f..0f89439e4 100644 --- a/doc/source/topics/customizing.rst +++ b/doc/source/topics/customizing.rst @@ -128,6 +128,7 @@ full use of the Bootstrap theme architecture. ~~~~~~~~~~~~~~ * Tables_ +* Login_ Step 1 ------ @@ -197,6 +198,25 @@ The standard Bootstrap tables will be borderless by default. If you wish to add a border, like the ``default`` theme, see ``openstack_dashboard/themes/default/horizon/components/_tables.scss`` +.. _Login: + +Login +----- + +Login Splash Page +~~~~~~~~~~~~~~~~~ + +The login splash page now uses a standard Bootstrap panel in its implementation. +See the **Panels** section in your variables file to variables to easily +customize. + +Modal Login +~~~~~~~~~~~ + +The modal login experience, as used when switching regions, uses a standard +Bootstrap dialog. See the **Modals** section of your variables file for +specific variables to customize. + Bootswatch and Material Design ------------------------------ diff --git a/horizon/static/auth/login/login-finder.directive.js b/horizon/static/auth/login/login-finder.directive.js index 138581a4d..b00b6fe0f 100644 --- a/horizon/static/auth/login/login-finder.directive.js +++ b/horizon/static/auth/login/login-finder.directive.js @@ -47,7 +47,7 @@ * `helpText` exists outside of element, * so we have to traverse one node up */ - var helpText = element.parent().find('#help_text'); + var helpText = element.parent().find('.help_text'); helpText.hide(); // Update the visuals when user selects item from dropdown diff --git a/horizon/static/auth/login/login.regular.mock.html b/horizon/static/auth/login/login.regular.mock.html index 3ab996e4e..02b6a3c6d 100644 --- a/horizon/static/auth/login/login.regular.mock.html +++ b/horizon/static/auth/login/login.regular.mock.html @@ -1,5 +1,5 @@