Move the field error indicators in front of the affected fields so they don't obscure spinners or drop downs etc. Fixes #3226

This commit is contained in:
Aditya Toshniwal 2018-03-23 09:57:37 +00:00 committed by Dave Page
parent d5ebf6777a
commit 1f84285d99
4 changed files with 7 additions and 6 deletions

View File

@ -108,4 +108,5 @@ Bug fixes
| `Bug #3196 <https://redmine.postgresql.org/issues/3196>`_ - Ensure the file manager properly escapes file & directory names
| `Bug #3197 <https://redmine.postgresql.org/issues/3197>`_ - Appropriately set the cookie path
| `Bug #3200 <https://redmine.postgresql.org/issues/3200>`_ - Ensure the host parameter is correctly pickup up from the service file
| `Bug #3219 <https://redmine.postgresql.org/issues/3219>`_ - Update required ChromeDriver version for current versions of Chrome
| `Bug #3219 <https://redmine.postgresql.org/issues/3219>`_ - Update required ChromeDriver version for current versions of Chrome
| `Bug #3226 <https://redmine.postgresql.org/issues/3226>`_ - Move the field error indicators in front of the affected fields so they don't obscure spinners or drop downs etc.

View File

@ -269,7 +269,7 @@ iframe {
.control-label {
margin: 0px;
padding: 5px;
padding: 5px 25px 5px 5px;
display: inline-block;
vertical-align: middle;
}

View File

@ -732,7 +732,7 @@ lgg-el-container[el=md] .pg-el-lg-8,
padding-top: 6px;
padding-bottom: 6px;
padding-left: 5px;
padding-right: 5px;
padding-right: 25px;
display: inline-block;
vertical-align: middle;
min-height: 28px;

View File

@ -8,14 +8,14 @@
color: #d0021b;
}
.pgadmin-controls:before {
.control-label:before {
font: normal normal normal 16px/1 FontAwesome;
content: "\f071";
text-decoration: inherit;
position: absolute;
color: #d0021b;
right: 15px;
padding-top: 10px;
right: 6px;
padding-top: 6px;
z-index: 1;
}
}