pgadmin4/web/pgadmin/static/css/overrides.css

36 lines
695 B
CSS

/* Overrides/fixes for pgAdmin specific styling */
/* Use the full width of the screen */
.container {
width: 100% !important;
}
/* Restyle the Alertify dialogs */
.alertify .ajs-dialog {
border: 0px solid rgba(0,0,0,.2);
}
.alertify .ajs-header {
background-color: #428bca;
color: #fff;
}
/* iFrames should have no border */
iframe {
border-width: 0;
}
/* Ensure the codemirror editor displays full height gutters when resized */
.CodeMirror, .CodeMirror-gutters {
height: 100% !important;
}
/* Padding for the treeview */
.browser-browser-pane {
padding-left: 0;
}
.icon-servers {
background: url('/static/servers.png') 0 0 no-repeat !important;
}