mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
21 lines
388 B
SCSS
21 lines
388 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;
|
||
|
}
|
||
|
}
|