14 lines
483 B
CSS
14 lines
483 B
CSS
.icon-{{node_type}} {
|
|
background-image: url('{{ url_for('NODE-%s.static' % node_type, filename='img/%s.png' % node_type )}}') !important;
|
|
background-repeat: no-repeat;
|
|
align-content: center;
|
|
vertical-align: middle;
|
|
height: 1.3em;
|
|
}
|
|
|
|
.pgadmin-node-select option[node="{{node_type}}"] {
|
|
background-image: url('{{ url_for('NODE-%s.static' % node_type, filename='img/%s.png' % node_type )}}') !important;
|
|
background-repeat: no-repeat;
|
|
background-position: center left;
|
|
}
|