Skip to content

Commit

Permalink
Fix Global Credentials' Verify Configuration button being hidden by t…
Browse files Browse the repository at this point in the history
…he floating submit bar
  • Loading branch information
janfaracik committed Oct 26, 2021
1 parent 74d6632 commit 70782b1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions war/src/main/less/modules/form.less
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@
max-width: var(--form-item-max-width);
margin-bottom: 1.75rem;

// Workaround for float:right button controls
// (eg Global Credentials' Verify Configuration button being hidden by the floating submit bar)
&::after {
content: " "; /* Older browser do not support empty content */
visibility: hidden;
display: block;
height: 0;
clear: both;
}

&--small {
max-width: var(--form-item-max-width--small);
}
Expand Down

0 comments on commit 70782b1

Please sign in to comment.