Using disconnected server icon from pgAdmin III

pull/3/head
Ashesh Vashi 2015-07-22 22:44:54 +05:30
parent 146e901327
commit ffa65f2bfb
3 changed files with 4 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 643 B

View File

@ -400,11 +400,11 @@ iframe {
} }
.icon-server-connected { .icon-server-connected {
background: url('/browser/server/static/img/server.png') no-repeat 30% 30% green !important; background-image: url('/browser/server/static/img/server.png') !important;
border-radius: 10px border-radius: 10px
} }
.icon-server-not-connected { .icon-server-not-connected {
background: url('/browser/server/static/img/server.png') no-repeat 30% 30% red !important; background-image: url('/browser/server/static/img/serverbad.png') !important;
border-radius: 10px border-radius: 10px
} }

View File

@ -21,7 +21,6 @@
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap-theme.css' if config.DEBUG else 'css/bootstrap-theme.min.css') }}"/> <link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap-theme.css' if config.DEBUG else 'css/bootstrap-theme.min.css') }}"/>
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/font-awesome.css' if config.DEBUG else 'css/font-awesome.min.css') }}"/> <link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/font-awesome.css' if config.DEBUG else 'css/font-awesome.min.css') }}"/>
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/font-mfizz.css') }}"/> <link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/font-mfizz.css') }}"/>
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/overrides.css') }}"/>
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap-datepicker3.css')}}"/> <link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap-datepicker3.css')}}"/>
<!-- View specified stylesheets --> <!-- View specified stylesheets -->
@ -29,6 +28,8 @@
<link type="text/css" rel="stylesheet" href="{{ stylesheet }}"> <link type="text/css" rel="stylesheet" href="{{ stylesheet }}">
{% endfor %} {% endfor %}
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/overrides.css') }}"/>
<!-- Base template scripts --> <!-- Base template scripts -->
<script type="text/javascript" src="{{ url_for('static', filename='js/require.js' if config.DEBUG else 'js/require.min.js') }}"></script> <script type="text/javascript" src="{{ url_for('static', filename='js/require.js' if config.DEBUG else 'js/require.min.js') }}"></script>
<script type="text/javascript"> <script type="text/javascript">