1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-27 09:25:10 +03:00

Merge pull request #5252 from marshmalien/4299-fix-twbs-right-margin

Fix right side <body> spacing bug

Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
softwarefactory-project-zuul[bot] 2019-11-05 23:06:08 +00:00 committed by GitHub
commit 941bba2ae0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 6 deletions

View File

@ -21,12 +21,6 @@
src: url(/static/assets/OpenSans-Bold.ttf);
}
/* Bootstrap fix that's causing a right margin to appear
whenver a modal is opened */
body.modal-open {
margin-right: 0;
}
/* Helper Classes */
.pad-right-sm { padding-right: 10px; }
.pad-left-md { padding-left: 30px; }

View File

@ -4,6 +4,13 @@ body {
color: @default-data-txt;
background-color: @default-secondary-bg;
font-size: 0.88rem;
/*
* Bootstrap fix that's causing a right margin and padding
* to appear whenever a modal is opened
* https://github.com/twbs/bootstrap/issues/27071
*/
margin-right: 0px !important;
padding-right: 0px !important;
}
.dropdown-toggle::after {