diff --git a/web/pgadmin/tools/sqleditor/static/css/sqleditor.css b/web/pgadmin/tools/sqleditor/static/css/sqleditor.css index 7088f8e..6ff7d58 100644 --- a/web/pgadmin/tools/sqleditor/static/css/sqleditor.css +++ b/web/pgadmin/tools/sqleditor/static/css/sqleditor.css @@ -561,14 +561,18 @@ input.editor-checkbox:focus { } .connection_status .fa-custom { - height: 18px; margin-bottom: -4px; + height: 18px; + width: 18px; + display: block; + background-repeat: no-repeat; + content: ''; } .connection_status .fa-query-tool-connected { - content: url('../img/connect.svg'); + background-image: url('../img/connect.svg'); } .connection_status .fa-query-tool-disconnected { - content: url('../img/disconnect.svg'); + background-image: url('../img/disconnect.svg'); }