pgadmin4/web/pgadmin/static/scss/_backform.overrides.scss
Khushboo Vashi c4ca781ce2 Fixed some UX issue with the Import/Export tool.
- Couldn't click on the filename control once gets an error.
- Encoding is not in alphabetical order.
2017-08-09 16:52:43 +05:30

28 lines
479 B
SCSS

.has-error {
.pgadmin-controls > .form-control {
border-color: #d0021b;
position: relative;
}
.control-label {
color: #d0021b;
}
.pgadmin-controls:before {
font: normal normal normal 16px/1 FontAwesome;
content: "\f071";
text-decoration: inherit;
position: absolute;
color: #d0021b;
right: 15px;
padding-top: 10px;
z-index: 1;
}
}
.pgadmin-file-has-error {
.pgadmin-controls:before {
right: 40px !important;
}
}