mirror of
https://github.com/ansible/awx.git
synced 2026-02-17 11:10:03 -03:30
Some styling changes; fix Server dropdown.
- Left align first dropdown on Github and LDAP tabs. - Add border to give some whitespace
This commit is contained in:
@@ -29,7 +29,7 @@ export default [
|
|||||||
|
|
||||||
authVm.activeAuthForm = 'azure';
|
authVm.activeAuthForm = 'azure';
|
||||||
authVm.activeTab = 'azure';
|
authVm.activeTab = 'azure';
|
||||||
authVm.ldapDropdownValue = 'ldap';
|
authVm.ldapDropdownValue = '';
|
||||||
authVm.githubDropdownValue = 'github';
|
authVm.githubDropdownValue = 'github';
|
||||||
|
|
||||||
let codeInputInitialized = false;
|
let codeInputInitialized = false;
|
||||||
@@ -383,7 +383,7 @@ export default [
|
|||||||
|
|
||||||
function getActiveAuthForm (tab) {
|
function getActiveAuthForm (tab) {
|
||||||
if (tab === 'ldap') {
|
if (tab === 'ldap') {
|
||||||
return authVm.ldapDropdownValue;
|
return `ldap${authVm.ldapDropdownValue}`;
|
||||||
} else if (tab === 'github') {
|
} else if (tab === 'github') {
|
||||||
return authVm.githubDropdownValue;
|
return authVm.githubDropdownValue;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,7 +35,9 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 0 0 22px auto;
|
margin: 0 0 22px auto;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-end;
|
justify-content: flex-start;
|
||||||
|
border-bottom: 1px solid @at-gray-b7;
|
||||||
|
padding-bottom: 22px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.Form-nav--ldapDropdownContainer {
|
.Form-nav--ldapDropdownContainer {
|
||||||
|
|||||||
Reference in New Issue
Block a user