mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
35 lines
604 B
SCSS
35 lines
604 B
SCSS
.has-error {
|
|
.pgadmin-controls > .form-control {
|
|
border-color: $color-danger;
|
|
position: relative;
|
|
}
|
|
|
|
.control-label {
|
|
color: $color-danger;
|
|
}
|
|
|
|
.control-label:before {
|
|
font: normal normal normal 16px/1 FontAwesome;
|
|
content: "\f071";
|
|
text-decoration: inherit;
|
|
position: absolute;
|
|
color: $color-danger;
|
|
right: 6px;
|
|
padding-top: 6px;
|
|
z-index: 1;
|
|
}
|
|
}
|
|
|
|
.pgadmin-file-has-error {
|
|
.pgadmin-controls:before {
|
|
right: 40px !important;
|
|
}
|
|
}
|
|
|
|
.pgadmin-datepicker-has-error {
|
|
.pgadmin-controls:before {
|
|
right: 50px !important;
|
|
z-index: 3;
|
|
}
|
|
}
|