22 lines
382 B
CSS
22 lines
382 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;
|
|
}
|